thermoSingleLayer: Output the mean film temperature in addition to max and min

This commit is contained in:
Henry Weller
2016-03-16 15:34:57 +00:00
parent 6ee4cad870
commit 156b2d9791

View File

@ -284,7 +284,7 @@ void thermoSingleLayer::solveEnergy()
- hsSp_
+ q(hs_)
+ radiation_->Shs()
// - fvm::SuSp(rhoSp_, hs_)
// - fvm::SuSp(rhoSp_, hs_)
- rhoSp_*hs_
);
@ -724,7 +724,9 @@ void thermoSingleLayer::info()
const scalarField& Tinternal = T_.internalField();
Info<< indent << "min/max(T) = " << gMin(Tinternal) << ", "
Info<< indent << "min/mean/max(T) = "
<< gMin(Tinternal) << ", "
<< gAverage(Tinternal) << ", "
<< gMax(Tinternal) << nl;
phaseChange_->info(Info);