functionObjects::comfort: Corrected warning message

Resolves bug-report https://bugs.openfoam.org/view.php?id=3739
This commit is contained in:
Henry Weller
2021-10-14 14:36:37 +01:00
parent cd1f69599e
commit 45c8a4695a

View File

@ -96,7 +96,7 @@ Foam::dimensionedScalar Foam::functionObjects::comfort::Trad() const
<< "The calculated mean wall radiation temperature is out of the\n"
<< "bounds specified in EN ISO 7730:2006\n"
<< "Valid range is 10 degC < T < 40 degC\n"
<< "The actual value is: " << Trad - 273.15 << nl << endl;
<< "The actual value is: " << Trad.value() - 273.15 << nl << endl;
}
return Trad;