fvVectorMatrix UEqn
(
fvm::ddt(U)
+ fvm::div(phi, U)
+ turbulence->divDevReff(U)
);
if (ocorr == nOuterCorr - 1)
{
if (mesh.solutionDict().relax("UFinal"))
UEqn.relax(mesh.solutionDict().relaxationFactor("UFinal"));
}
else
UEqn.relax(1);
UEqn.relax();
if (momentumPredictor)
solve(UEqn == -fvc::grad(p));