Skip to content
Snippets Groups Projects
Commit f8b0192a authored by andy's avatar andy
Browse files

ENH: kinematic film - updated output for film thickness extrema

parent 664a4318
Branches
Tags
No related merge requests found
...@@ -1049,6 +1049,7 @@ void kinematicSingleLayer::info() const ...@@ -1049,6 +1049,7 @@ void kinematicSingleLayer::info() const
{ {
Info<< "\nSurface film: " << type() << endl; Info<< "\nSurface film: " << type() << endl;
const scalarField& deltaInternal = delta_.internalField();
const vectorField& Uinternal = U_.internalField(); const vectorField& Uinternal = U_.internalField();
Info<< indent << "added mass = " Info<< indent << "added mass = "
...@@ -1057,8 +1058,8 @@ void kinematicSingleLayer::info() const ...@@ -1057,8 +1058,8 @@ void kinematicSingleLayer::info() const
<< gSum((deltaRho_*magSf())()) << nl << gSum((deltaRho_*magSf())()) << nl
<< indent << "min/max(mag(U)) = " << gMin(mag(Uinternal)) << ", " << indent << "min/max(mag(U)) = " << gMin(mag(Uinternal)) << ", "
<< gMax(mag(Uinternal)) << nl << gMax(mag(Uinternal)) << nl
<< indent << "min/max(delta) = " << min(delta_).value() << ", " << indent << "min/max(delta) = " << gMin(deltaInternal) << ", "
<< max(delta_).value() << nl << gMax(deltaInternal) << nl
<< indent << "coverage = " << indent << "coverage = "
<< gSum(alpha_.internalField()*magSf())/gSum(magSf()) << nl; << gSum(alpha_.internalField()*magSf())/gSum(magSf()) << nl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment