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
17cc8483
Commit
17cc8483
authored
Dec 05, 2015
by
Henry Weller
Browse files
saturationModels/Antoine: Corrected dimensions in Tsat
Resolves bug-report
http://www.openfoam.org/mantisbt/view.php?id=1940
parent
a3e555e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/reactingEulerFoam/interfacialCompositionModels/saturationModels/Antoine/Antoine.C
View file @
17cc8483
...
...
@@ -95,7 +95,9 @@ Foam::saturationModels::Antoine::Tsat
const
volScalarField
&
p
)
const
{
return
B_
/
(
log
(
p
)
-
A_
)
-
C_
;
return
B_
/
(
log
(
p
*
dimensionedScalar
(
"one"
,
dimless
/
dimPressure
,
1
))
-
A_
)
-
C_
;
}
...
...
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