BUG: MapGeometricFields maps symmTensor instead of sphericalTensor (#2335)

STYLE: volFieldValue prints empty lines (#2334)

GIT: remove unused valveBank file (#2336)

STYLE: use value (not dimensioned value) in comfort warning (#2338)
This commit is contained in:
Mark Olesen
2022-01-24 10:32:43 +01:00
parent 35cf639fe8
commit 1ea1b84f12
4 changed files with 7 additions and 111 deletions

View File

@ -99,7 +99,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:2005\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;

View File

@ -279,9 +279,9 @@ bool Foam::functionObjects::fieldValues::volFieldValue::read
{
Info<< flatOutput(weightFieldNames_) << nl;
}
}
Info<< nl << endl;
Info<< nl << endl;
}
return true;
}