volScalarField rho
(
IOobject
"rho",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
thermo.rho()
);
rho.oldTime();
Info<< "\nReading field U\n" << endl;
volVectorField U
"U",
IOobject::MUST_READ,
mesh
# include "compressibleCreatePhi.H"
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASModel> turbulence
compressible::RASModel::New
rho,
U,
phi,
thermo
)
mesh.schemesDict().setFluxRequired(p.name());