surfaceFilmModels::waxSolventEvaporation: Corrected dm

rhoInf already included in evapRateCoeff
This commit is contained in:
Henry Weller
2022-02-26 10:13:31 +00:00
parent 0e9e15d8dd
commit f6e8193553

View File

@ -372,10 +372,7 @@ void waxSolventEvaporation::correctModel
Ysolvent_.min(1); Ysolvent_.min(1);
Ysolvent_.max(0); Ysolvent_.max(0);
scalarField dm const scalarField dm(dt*V*(evapRateCoeff*Ysolvent_ + evapRateInf));
(
dt*V*rhoInf*(evapRateCoeff*Ysolvent_ + evapRateInf)
);
dMass += dm; dMass += dm;