Skip to content
Snippets Groups Projects
Commit 0c20256b authored by Carlos Peña-Monferrer's avatar Carlos Peña-Monferrer Committed by Sergio Ferraris
Browse files

BUG: LiquidEvapFuchsKnudsen: add missing particle surface area (Fixes #2069)

parent ae555ec7
Branches
Tags
1 merge request!492BUG: 2021-2: Various bug fixes and developments
......@@ -5,7 +5,7 @@
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2020 OpenCFD Ltd.
Copyright (C) 2020-2021 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -253,11 +253,12 @@ void Foam::LiquidEvapFuchsKnudsen<CloudType>::calculate
// Sherwood number
const scalar Sherwood = Sh(Re, Sc);
// mass flux [kg/s]
// mass flux density [kg/m2/s]
const scalar Ni = (rhog*Sherwood*Dab*Cm/d)*log((1 - YeInf)/(1 - YeSurf));
// mass transfer [kg]
dMassPC[lid] += Ni*dt;
const scalar As = Foam::constant::mathematical::pi*d*d;
dMassPC[lid] += Ni*As*dt;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment