correctThermos.H
Go to the documentation of this file.
2{
3 rhoThermo& thermo = thermoFluid[i];
4 radiation::radiationModel& rad = radiation[i];
5 fv::options& fvOptions = fluidFvOptions[i];
6 volScalarField& he = thermo.he();
7 fvOptions.correct(he);
8 thermo.correct();
9 rad.correct();
10}
11
13{
14 solidThermo& thermo = thermos[i];
15 fv::options& fvOptions = solidHeatSources[i];
16 volScalarField& h = thermo.he();
17 fvOptions.correct(h);
18 thermo.correct();
19}
20
volScalarField & he
Definition: YEEqn.H:52
PtrList< rhoThermo > thermoFluid(fluidRegions.size())
PtrList< fv::options > fluidFvOptions(fluidRegions.size())
PtrList< fvMesh > fluidRegions(fluidNames.size())
fv::options & fvOptions
radiation::radiationModel & rad
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))
PtrList< solidThermo > thermos(solidRegions.size())
PtrList< fv::options > solidHeatSources(solidRegions.size())
PtrList< fvMesh > solidRegions(solidNames.size())
volScalarField & h
#define forAll(list, i)
Loop across all elements in list.
Definition: stdFoam.H:333