1 volScalarField rUA = 1.0/UEqn.A();
3 surfaceScalarField rUAf
6 fvc::interpolate(rho)*fvc::interpolate(rUA)
13 (fvc::interpolate(U) & mesh.Sf())
14 + fvc::ddtPhiCorr(rUA, rho, U, phi)
17 surfaceScalarField phiU("phiU", phi);
18 phi -= ghf*fvc::snGrad(rho)*rUAf*mesh.magSf();
20 for(int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
24 fvm::laplacian(rUAf, p) == fvc::ddt(rho) + fvc::div(phi)
27 pEqn.setReference(pRefCell, pRefValue);
30 if (nonOrth == nNonOrthCorr)
37 #include "compressibleContinuityErrs.H"
39 U += rUA*fvc::reconstruct((phi - phiU)/rUAf);
40 U.correctBoundaryConditions();