Skip to content

Commit

Permalink
surfaceFilmModels::waxSolventEvaporation: Corrected dm
Browse files Browse the repository at this point in the history
rhoInf already included in evapRateCoeff
  • Loading branch information
Henry Weller committed Feb 26, 2022
1 parent 0e9e15d commit f6e8193
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -372,10 +372,7 @@ void waxSolventEvaporation::correctModel
Ysolvent_.min(1);
Ysolvent_.max(0);

scalarField dm
(
dt*V*rhoInf*(evapRateCoeff*Ysolvent_ + evapRateInf)
);
const scalarField dm(dt*V*(evapRateCoeff*Ysolvent_ + evapRateInf));

dMass += dm;

Expand Down

0 comments on commit f6e8193

Please sign in to comment.