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

reactingEulerFoam/interfacialCompositionModels/saturationModels/Antoine: Corrected Tsat expression

Patch provided by Daniel Jasinski
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1893
parent 093b4aad
Branches
Tags
No related merge requests found
......@@ -95,7 +95,7 @@ Foam::saturationModels::Antoine::Tsat
const volScalarField& p
) const
{
return B_/(A_ - log10(p)) - C_;
return B_/(log(p) - 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