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.
84 lines
2.2 KiB
C
84 lines
2.2 KiB
C
{
|
|
rho = thermo.rho();
|
|
rho = max(rho, rhoMin[i]);
|
|
rho = min(rho, rhoMax[i]);
|
|
rho.relax();
|
|
|
|
volScalarField rAU("rAU", 1.0/UEqn.A());
|
|
surfaceScalarField rhorAUf("rhorAUf", fvc::interpolate(rho*rAU));
|
|
volVectorField HbyA(constrainHbyA(rAU*UEqn.H(), U, p_rgh));
|
|
tUEqn.clear();
|
|
|
|
surfaceScalarField phig(-rhorAUf*ghf*fvc::snGrad(rho)*mesh.magSf());
|
|
|
|
surfaceScalarField phiHbyA
|
|
(
|
|
"phiHbyA",
|
|
fvc::flux(rho*HbyA)
|
|
);
|
|
|
|
MRF.makeRelative(fvc::interpolate(rho), phiHbyA);
|
|
|
|
bool closedVolume = adjustPhi(phiHbyA, U, p_rgh);
|
|
|
|
phiHbyA += phig;
|
|
|
|
// Update the pressure BCs to ensure flux consistency
|
|
constrainPressure(p_rgh, rho, U, phiHbyA, rhorAUf, MRF);
|
|
|
|
dimensionedScalar compressibility = fvc::domainIntegrate(psi);
|
|
bool compressible = (compressibility.value() > SMALL);
|
|
|
|
// Solve pressure
|
|
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
|
|
{
|
|
fvScalarMatrix p_rghEqn
|
|
(
|
|
fvm::laplacian(rhorAUf, p_rgh) == fvc::div(phiHbyA)
|
|
);
|
|
|
|
p_rghEqn.setReference
|
|
(
|
|
pRefCell,
|
|
compressible ? getRefCellValue(p_rgh, pRefCell) : pRefValue
|
|
);
|
|
|
|
p_rghEqn.solve();
|
|
|
|
if (nonOrth == nNonOrthCorr)
|
|
{
|
|
// Calculate the conservative fluxes
|
|
phi = phiHbyA - p_rghEqn.flux();
|
|
|
|
// Explicitly relax pressure for momentum corrector
|
|
p_rgh.relax();
|
|
|
|
// Correct the momentum source with the pressure gradient flux
|
|
// calculated from the relaxed pressure
|
|
U = HbyA + rAU*fvc::reconstruct((phig - p_rghEqn.flux())/rhorAUf);
|
|
U.correctBoundaryConditions();
|
|
fvOptions.correct(U);
|
|
}
|
|
}
|
|
|
|
p = p_rgh + rho*gh;
|
|
|
|
#include "continuityErrs.H"
|
|
|
|
// For closed-volume cases adjust the pressure level
|
|
// to obey overall mass continuity
|
|
if (closedVolume && compressible)
|
|
{
|
|
p += (initialMass - fvc::domainIntegrate(thermo.rho()))
|
|
/compressibility;
|
|
p_rgh = p - rho*gh;
|
|
}
|
|
|
|
rho = thermo.rho();
|
|
rho = max(rho, rhoMin[i]);
|
|
rho = min(rho, rhoMax[i]);
|
|
rho.relax();
|
|
|
|
Info<< "Min/max rho:" << min(rho).value() << ' '
|
|
<< max(rho).value() << endl;
|
|
}
|