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

LiquidEvaporationBoil & LiquidEvaporation

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 1 Post By amirhoshangm
  • 1 Post By pappo1890

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 26, 2016, 05:19
Default LiquidEvaporationBoil & LiquidEvaporation
  #1
New Member
 
Amir
Join Date: Feb 2012
Posts: 12
Rep Power: 14
amirhoshangm is on a distinguished road
Hi,

I'm running a test case with sprayFoam. I have used two evaporation models "LiquidEvaporationBoil" and "LiquidEvaporation". The results are different. After some investigations, I figured out, if boiling does not occurs, theoretically two models should behave the same.

dMassPC[lid] in LiquidEvaporation is clear
Code:
dMassPC[lid] +=kc*(Cs - Cinf) *pi*sqr(d)*liquids_.properties()[lid].W()*dt
where kc is mass transfer coefficient and Cs is vapour concentration at surface of droplet

However I can not understand how dMassPC[lid] is calculated in LiquidEvaporationBoil (when there is not boiling)
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;
                }
            }
amirhoshangm is offline   Reply With Quote

Old   August 26, 2016, 07:22
Default
  #2
New Member
 
Amir
Join Date: Feb 2012
Posts: 12
Rep Power: 14
amirhoshangm is on a distinguished road
I found some information baout the evaporation part in the "LiquidEvaporationBoil" model. It is called "The Spalding evaporation model" (Spalding (1953)). you can find more information in the following link

charryzzz likes this.
amirhoshangm is offline   Reply With Quote

Old   July 31, 2019, 05:03
Default Spalding number in LiquidEvaporationBoil
  #3
New Member
 
Alessandro
Join Date: Jul 2016
Posts: 11
Rep Power: 9
pappo1890 is on a distinguished road
I know the post is quite old but I have a question concerning the use of Xr in the expression:

dMassPC[lid] += pi*d*Sh*Dab*rhos*log(1.0 + Xr)*dt;

In literature this expression is always written using Bm, the Spalding mass number:
#mass ratio
const scalar Bm=(Ys-Yc)/max(SMALL,1.0-Ys)

#Molar ratio
const scalar Xr = (Xs - Xc)/max(SMALL, 1.0 - Xs)


Does anybody know the rationale behind this choice in OpenFOAM?
zhangyan likes this.
pappo1890 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



All times are GMT -4. The time now is 19:18.