OLD: pEqn.solve(mesh.solver(p.select(piso.finalInnerIter()))); pEqn.solve(mesh.solver("Yi")); NEW: pEqn.solve(p.select(piso.finalInnerIter())); pEqn.solve("Yi");
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
{
|
|
volScalarField rAU("rAU", 1.0/UEqn.A());
|
|
surfaceScalarField rAUf("rAUf", fvc::interpolate(rAU));
|
|
volVectorField HbyA(constrainHbyA(rAU*UEqn.H(), U, p_rgh));
|
|
surfaceScalarField phiHbyA
|
|
(
|
|
"phiHbyA",
|
|
fvc::flux(HbyA)
|
|
+ MRF.zeroFilter(fvc::interpolate(rho*rAU)*fvc::ddtCorr(U, phi))
|
|
);
|
|
MRF.makeRelative(phiHbyA);
|
|
adjustPhi(phiHbyA, U, p_rgh);
|
|
|
|
surfaceScalarField phig
|
|
(
|
|
(
|
|
- ghf*fvc::snGrad(rho)
|
|
)*rAUf*mesh.magSf()
|
|
);
|
|
|
|
phiHbyA += phig;
|
|
|
|
// Update the pressure BCs to ensure flux consistency
|
|
constrainPressure(p_rgh, U, phiHbyA, rAUf, MRF);
|
|
|
|
while (pimple.correctNonOrthogonal())
|
|
{
|
|
fvScalarMatrix p_rghEqn
|
|
(
|
|
fvm::laplacian(rAUf, p_rgh) == fvc::div(phiHbyA)
|
|
);
|
|
|
|
p_rghEqn.setReference(pRefCell, getRefCellValue(p_rgh, pRefCell));
|
|
|
|
p_rghEqn.solve(p_rgh.select(pimple.finalInnerIter()));
|
|
|
|
if (pimple.finalNonOrthogonalIter())
|
|
{
|
|
phi = phiHbyA - p_rghEqn.flux();
|
|
|
|
p_rgh.relax();
|
|
|
|
U = HbyA + rAU*fvc::reconstruct((phig - p_rghEqn.flux())/rAUf);
|
|
U.correctBoundaryConditions();
|
|
fvOptions.correct(U);
|
|
}
|
|
}
|
|
|
|
#include "continuityErrs.H"
|
|
|
|
p == p_rgh + rho*gh;
|
|
|
|
if (p_rgh.needReference())
|
|
{
|
|
p += dimensionedScalar
|
|
(
|
|
"p",
|
|
p.dimensions(),
|
|
pRefValue - getRefCellValue(p, pRefCell)
|
|
);
|
|
p_rgh = p - rho*gh;
|
|
}
|
|
}
|