Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / chtMultiRegionFoam / solid / setRegionSolidFields.H
bloba843ed8bd75f562bbba0dfb157356b36aaaaf5fd
1     fvMesh& mesh = solidRegions[i];
2     basicSolidThermo& thermo = thermos[i];
4     tmp<volScalarField> trho = thermo.rho();
5     const volScalarField& rho = trho();
7     tmp<volScalarField> tcp = thermo.Cp();
8     const volScalarField& cp = tcp();
10     tmp<volScalarField> tK = thermo.K();
11     //tmp<volSymmTensorField> tK = thermo.directionalK();
12     const volScalarField& K = tK();
13     //const volSymmTensorField& K = tK();
15     volScalarField& T = thermo.T();