3 volScalarField rAU(1.0/UEqn.A());
6 if (pimple.transonic())
8 surfaceScalarField phid
13 (fvc::interpolate(U) & mesh.Sf())
14 + fvc::ddtPhiCorr(rAU, rho, U, phi)
18 for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
24 - fvm::laplacian(rho*rAU, p)
29 mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
32 if (nonOrth == pimple.nNonOrthCorr())
43 (fvc::interpolate(U) & mesh.Sf())
44 + fvc::ddtPhiCorr(rAU, rho, U, phi)
47 for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
53 - fvm::laplacian(rho*rAU, p)
58 mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
61 if (nonOrth == pimple.nNonOrthCorr())
69 #include "compressibleContinuityErrs.H"
71 U -= rAU*fvc::grad(p);
72 U.correctBoundaryConditions();
74 DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);