using 1/3 rule for surface film temperature

comments
This commit is contained in:
andy
2009-05-18 12:06:52 +01:00
parent 5c0b253300
commit d054f81b57
2 changed files with 9 additions and 3 deletions

View File

@ -153,6 +153,9 @@ void Foam::LiquidEvaporation<CloudType>::calculate
// Reynolds number // Reynolds number
scalar Re = mag(Ur)*d/(nuc + ROOTVSMALL); scalar Re = mag(Ur)*d/(nuc + ROOTVSMALL);
// film temperature evaluated using the 1/3 rule
scalar Tf = (2.0*T + Tc)/3.0;
// calculate mass transfer of each specie in liquid // calculate mass transfer of each specie in liquid
forAll(activeLiquids_, i) forAll(activeLiquids_, i)
{ {
@ -160,10 +163,12 @@ void Foam::LiquidEvaporation<CloudType>::calculate
label lid = liqToLiqMap_[i]; label lid = liqToLiqMap_[i];
// vapour diffusivity [m2/s] // vapour diffusivity [m2/s]
scalar Dab = liquids_->properties()[lid].D(pc, T); scalar Dab = liquids_->properties()[lid].D(pc, Tf);
// saturation pressure for species i [pa] // saturation pressure for species i [pa]
scalar pSat = liquids_->properties()[lid].pv(pc, T); // - carrier phase pressure assumed equal to the liquid vapour pressure
// close to the surface
scalar pSat = liquids_->properties()[lid].pv(pc, Tf);
// Schmidt number // Schmidt number
scalar Sc = nuc/(Dab + ROOTVSMALL); scalar Sc = nuc/(Dab + ROOTVSMALL);
@ -175,7 +180,7 @@ void Foam::LiquidEvaporation<CloudType>::calculate
scalar kc = Sh*Dab/(d + ROOTVSMALL); scalar kc = Sh*Dab/(d + ROOTVSMALL);
// vapour concentration at droplet surface [kgmol/m3] // vapour concentration at droplet surface [kgmol/m3]
scalar Cs = pSat/(specie::RR*T); scalar Cs = pSat/(specie::RR*Tf);
// vapour concentration in bulk gas [kgmol/m3] // vapour concentration in bulk gas [kgmol/m3]
scalar Cinf = Xc[gid]*pc/(specie::RR*Tc); scalar Cinf = Xc[gid]*pc/(specie::RR*Tc);

View File

@ -27,6 +27,7 @@ Class
Description Description
Liquid evaporation model Liquid evaporation model
- uses ideal gas assumption
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/