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.
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
{
|
|
volScalarField rAU(1.0/UEqn.A());
|
|
volVectorField HbyA(constrainHbyA(rAU*UEqn.H(), U, p));
|
|
surfaceScalarField phiHbyA("phiHbyA", fvc::flux(HbyA));
|
|
MRF.makeRelative(phiHbyA);
|
|
adjustPhi(phiHbyA, U, p);
|
|
|
|
tmp<volScalarField> rAtU(rAU);
|
|
|
|
if (simple.consistent())
|
|
{
|
|
rAtU = 1.0/(1.0/rAU - UEqn.H1());
|
|
phiHbyA +=
|
|
fvc::interpolate(rAtU() - rAU)*fvc::snGrad(p)*mesh.magSf();
|
|
HbyA -= (rAU - rAtU())*fvc::grad(p);
|
|
}
|
|
|
|
tUEqn.clear();
|
|
|
|
// Update the pressure BCs to ensure flux consistency
|
|
constrainPressure(p, U, phiHbyA, rAtU(), MRF);
|
|
|
|
// Non-orthogonal pressure corrector loop
|
|
while (simple.correctNonOrthogonal())
|
|
{
|
|
fvScalarMatrix pEqn
|
|
(
|
|
fvm::laplacian(rAtU(), p) == fvc::div(phiHbyA)
|
|
);
|
|
|
|
pEqn.setReference(pRefCell, pRefValue);
|
|
|
|
pEqn.solve();
|
|
|
|
if (simple.finalNonOrthogonalIter())
|
|
{
|
|
phi = phiHbyA - pEqn.flux();
|
|
}
|
|
}
|
|
|
|
#include "continuityErrs.H"
|
|
|
|
// Explicitly relax pressure for momentum corrector
|
|
p.relax();
|
|
|
|
// Momentum corrector
|
|
U = HbyA - rAtU()*fvc::grad(p);
|
|
U.correctBoundaryConditions();
|
|
fvOptions.correct(U);
|
|
}
|