mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user