Info<< "Reading thermophysical properties\n" << endl;
autoPtr<basicPsiThermo> pThermo
(
basicPsiThermo::New(mesh)
);
basicPsiThermo& thermo = pThermo();
volScalarField& T = const_cast<volScalarField&>(thermo.T());
volScalarField& p = thermo.p();
volScalarField& e = thermo.e();
const volScalarField& psi = thermo.psi();
volScalarField rho
IOobject
"rho",
runTime.timeName(),
mesh
),
thermo.rho()
Info<< "Reading field U\n" << endl;
volVectorField U
"U",
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
# include "compressibleCreatePhi.H"
// Store energy source term for under-relaxation
volScalarField pDivU
"pDivU",
IOobject::NO_READ,
IOobject::NO_WRITE
p*fvc::div(phi/fvc::interpolate(rho))
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::turbulenceModel> turbulence
compressible::turbulenceModel::New
rho,
U,
phi,
thermo
)