mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
e.g. (fvc::interpolate(HbyA) & mesh.Sf()) -> fvc::flux(HbyA) This removes the need to create an intermediate face-vector field when computing fluxes which is more efficient, reduces the peak storage and improved cache coherency in addition to providing a simpler and cleaner API.
51 lines
1.0 KiB
C
51 lines
1.0 KiB
C
volScalarField rAU(1.0/UEqn.A());
|
|
surfaceScalarField rAUf("rAUf", fvc::interpolate(rAU));
|
|
volVectorField HbyA(constrainHbyA(rAU*UEqn.H(), U, p_gh));
|
|
|
|
if (pimple.nCorrPISO() <= 1)
|
|
{
|
|
tUEqn.clear();
|
|
}
|
|
|
|
surfaceScalarField phiHbyA
|
|
(
|
|
"phiHbyA",
|
|
fvc::flux(HbyA)
|
|
+ rAUf*fvc::ddtCorr(U, phi)
|
|
);
|
|
|
|
MRF.makeRelative(phiHbyA);
|
|
adjustPhi(phiHbyA, U, p_gh);
|
|
|
|
// Update the pressure BCs to ensure flux consistency
|
|
constrainPressure(p_gh, U, phiHbyA, rAUf);
|
|
|
|
// Non-orthogonal pressure corrector loop
|
|
while (pimple.correctNonOrthogonal())
|
|
{
|
|
fvScalarMatrix p_ghEqn
|
|
(
|
|
fvm::laplacian(rAUf, p_gh) == fvc::div(phiHbyA)
|
|
);
|
|
|
|
p_ghEqn.setReference(p_ghRefCell, p_ghRefValue);
|
|
|
|
p_ghEqn.solve(mesh.solver(p_gh.select(pimple.finalInnerIter())));
|
|
|
|
if (pimple.finalNonOrthogonalIter())
|
|
{
|
|
phi = phiHbyA - p_ghEqn.flux();
|
|
}
|
|
}
|
|
|
|
#include "continuityErrs.H"
|
|
|
|
// Explicitly relax pressure for momentum corrector
|
|
p_gh.relax();
|
|
|
|
p = p_gh + (g & mesh.C());
|
|
|
|
U = HbyA - rAU*fvc::grad(p_gh);
|
|
U.correctBoundaryConditions();
|
|
fvOptions.correct(U);
|