mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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;
|
||||
|
||||
@ -279,9 +279,9 @@ bool Foam::functionObjects::fieldValues::volFieldValue::read
|
||||
{
|
||||
Info<< flatOutput(weightFieldNames_) << nl;
|
||||
}
|
||||
}
|
||||
|
||||
Info<< nl << endl;
|
||||
Info<< nl << endl;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user