mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Corrected Hf and Sf units for hPoly thermo on write
This commit is contained in:
@ -93,8 +93,8 @@ void Foam::hPolynomialThermo<EquationOfState, PolySize>::write
|
||||
) const
|
||||
{
|
||||
EquationOfState::write(os);
|
||||
os.writeKeyword("Hf") << Hf_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("Sf") << Sf_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("Hf") << Hf_/this->W() << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("Sf") << Sf_/this->W() << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("cpPolynomial") << cpPolynomial_/this->W()
|
||||
<< token::END_STATEMENT << nl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user