Skip to content
Snippets Groups Projects
Commit a13b036d authored by Henry Weller's avatar Henry Weller
Browse files

saturationModels/Antoine: Corrected dimensions in Tsat

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1940
parent 6b67e391
Branches
Tags
1 merge request!33Merge foundation
......@@ -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_;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment