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
0ee2f48d
Commit
0ee2f48d
authored
16 years ago
by
Andrew Heather
Browse files
Options
Downloads
Patches
Plain Diff
updates
parent
9b950c5e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lagrangian/intermediate/submodels/Reacting/PhaseChangeModel/LiquidEvaporation/LiquidEvaporation.C
+11
-10
11 additions, 10 deletions
...ng/PhaseChangeModel/LiquidEvaporation/LiquidEvaporation.C
with
11 additions
and
10 deletions
src/lagrangian/intermediate/submodels/Reacting/PhaseChangeModel/LiquidEvaporation/LiquidEvaporation.C
+
11
−
10
View file @
0ee2f48d
...
...
@@ -76,7 +76,7 @@ Foam::LiquidEvaporation<CloudType>::LiquidEvaporation
(
owner
.
mesh
().
objectRegistry
::
lookupObject
<
dictionary
>
(
"thermophysicalProperties"
owner
.
carrierThermo
().
name
()
)
)
),
...
...
@@ -153,8 +153,8 @@ void Foam::LiquidEvaporation<CloudType>::calculate
// Reynolds number
scalar
Re
=
mag
(
Ur
)
*
d
/
(
nuc
+
ROOTVSMALL
);
// film temperature evaluated using the
particle temperatur
e
scalar
Tf
=
T
;
// film temperature evaluated using the
2/3 rul
e
scalar
Tf
=
(
2
.
0
*
T
+
Tc
)
/
3
.
0
;
// calculate mass transfer of each specie in liquid
forAll
(
activeLiquids_
,
i
)
...
...
@@ -162,12 +162,13 @@ void Foam::LiquidEvaporation<CloudType>::calculate
label
gid
=
liqToCarrierMap_
[
i
];
label
lid
=
liqToLiqMap_
[
i
];
// vapour diffusivity [m2/s]
// vapour diffusivity
at film temperature and cell pressure
[m2/s]
scalar
Dab
=
liquids_
->
properties
()[
lid
].
D
(
pc
,
Tf
);
// saturation pressure for species i [pa]
// - carrier phase pressure assumed equal to the liquid vapour pressure
// close to the surface
// saturation pressure for species i at film temperature and cell
// pressure [pa] - carrier phase pressure assumed equal to the liquid
// vapour pressure close to the surface
// - limited to pc if pSat > pc
scalar
pSat
=
min
(
liquids_
->
properties
()[
lid
].
pv
(
pc
,
Tf
),
pc
);
// Schmidt number
...
...
@@ -179,11 +180,11 @@ void Foam::LiquidEvaporation<CloudType>::calculate
// mass transfer coefficient [m/s]
scalar
kc
=
Sh
*
Dab
/
(
d
+
ROOTVSMALL
);
// vapour concentration at droplet surface [kmol/m3]
// vapour concentration at droplet surface
at film temperature
[kmol/m3]
scalar
Cs
=
pSat
/
(
specie
::
RR
*
Tf
);
// vapour concentration in bulk gas [kmol/m3]
scalar
Cinf
=
Xc
[
gid
]
*
pc
/
(
specie
::
RR
*
T
c
);
// vapour concentration in bulk gas
at film temperature
[kmol/m3]
scalar
Cinf
=
Xc
[
gid
]
*
pc
/
(
specie
::
RR
*
T
f
);
// molar flux of vapour [kmol/m2/s]
scalar
Ni
=
max
(
kc
*
(
Cs
-
Cinf
),
0
.
0
);
...
...
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