Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
533410aa
Commit
533410aa
authored
Jun 10, 2019
by
mattijs
Committed by
Andrew Heather
Jun 10, 2019
Browse files
COMP: phaseSystemModels: few compilation fixes
parent
09c67d90
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/phaseSystemModels/reactingEulerFoam/derivedFvPatchFields/wallBoilingSubModels/CHFModels/Zuber/Zuber.C
View file @
533410aa
...
...
@@ -95,7 +95,7 @@ Foam::wallBoilingModels::CHFModels::Zuber::CHF
return
Cn_
*
rhoVapor
*
L
*
pow
(
sigma
*
mag
(
g
.
value
())
*
(
max
(
rhoLiq
-
rhoVapor
,
0
.
0
)
/
sqr
(
rhoVapor
)),
sigma
*
mag
(
g
.
value
())
*
(
max
(
rhoLiq
-
rhoVapor
,
Zero
)
/
sqr
(
rhoVapor
)),
0
.
25
);
}
...
...
src/phaseSystemModels/reactingEulerFoam/phaseSystems/populationBalanceModel/populationBalanceModel/populationBalanceModelI.H
View file @
533410aa
...
...
@@ -27,7 +27,7 @@ License
inline
Foam
::
label
Foam
::
diameterModels
::
populationBalanceModel
::
nCorr
()
const
{
return
mesh_
.
solverDict
(
name_
).
lookupType
<
label
>
(
"nCorr"
);
return
mesh_
.
solverDict
(
name_
).
get
<
label
>
(
"nCorr"
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment