mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
thermoSingleLayer: Output the mean film temperature in addition to max and min
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user