Skip to content
Snippets Groups Projects
Commit 7405f755 authored by Henry Weller's avatar Henry Weller
Browse files

chtMultiRegionFoam: Updated temperature diagnostics

Patch provided by Daniel Jasinski
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=1843
parent a96d82f7
Branches
Tags
No related merge requests found
......@@ -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;
......@@ -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)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment