CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

sprayFoam Evaporation Model

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 2 Post By pbalz

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 20, 2015, 10:03
Default sprayFoam Evaporation Model
  #1
New Member
 
Mr.liu
Join Date: Sep 2012
Posts: 27
Rep Power: 13
lx882211 is on a distinguished road
HI
I am a new foamer and now i meet a problem that i can not solve, please help me if u know.

i use sprayFoam in OF 2.3.0 to simulate SPRAY A (900K atmosphere), PhaseChangeModel, LiquidEvaporationBoil (default setting). The liquid should evaporate quickly because atmosphere T is 900K. However, the evaporation rate is very slow.

My friend told me that, 2.3.0 sprayFoam is same as 2.0.0 dieselFoam, so i simulated it again using dieselFoam, 2.0.0, evaporationModel, standardEvaporationModel (default setting), the results seem good, evaporate and mix fast.

So, i am confused that, why there is no dieselFoam in 2.3.0 and the sprayFoam can replace the dieselFoam? is there any difference in Ecaporation Model? or it just changes another name?

Thanks u
lx882211 is offline   Reply With Quote

Old   October 21, 2015, 07:45
Default
  #2
New Member
 
Mr.liu
Join Date: Sep 2012
Posts: 27
Rep Power: 13
lx882211 is on a distinguished road
Quote:
Originally Posted by lx882211 View Post
HI
I am a new foamer and now i meet a problem that i can not solve, please help me if u know.

i use sprayFoam in OF 2.3.0 to simulate SPRAY A (900K atmosphere), PhaseChangeModel, LiquidEvaporationBoil (default setting). The liquid should evaporate quickly because atmosphere T is 900K. However, the evaporation rate is very slow.

My friend told me that, 2.3.0 sprayFoam is same as 2.0.0 dieselFoam, so i simulated it again using dieselFoam, 2.0.0, evaporationModel, standardEvaporationModel (default setting), the results seem good, evaporate and mix fast.

So, i am confused that, why there is no dieselFoam in 2.3.0 and the sprayFoam can replace the dieselFoam? is there any difference in Ecaporation Model? or it just changes another name?

Thanks u
can anybody help me?
lx882211 is offline   Reply With Quote

Old   January 7, 2016, 07:33
Default
  #3
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
Hi,
do you solve your problems?
I am having similar problems with sprayFoam since I see that, considering even the aachenBomb tutorial, the spray starts to evaporate even if both gas and liquid temperature are imposed at 300K. On my opinion this is not true.
Opinions regarding this point are welcome!
Stefano
Stefano Puggelli is offline   Reply With Quote

Old   January 7, 2016, 07:40
Default
  #4
New Member
 
Mr.liu
Join Date: Sep 2012
Posts: 27
Rep Power: 13
lx882211 is on a distinguished road
Quote:
Originally Posted by Stefano Puggelli View Post
Hi,
do you solve your problems?
I am having similar problems with sprayFoam since I see that, considering even the aachenBomb tutorial, the spray starts to evaporate even if both gas and liquid temperature are imposed at 300K. On my opinion this is not true.
Opinions regarding this point are welcome!
Stefano
sorry i haven't solve it, which version you use OF?
lx882211 is offline   Reply With Quote

Old   January 7, 2016, 07:42
Default
  #5
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
The version that I am using is the 2.3.1
Stefano Puggelli is offline   Reply With Quote

Old   January 7, 2016, 08:01
Default
  #6
New Member
 
Mr.liu
Join Date: Sep 2012
Posts: 27
Rep Power: 13
lx882211 is on a distinguished road
Quote:
Originally Posted by Stefano Puggelli View Post
The version that I am using is the 2.3.1
in 2.3, PhaseChangeModel includs the evaporationModel in 2.0, it depends on the parameters, but i am not sure how to set it.
lx882211 is offline   Reply With Quote

Old   January 9, 2016, 08:20
Default
  #7
Member
 
Pascal Balz
Join Date: Feb 2015
Location: Germany
Posts: 44
Rep Power: 11
pbalz is on a distinguished road
Hi,

some time ago I had similar problems with the evaporation rate in sprayFoam.

Quote:
Originally Posted by Stefano Puggelli View Post
the spray starts to evaporate even if both gas and liquid temperature are imposed at 300K.
As long as you don't have saturated vapor in your fluid domain there will always be a mass transfer from spray to carrier phase due to evaporation (not boiling).

Have a look at the source code of the liquidEvaporationBoil model:

Code:
else
            {
                // evaporation

                // surface molar fraction - Raoult's Law
                const scalar Xs = X[lid]*pSat/pc;

                // molar ratio
                const scalar Xr = (Xs - Xc)/max(SMALL, 1.0 - Xs);

                if (Xr > 0)
                {
                    // mass transfer [kg]
                    dMassPC[lid] += pi*d*Sh*Dab*rhos*log(1.0 + Xr)*dt;
                }
            }
This is for evaporation only, so T < TBoil and no saturated vapor.
As you can see the mass transfer is strongly dependent on the 'molar ratio' (which you might not change) and 'Dab' which basically is the vapor diffusivity and therefore a liquid property.
I changed this value so that the evaporation rate fits my desired values, as I needed a completely new liquid property anyway. You can find this value in the liquidProperties source code of your specific liquid (i.e. C2H6.C). Just change the value of 'D_' there and remember to look up which polynomial interpolation is used for the specific liquid (NSRDS functions).
After the changes recompile the code and it should work

I don't know if there are any other possibilities to 'tune' the evaporation rate, but this worked perfectly for me.
lx882211 and granzer like this.
__________________
Regards,
Pascal
pbalz is offline   Reply With Quote

Old   January 10, 2016, 06:08
Default
  #8
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
Hi Pascal,
thank you for your quick answer.
After looking to the source code, I arrive to your considerations.
So I perfectly agree with you.
Thanks,
Stefano
Stefano Puggelli is offline   Reply With Quote

Old   July 9, 2016, 15:10
Default Evaporation in SprayFoam
  #9
New Member
 
Join Date: Mar 2016
Posts: 3
Rep Power: 10
MJavad is on a distinguished road
Hi I am MJavad
I have a question .
I m solving a Water spray Injection in a Air crossflow . every thing is ok but the rate of mass transfer phase change for evaporation is not noticable . I have applied LiquidEvaporation as Evaporation Model in sprayCloud and As I told after running code I can see many parcles which should be evaporated but they are in domain yet ..

Thanks If you could help me

MJavad
MJavad 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
Superlinear speedup in OpenFOAM 13 msrinath80 OpenFOAM Running, Solving & CFD 18 March 3, 2015 05:36
Overflow Error in Multiphase Modelling with Two Continuous Fluids ashtonJ CFX 6 August 11, 2014 14:32
Evaporation Model brbbhatti OpenFOAM 3 March 21, 2014 04:50
Water subcooled boiling Attesz CFX 7 January 5, 2013 03:32
Evaporation model in dieselSpray Tag OpenFOAM 25 July 13, 2011 08:57


All times are GMT -4. The time now is 23:10.