CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

DPM : Solution for Collection Efficiency (just sharing)

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 20, 2015, 05:36
Default DPM : Solution for Collection Efficiency (just sharing)
  #1
New Member
 
Join Date: Apr 2015
Posts: 28
Rep Power: 11
Manathan is on a distinguished road
This is a udf I've done to compute the collection efficiency in 2D planar case (for fun and pratice) ! So it doesn't work for axisymmetric flow. If anyone see any errors, I would be very happy to learn from them otherwise this post is just to help others.

/*================================================= ====================================
WORKS FOR 2D ONLY : NOT AXISYMMETRIC !
================================================== ===================================*/

#include "udf.h"
#include "dpm.h"
#include "surf.h"
#include "random.h"
#include "sg_mem.h"
#include "para.h"
#include "mem.h"


real beta[401] ;
real x[401] = { x } ; // x = value of the most frontal position of your wall impacted for y
real y[401] = { y } ;

real Vn[401];
real V0[401];

real x0[401] ;
real y0[401] ;

real dx[401] ;
real dy[401] ;
real dy0[401] ;
real norm2[401] ;

real ds[401];

int i = 1 ;
int n ;


DEFINE_DPM_BC(dpm_report,p,t,f,f_normal,dim)
{


Domain *domain; //Domain is declared as a variable
domain = Get_Domain(1); //Returns fluid domain pointer

double pwc[2], A[2], center[2];
double pt[2], B[2], centerb[2];


pwc[0] = P_POS(p)[0];
pwc[1] = P_POS(p)[1];
x[i] = pwc[0];
y[i] = pwc[1];

pt[0] = P_INIT_POS(p)[0] ;
pt[1] = P_INIT_POS(p)[1] ;
x0[i] = pt[0] ;
y0[i] = pt[1] ;

V0[i] = P_INIT_VEL(p)[0] ;
Vn[i] = NV_DOT(P_VEL(p), f_normal)/NV_MAG(f_normal) ;

dx[i] = x[i] - x[i-1] ;
dy[i] = y[i] - y[i-1] ;
dy0[i] = y0[i]-y0[i-1] ;
norm2[i] = pow( dx[i], 2) + pow(dy[i], 2) ;

ds[i] = pow(norm2[i], 0.5) ;

beta[i] = dy0[i]/ds[i] ;

i=i+1 ;

return x,y,x0,y0,dy0,ds,beta, PATH_ABORT;


}




DEFINE_ON_DEMAND(beta_profile)
{
FILE *f1;
f1 = fopen("report_beta.txt", "a");
fprintf(f1,"Stream Index, X impact, Y impact, x0, y0, dy, ds, beta\n");

for (i = 1 ; i <= 401 ; i++)
{
fprintf(f1, "%d %f %f %f %f %f %f %f\n", i-1,x[i],y[i],x0[i],y0[i],dy0[i],ds[i],beta[i] );
}


fclose(f1);
}

Last edited by Manathan; April 21, 2015 at 13:33.
Manathan is offline   Reply With Quote

Old   April 21, 2015, 05:27
Default
  #2
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
Firstly, thanks for sharing your code with the community and I have a couple of comments. First, if your goal is to count the number of particles to calculate the collection efficiency, you could use User-Defined Memory and increment face values for each particle deposition. Second, be careful with opening files with multiple nodes (processes) at the same time because you may corrupt or otherwise adversely affect your file; perhaps run this script on the host or on node 0 (these global variables are available to all processes).
`e` is offline   Reply With Quote

Old   April 21, 2015, 05:43
Default
  #3
New Member
 
Join Date: Apr 2015
Posts: 28
Rep Power: 11
Manathan is on a distinguished road
Thanks for your comments,

1) with the 2D approach, i just need to track the trajectory of particle and basically measure its deviation from injection : this is why i liked it, no need to work with face values, just need the DPM_BC function to get the "p" trapped at the wall.
But thank you for your approach, i previously didn't think of how to do it this way !

2) I'm not sure I understand the "multiple nodes" and the problem with this approach in term of files. I'm a junior in udf, fluent files etc...
Manathan is offline   Reply With Quote

Old   April 21, 2015, 06:12
Default
  #4
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
Quote:
Originally Posted by Manathan View Post
1) with the 2D approach, i just need to track the trajectory of particle and basically measure its deviation from injection : this is why i liked it, no need to work with face values, just need the DPM_BC function to get the "p" trapped at the wall.
But thank you for your approach, i previously didn't think of how to do it this way !
I would have thought the UDM at boundary faces was the easier approach for measuring the collection efficiency (count the number of particles on a boundary face and compare with the injected particles). You could also visualise this deposition within ANSYS Fluent or ANSYS CFD-Post and export the values for post-processing elsewhere; however your resolution of results are restricted by your mesh.

However, if you're interested in the particle injection location and other parameters beyond the number of particles and particle mass fluxes then you'd need to store this data. I've used a similar approach where I saved this data directly to a text file within the DEFINE_DPM_BC macro and post-processed this data with MATLAB. This method has the benefit of not requiring a storage of large arrays in memory (millions of particles) and is easily tractable to arbitrary geometries and dimensions (no hard coding of arrays).

Quote:
Originally Posted by Manathan View Post
2) I'm not sure I understand the "multiple nodes" and the problem with this approach in term of files. I'm a junior in udf, fluent files etc...
If you run ANSYS Fluent (or older versions of Fluent) in serial then your CPU essentially executes the commands in sequence; nice and straightforward. However, if you're running Fluent in parallel then some macros will be called by every node (core/thread/processor) you have allocated for Fluent (kind of; simply put) and others would only be called by one process.

DEFINE_ON_DEMAND is an example of a macro which is called by every node, host and in serial (have a read of the parallelisation of UDFs in the UDF Manual for details; it's a brief read). If one node, say NodeA, opens "report_beta.txt" and begins writing line by line the particle details but suddenly another node, say NodeB, has also been tasked with the same job and attempts to open the file then there could be issues (there is only one physical location on your HDD for this file). At the very least, if the C developers and/or Fluent developers have locked the file (not the case with fopen() etc), this writing process would take N times longer than serial where N is the number of nodes. On the other hand, the DEFINE_DPM_BC macro is only called by a single node when a particle collides with a boundary (each node essentially has a portion of all particles to "look after").
`e` is offline   Reply With Quote

Old   April 21, 2015, 07:56
Default
  #5
New Member
 
Join Date: Apr 2015
Posts: 28
Rep Power: 11
Manathan is on a distinguished road
Thank you for your replies,

Everything is clearer now ! I will be careful with DEFINE_ON_DEMAND then...

So if i understand well; for my example about writing files, if I put those lines of DEFINE_ON_DEMAND simply in the DPM_BC macro, Will it do the job correctly and writing step by step at each impact the data in the file ? :
"
FILE *f1;
f1 = fopen("report_beta.txt", "a");
fprintf(f1, "%d %f %f %f %f %f %f %f\n", i-1,x,y,x0,y0,dy0,ds,beta );
fclose(f1);
"
Manathan is offline   Reply With Quote

Old   April 21, 2015, 08:19
Default
  #6
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
If you write to one single file every time this DEFINE_DPM_BC is called then there's still a chance that two or more processes attempt to access this file (when two particles deposit at the same wall clock time). I've written to multiple files which are unique to each node using the "myid" variable (which is defined by Fluent, you don't declare or initialise this variable). For example:

Code:
FILE * f1;
char fileName[100];
sprintf(fileName, "deposited_particles_%d.dat", myid);
f1 = fopen(fileName,"a");
fclose(f1);
Then the first step of post-processing is to stitch these files together into one file or database for data analysis and visualisation.
`e` is offline   Reply With Quote

Old   April 21, 2015, 08:22
Default
  #7
New Member
 
Join Date: Apr 2015
Posts: 28
Rep Power: 11
Manathan is on a distinguished road
ohhhhh ! that's an amazing trick oO, thank you so much !!!
Manathan is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
grid dependancy gueynard a. Main CFD Forum 19 June 27, 2014 21:22
Why 3D solid-pore geometry showing diverged solution? Sargam05 OpenFOAM 0 December 3, 2012 15:45
Analytic solution for 2D steady Euler equations jojo81 Main CFD Forum 0 October 15, 2012 12:05
IcoFoam parallel woes msrinath80 OpenFOAM Running, Solving & CFD 9 July 22, 2007 02:58
Wall functions Abhijit Tilak Main CFD Forum 6 February 5, 1999 01:16


All times are GMT -4. The time now is 14:27.