mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
75 lines
1.5 KiB
C
75 lines
1.5 KiB
C
rho = thermo.rho();
|
|
|
|
volScalarField rAU(1.0/UEqn.A());
|
|
U = rAU*UEqn.H();
|
|
|
|
if (pimple.transonic())
|
|
{
|
|
surfaceScalarField phid
|
|
(
|
|
"phid",
|
|
fvc::interpolate(psi)
|
|
*(
|
|
(fvc::interpolate(U) & mesh.Sf())
|
|
+ fvc::ddtPhiCorr(rAU, rho, U, phi)
|
|
)
|
|
);
|
|
|
|
for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
|
|
{
|
|
fvScalarMatrix pEqn
|
|
(
|
|
fvm::ddt(psi, p)
|
|
+ fvm::div(phid, p)
|
|
- fvm::laplacian(rho*rAU, p)
|
|
);
|
|
|
|
pEqn.solve
|
|
(
|
|
mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
|
|
);
|
|
|
|
if (nonOrth == pimple.nNonOrthCorr())
|
|
{
|
|
phi == pEqn.flux();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
phi =
|
|
fvc::interpolate(rho)
|
|
*(
|
|
(fvc::interpolate(U) & mesh.Sf())
|
|
+ fvc::ddtPhiCorr(rAU, rho, U, phi)
|
|
);
|
|
|
|
for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
|
|
{
|
|
fvScalarMatrix pEqn
|
|
(
|
|
fvm::ddt(psi, p)
|
|
+ fvc::div(phi)
|
|
- fvm::laplacian(rho*rAU, p)
|
|
);
|
|
|
|
pEqn.solve
|
|
(
|
|
mesh.solver(p.select(pimple.finalInnerIter(corr, nonOrth)))
|
|
);
|
|
|
|
if (nonOrth == pimple.nNonOrthCorr())
|
|
{
|
|
phi += pEqn.flux();
|
|
}
|
|
}
|
|
}
|
|
|
|
#include "rhoEqn.H"
|
|
#include "compressibleContinuityErrs.H"
|
|
|
|
U -= rAU*fvc::grad(p);
|
|
U.correctBoundaryConditions();
|
|
|
|
DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);
|