mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
reactingEulerFoam/interfacialCompositionModels/saturationModels/Antoine: Corrected Tsat expression
Patch provided by Daniel Jasinski Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1893
This commit is contained in:
@ -95,7 +95,7 @@ Foam::saturationModels::Antoine::Tsat
|
||||
const volScalarField& p
|
||||
) const
|
||||
{
|
||||
return B_/(A_ - log10(p)) - C_;
|
||||
return B_/(log(p) - A_) - C_;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user