ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / chtMultiRegionFoam / fluid / setRegionFluidFields.H
blob81c6d25bb0ccc68597a0b154e0b7c3baa98552ba
1     fvMesh& mesh = fluidRegions[i];
3     basicRhoThermo& thermo = thermoFluid[i];
4     volScalarField& rho = rhoFluid[i];
5     volScalarField& K = KFluid[i];
6     volVectorField& U = UFluid[i];
7     surfaceScalarField& phi = phiFluid[i];
9     compressible::turbulenceModel& turb = turbulence[i];
10     volScalarField& DpDt = DpDtFluid[i];
12     volScalarField& p = thermo.p();
13     const volScalarField& psi = thermo.psi();
14     volScalarField& h = thermo.h();
16     volScalarField& p_rgh = p_rghFluid[i];
17     const volScalarField& gh = ghFluid[i];
18     const surfaceScalarField& ghf = ghfFluid[i];
20     radiation::radiationModel& rad = radiation[i];
22     const dimensionedScalar initialMass
23     (
24         "initialMass",
25         dimMass,
26         initialMassFluid[i]
27     );