25 lines
677 B
C
25 lines
677 B
C
|
const fvMesh& mesh = fluidRegions[i];
|
||
|
|
||
|
basicPsiThermo& thermo = thermoFluid[i];
|
||
|
volScalarField& rho = rhoFluid[i];
|
||
|
volScalarField& K = KFluid[i];
|
||
|
volVectorField& U = UFluid[i];
|
||
|
surfaceScalarField& phi = phiFluid[i];
|
||
|
const dimensionedVector& g = gFluid[i];
|
||
|
|
||
|
compressible::turbulenceModel& turb = turbulence[i];
|
||
|
|
||
|
volScalarField& p = thermo.p();
|
||
|
const volScalarField& psi = thermo.psi();
|
||
|
volScalarField& h = thermo.h();
|
||
|
|
||
|
const dimensionedScalar initialMass
|
||
|
(
|
||
|
"initialMass",
|
||
|
dimMass,
|
||
|
initialMassFluid[i]
|
||
|
);
|
||
|
|
||
|
const label pRefCell = pRefCellFluid[i];
|
||
|
const scalar pRefValue = pRefValueFluid[i];
|