1 // Solve the Momentum equation
3 tmp<fvVectorMatrix> UEqn
7 + turbulence->divDevReff(U)
10 if (oCorr == nOuterCorr - 1)
12 if (mesh.solutionDict().relax("UFinal"))
14 UEqn().relax(mesh.solutionDict().relaxationFactor("UFinal"));
26 volScalarField rUA = 1.0/UEqn().A();
28 if (momentumPredictor)
30 if (oCorr == nOuterCorr-1)
32 solve(UEqn() == -fvc::grad(p), mesh.solutionDict().solver("UFinal"));
36 solve(UEqn() == -fvc::grad(p));
41 U = rUA*(UEqn().H() - fvc::grad(p));
42 U.correctBoundaryConditions();