32 lines
No EOL
874 B
C
32 lines
No EOL
874 B
C
fvMesh& mesh = fluidRegions[i];
|
|
|
|
rhoThermo& thermo = thermoFluid[i];
|
|
thermo.validate(args.executable(), "h", "e");
|
|
|
|
volScalarField& rho = rhoFluid[i];
|
|
volVectorField& U = UFluid[i];
|
|
surfaceScalarField& phi = phiFluid[i];
|
|
|
|
compressible::turbulenceModel& turb = turbulence[i];
|
|
volScalarField& K = KFluid[i];
|
|
volScalarField& dpdt = dpdtFluid[i];
|
|
|
|
volScalarField& p = thermo.p();
|
|
const volScalarField& psi = thermo.psi();
|
|
|
|
volScalarField& p_rgh = p_rghFluid[i];
|
|
const volScalarField& gh = ghFluid[i];
|
|
const surfaceScalarField& ghf = ghfFluid[i];
|
|
|
|
radiation::radiationModel& rad = radiation[i];
|
|
|
|
fv::IOoptionList& fvOptions = fluidFvOptions[i];
|
|
|
|
const dimensionedScalar initialMass
|
|
(
|
|
"initialMass",
|
|
dimMass,
|
|
initialMassFluid[i]
|
|
);
|
|
|
|
const bool frozenFlow = frozenFlowFluid[i]; |