Info<< "Reading thermophysical properties\n" << endl;
autoPtr<basicPsiThermo> pThermo
(
basicPsiThermo::New(mesh)
);
basicPsiThermo& thermo = pThermo();
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"
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::turbulenceModel> turbulence
compressible::turbulenceModel::New
rho,
U,
phi,
thermo
)