// 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); solve(UEqn == -fvc::grad(p)); fvOptions.correct(U);