// Solve the Momentum equation
tmp<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();
volScalarField rUA = 1.0/UEqn().A();
if (momentumPredictor)
if (oCorr == nOuterCorr-1)
solve(UEqn() == -fvc::grad(p), mesh.solutionDict().solver("UFinal"));
solve(UEqn() == -fvc::grad(p));
U = rUA*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();