chtMultiRegionFoam: Updated temperature diagnostics

Patch provided by Daniel Jasinski
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=1843
This commit is contained in:
Henry Weller
2015-09-02 15:30:20 +01:00
parent a96d82f79b
commit 7405f7552e
2 changed files with 4 additions and 2 deletions

View File

@ -24,4 +24,5 @@
thermo.correct();
Info<< "Min/max T:" << min(thermo.T()) << ' ' << max(thermo.T()) << endl;
Info<< "Min/max T:" << min(thermo.T()).value() << ' '
<< max(thermo.T()).value() << endl;

View File

@ -30,7 +30,8 @@ if (finalIter)
thermo.correct();
Info<< "Min/max T:" << min(thermo.T()) << ' ' << max(thermo.T()) << endl;
Info<< "Min/max T:" << min(thermo.T()).value() << ' '
<< max(thermo.T()).value() << endl;
if (finalIter)
{