CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > CONVERGE

Particle residence time

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 17, 2016, 03:22
Default Particle residence time
  #1
New Member
 
Unnikrishnan T P
Join Date: Sep 2015
Location: Chennai, India
Posts: 27
Rep Power: 11
unnikrishnan is on a distinguished road
I'm doing a spray simulation. How can I calculate the residence time of particles? Is there any way within Converge itself?
I post process using EnSight. But I dint find a way there. Please reply if anyone has a solution...
Thank you
unnikrishnan is offline   Reply With Quote

Old   February 19, 2016, 17:00
Default
  #2
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 11
ywang89 is on a distinguished road
Quote:
Originally Posted by unnikrishnan View Post
I'm doing a spray simulation. How can I calculate the residence time of particles? Is there any way within Converge itself?
I post process using EnSight. But I dint find a way there. Please reply if anyone has a solution...
Thank you
Hello There,

In CONVERGE we have a parcel variable called lifetime. I think this is what you wanted. You can quote this variable via a UDF. However, we don't output this variable directly to our post files. In our UDF user_post.c you should see lines like below
parcel->user[0] = 0.0;
parcel->user[1] = pow((parcel->radius),3)*(4.0/3.0)*PI*(parcel->density)*(parcel->num_drop);
parcel->user[2] = parcel->radius;

You can change the first line to
parcel->user[0] = parcel->lifetime;

Then go to udf.in and set
3 user_num_parcel
Next go to post.in and add
user[0] under <parcel>

Last, run CONVERGE with the user_post UDF.

You will be able to visualize the parcel lifetime (variable user_0) from Ensight

Please let us know if this will work for you.

Thanks,

Yunliang
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   February 20, 2016, 03:25
Default
  #3
New Member
 
Unnikrishnan T P
Join Date: Sep 2015
Location: Chennai, India
Posts: 27
Rep Power: 11
unnikrishnan is on a distinguished road
Thank you so much. Certainly I'll try this and let you know.
unnikrishnan is offline   Reply With Quote

Old   September 16, 2016, 03:34
Smile
  #4
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Quote:
Originally Posted by ywang89 View Post
Hello There,

In CONVERGE we have a parcel variable called lifetime. I think this is what you wanted. You can quote this variable via a UDF. However, we don't output this variable directly to our post files. In our UDF user_post.c you should see lines like below
parcel->user[0] = 0.0;
parcel->user[1] = pow((parcel->radius),3)*(4.0/3.0)*PI*(parcel->density)*(parcel->num_drop);
parcel->user[2] = parcel->radius;

You can change the first line to
parcel->user[0] = parcel->lifetime;

Then go to udf.in and set
3 user_num_parcel
Next go to post.in and add
user[0] under <parcel>

Last, run CONVERGE with the user_post UDF.

You will be able to visualize the parcel lifetime (variable user_0) from Ensight

Please let us know if this will work for you.

Thanks,

Yunliang
Sir, am also looking DPM, liquid + 5microns of solid particles, here am not getting how to calculate the particle residence time. Please let me know am troubling too muchh.
pachi is offline   Reply With Quote

Old   September 16, 2016, 03:42
Default Particle residence time
  #5
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
WIth a given particular time, particle cant able to travel entaire length of the fluid domain.
My ultimate aim is to compare the particle residence time with difference reynolds number.

How i can go with this problem, please let me know..
pachi is offline   Reply With Quote

Old   September 16, 2016, 18:00
Default
  #6
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 11
ywang89 is on a distinguished road
Quote:
Originally Posted by pachi View Post
WIth a given particular time, particle cant able to travel entaire length of the fluid domain.
My ultimate aim is to compare the particle residence time with difference reynolds number.

How i can go with this problem, please let me know..
Parcel residence time ( it is called the lifetime in the code) is the time from the nozzle. If you can use Ensight to visualize the lifetime using the way I talked about above, you should be able to see the impact of Reynolds numbers on it.

Thanks,

Yunliang
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   September 17, 2016, 04:14
Default
  #7
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Hiii ,

am looking particle residence time in the flow field.

Along with the water and am injecting some 5 microns diameter of particles with a velocity of 0.042m/s, here i have not mentioned the total mass flow rate in the injection frame.

Is this mainly affect to the flow field and am getting confuse with how to calculate total mass flow rate.

Currently, injection time am calculating based on the particle velocity(0.0425m/s) and my domain length(5m) soo travel to this length it needs approximately 117s. IS this correct.
Please let me know am worried too much.
pachi is offline   Reply With Quote

Old   September 19, 2016, 11:14
Default
  #8
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 11
ywang89 is on a distinguished road
Quote:
Originally Posted by pachi View Post
Hiii ,

am looking particle residence time in the flow field.

Along with the water and am injecting some 5 microns diameter of particles with a velocity of 0.042m/s, here i have not mentioned the total mass flow rate in the injection frame.

Is this mainly affect to the flow field and am getting confuse with how to calculate total mass flow rate.

Currently, injection time am calculating based on the particle velocity(0.0425m/s) and my domain length(5m) soo travel to this length it needs approximately 117s. IS this correct.
Please let me know am worried too much.
Hello,

From the file mass_avg_flow.out, you can see the flow rates of both the liquid and parcel. If the mass flow rate of parcels is significant compared with that of the liquid flow, it will affect the liquid flow. Small parcels will follow the fluid to flow. Therefore the parcels may reach a higher velocity later. This mean the residence time should be shorter than 117 s if the water velocity is higher than 0.042 m/s.
Thanks,
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   September 19, 2016, 14:42
Default
  #9
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Quote:
Originally Posted by ywang89 View Post
Hello,

From the file mass_avg_flow.out, you can see the flow rates of both the liquid and parcel. If the mass flow rate of parcels is significant compared with that of the liquid flow, it will affect the liquid flow. Small parcels will follow the fluid to flow. Therefore the parcels may reach a higher velocity later. This mean the residence time should be shorter than 117 s if the water velocity is higher than 0.042 m/s.
Thanks,
Thank you very much Ywang.

Yeah,

i tried its working nicely. Thank you soo much.
pachi is offline   Reply With Quote

Old   September 19, 2016, 14:50
Default
  #10
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Hii Y wang,

One more doubt,

Now my simulation running with unsteady liquid with steady flow particle feeding in the domain.

In the post processing some particles were incomplete/stopped in between.
it means ????

And how to know number particles traveling in the flow. Mine feeding is steady with flow rate of 0.092 kg/s.

Thank you...
pachi is offline   Reply With Quote

Old   September 19, 2016, 15:33
Default
  #11
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 11
ywang89 is on a distinguished road
Quote:
Originally Posted by pachi View Post
Hii Y wang,

One more doubt,

Now my simulation running with unsteady liquid with steady flow particle feeding in the domain.

In the post processing some particles were incomplete/stopped in between.
it means ????

And how to know number particles traveling in the flow. Mine feeding is steady with flow rate of 0.092 kg/s.

Thank you...
Hello,

After some time, both the liquid flow and particulate phase will reach the steady state. From spray.out you can see the number of parcels in the domain. If the number of parcels in the domain is not changing, you can say it has reached the steady state. I don't understand your first question "some particles were incomplete/stopped."
Thanks,
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   September 21, 2016, 03:01
Default
  #12
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Quote:
Originally Posted by ywang89 View Post
Hello,

After some time, both the liquid flow and particulate phase will reach the steady state. From spray.out you can see the number of parcels in the domain. If the number of parcels in the domain is not changing, you can say it has reached the steady state. I don't understand your first question "some particles were incomplete/stopped."
Thanks,
Thank you Ywang,

Some of the particles, while traveling in the flow they stopped in between in the domain. Their path lines are incomplete. it means??
pachi is offline   Reply With Quote

Old   September 21, 2016, 16:44
Default
  #13
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 11
ywang89 is on a distinguished road
Can you check the parcel velocity to see if it is very low?
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   September 22, 2016, 01:14
Default
  #14
New Member
 
Prashanth
Join Date: Jun 2016
Posts: 20
Rep Power: 10
pachi is on a distinguished road
Quote:
Originally Posted by ywang89 View Post
Can you check the parcel velocity to see if it is very low?
During transient case, liquid reynolds number varies from 200 to 1000, hence at inlet for particles i defined avg Reynolds number(600).

Tube had constrictions(80% area reduction), because of recirculation zones in the downstream might be velocity of fluid/particles will become neutral ie fine.

However, when i look in the upstream some of the particles stopped before crossing the constrictions.
pachi is offline   Reply With Quote

Reply

Tags
converge, ensight, particle, residence time


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
[Other] Contribution a new utility: refine wall layer mesh based on yPlus field lakeat OpenFOAM Community Contributions 58 December 23, 2021 03:36
simpleFoam error - "Floating point exception" mbcx4jc2 OpenFOAM Running, Solving & CFD 12 August 4, 2015 03:20
Help for the small implementation in turbulence model shipman OpenFOAM Programming & Development 25 March 19, 2014 11:08
In steady DPM model, how to get a particle residence time in a specific cell? DanK FLUENT 1 August 25, 2012 01:33
Particle residence time Eric1 FLUENT 0 May 2, 2010 23:13


All times are GMT -4. The time now is 15:45.