|
[Sponsors] |
November 8, 2010, 06:09 |
Particle-Source-In-cell (PSI-C) in DPM
|
#1 |
Member
john
Join Date: Nov 2010
Posts: 50
Rep Power: 16 |
Hi All,
Does any body knows how to get concentration of particles at required locations using DPM injection? I am using Lagrangian particle tracking method. Any clues? Thanks John |
|
November 10, 2010, 12:43 |
|
#2 |
Member
Allan Walsh
Join Date: Mar 2009
Posts: 56
Rep Power: 17 |
Do you mean to view the results of the concentration of the particle phase in Fluent? Or do you want to access the variable that contains the particle concentration in a macro? The variable for particle concentration will be described in the dpm.h header file and is called something like SV_DPMS_CONC... Good luck.
|
|
November 11, 2010, 00:10 |
|
#3 |
Member
john
Join Date: Nov 2010
Posts: 50
Rep Power: 16 |
Hi Walsh,
Thanks for your reply. I mean i want to monitor the DPM concentration at diferent locations in the domain. DO you have any idea can i do this using UDF? Thanks John |
|
January 31, 2011, 07:31 |
|
#4 |
Member
john
Join Date: Nov 2010
Posts: 50
Rep Power: 16 |
Hi Guys,
I am still stuck at this problem. Does anybody used PSI-C method UDF for DPM particle tracking. PSI-C method converts no. of particles in cell to the concentration of particles in the cell. Hnece, we can view/get particle concentration in the domain as like scalar in the domain. Thanks in advance |
|
May 8, 2012, 23:36 |
|
#5 |
New Member
godspeedwzw
Join Date: Mar 2011
Posts: 8
Rep Power: 15 |
hi, have you solved the problem? I have the same problem, can we add the dpm concentration to the variable list? and how to use the PSI-C method? thanks!
|
|
May 8, 2012, 23:41 |
|
#6 |
New Member
godspeedwzw
Join Date: Mar 2011
Posts: 8
Rep Power: 15 |
I checked the manual and find if we select "interation with continuous phase", the dpm concentration with appear in the variable list. but how we add this to the list when we do one way coupling without selecting "interation with continuous phase"?
|
|
October 21, 2012, 16:17 |
|
#7 |
New Member
IVI
Join Date: Oct 2012
Posts: 14
Rep Power: 14 |
I also want to display the contour of particle concentration.
how I can do this ? |
|
May 22, 2013, 14:52 |
|
#8 |
New Member
Join Date: Apr 2013
Posts: 1
Rep Power: 0 |
I have managed to display the concentration contour in kg/m^3 after activating "interaction with continuous phase" , i want it to be in cfu/m^3, how can i do it?
Thanks in advance |
|
May 22, 2013, 15:00 |
|
#9 |
New Member
mojtaba_a
Join Date: Aug 2012
Posts: 3
Rep Power: 14 |
Hi
as i understood, you have to solve it intransient. In DPM set you can mark the intransient solve . then you can track a particle. Best Regards |
|
September 7, 2013, 17:18 |
|
#10 |
Senior Member
Astio Lamar
Join Date: May 2012
Location: Pipe
Posts: 186
Rep Power: 14 |
@gan6030:
Could you please share your approach to explore contour plot of concentration ? do you find any solution for CFU? thanks |
|
April 11, 2016, 08:01 |
|
#11 |
Member
yun
Join Date: Jul 2015
Posts: 37
Rep Power: 11 |
hi all
anyone succeeded to use PSI-C for concentration calculation in one-way coupling? |
|
June 23, 2018, 09:30 |
|
#12 |
Member
yun
Join Date: Jul 2015
Posts: 37
Rep Power: 11 |
can any one who needs it try the code below and share the comments if its working properly or not please?
ps. it needs to be compiled otherwise doesnt work! #include "udf.h" DEFINE_ON_DEMAND(Zero_UDM) { Domain *domain; cell_t c; Thread *t; domain=Get_Domain(1); thread_loop_c(t,domain) { begin_c_loop(c,t) { C_UDMI(c,t,0) = 0.0; } end_c_loop(c,t) } } real dt; DEFINE_DPM_SCALAR_UPDATE(Part_Con,c,t,initialize,p ) { Set_User_Memory_Name(0,"UDM0: PSIC"); dt = (P_TIME(p) - P_TIME0(p)); C_UDMI(c,t,0) += P_FLOW_RATE(p)*dt/C_VOLUME(c,t); } |
|
June 23, 2018, 18:36 |
|
#13 |
Senior Member
Join Date: Sep 2017
Posts: 246
Rep Power: 12 |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
FvMatrix coefficients | shrina | OpenFOAM Running, Solving & CFD | 10 | October 3, 2013 15:38 |
Version 15 on Mac OS X | gschaider | OpenFOAM Installation | 113 | December 2, 2009 11:23 |
About Particle velocity of DPM in Fluent? | long zhengwei | FLUENT | 0 | March 13, 2009 05:02 |
DxFoam reader update | hjasak | OpenFOAM Post-Processing | 69 | April 24, 2008 02:24 |
DPM particle tracks - speed up? | Greg Perkins | FLUENT | 0 | September 5, 2003 03:56 |