Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
0c20256b
Commit
0c20256b
authored
3 years ago
by
Carlos Peña-Monferrer
Committed by
Sergio Ferraris
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
BUG: LiquidEvapFuchsKnudsen: add missing particle surface area (Fixes
#2069
)
parent
ae555ec7
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!492
BUG: 2021-2: Various bug fixes and developments
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lagrangian/intermediate/submodels/Reacting/PhaseChangeModel/LiquidEvapFuchsKnudsen/LiquidEvapFuchsKnudsen.C
+4
-3
4 additions, 3 deletions
...angeModel/LiquidEvapFuchsKnudsen/LiquidEvapFuchsKnudsen.C
with
4 additions
and
3 deletions
src/lagrangian/intermediate/submodels/Reacting/PhaseChangeModel/LiquidEvapFuchsKnudsen/LiquidEvapFuchsKnudsen.C
+
4
−
3
View file @
0c20256b
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment