// Solve the Momentum equation MRF.correctBoundaryVelocity(U); tmp tUEqn ( fvm::div(phi, U) + MRF.DDt(rho, U) + turbulence->divDevRhoReff(U) == fvOptions(rho, U) ); fvVectorMatrix& UEqn = tUEqn.ref(); UEqn.relax(); fvOptions.constrain(UEqn); if (simple.momentumPredictor()) { solve(UEqn == -cellMask*fvc::grad(p)); } fvOptions.correct(U);