3 volScalarField A(UEqn.A());
6 if (pimple.transonic())
8 surfaceScalarField phid
12 *((fvc::interpolate(U) & mesh.Sf()) - fvc::meshPhi(rho, U))
15 for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
21 - fvm::laplacian(rho/A, p)
28 mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
31 if (nonOrth == pimple.nNonOrthCorr())
39 phi = fvc::interpolate(rho)
40 *((fvc::interpolate(U) & mesh.Sf()) - fvc::meshPhi(rho, U));
42 for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
48 - fvm::laplacian(rho/A, p)
55 mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
58 if (nonOrth == pimple.nNonOrthCorr())
66 #include "compressibleContinuityErrs.H"
69 U.correctBoundaryConditions();
71 DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);