mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: kinematic film - updated output for film thickness extrema
This commit is contained in:
@ -1049,6 +1049,7 @@ void kinematicSingleLayer::info() const
|
||||
{
|
||||
Info<< "\nSurface film: " << type() << endl;
|
||||
|
||||
const scalarField& deltaInternal = delta_.internalField();
|
||||
const vectorField& Uinternal = U_.internalField();
|
||||
|
||||
Info<< indent << "added mass = "
|
||||
@ -1057,8 +1058,8 @@ void kinematicSingleLayer::info() const
|
||||
<< gSum((deltaRho_*magSf())()) << nl
|
||||
<< indent << "min/max(mag(U)) = " << gMin(mag(Uinternal)) << ", "
|
||||
<< gMax(mag(Uinternal)) << nl
|
||||
<< indent << "min/max(delta) = " << min(delta_).value() << ", "
|
||||
<< max(delta_).value() << nl
|
||||
<< indent << "min/max(delta) = " << gMin(deltaInternal) << ", "
|
||||
<< gMax(deltaInternal) << nl
|
||||
<< indent << "coverage = "
|
||||
<< gSum(alpha_.internalField()*magSf())/gSum(magSf()) << nl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user