// Solve the momentum equation tmp UEqn ( fvm::div(phi, U) + turbulence->divDevReff(U) + fvm::SuSp(-fvc::div(phi), U) ); UEqn().relax(); eqnResidual = solve ( UEqn() == fvc::reconstruct ( ( ( - ghf*fvc::snGrad(rhok) - fvc::snGrad(p_rgh) )*mesh.magSf() ) ) ).initialResidual(); maxResidual = max(eqnResidual, maxResidual);