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

ENH: Added output of front/rear lift coeffs to forceCoeffs function object

parent c2418635
Branches
Tags
No related merge requests found
......@@ -137,9 +137,11 @@ void Foam::forceCoeffs::write()
if (log_)
{
Info<< "forceCoeffs output:" << nl
<< " Cd = " << Cd << nl
<< " Cl = " << Cl << nl
<< " Cm = " << Cm << nl
<< " Cm = " << Cm << nl
<< " Cd = " << Cd << nl
<< " Cl = " << Cl << nl
<< " Cl(f) = " << Cl/2.0 - Cm << nl
<< " Cl(r) = " << Cl/2.0 + Cm << nl
<< endl;
}
}
......
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