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:
parent
b0eda7bc4e
commit
1c2e160231
2 changed files with 4 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
3
applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H
Normal file → Executable file
3
applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H
Normal file → Executable 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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue