1 // Solve the Momentum equation
3 tmp<fvVectorMatrix> UEqn
7 + turbulence->divDevRhoReff(U)
12 volScalarField rAU(1.0/UEqn().A());
14 if (pimple.momentumPredictor())
16 solve(UEqn() == -fvc::grad(p));
20 U = rAU*(UEqn().H() - fvc::grad(p));
21 U.correctBoundaryConditions();