#include "createRDeltaT.H" Info<< "Reading thermophysical properties\n" << endl; autoPtr pThermo ( fluidThermo::New(mesh) ); fluidThermo& thermo = pThermo(); thermo.validate(args.executable(), "h", "e"); volScalarField& p = thermo.p(); volScalarField rho ( IOobject ( "rho", runTime.timeName(), mesh, IOobject::READ_IF_PRESENT, IOobject::AUTO_WRITE ), thermo.rho() ); Info<< "Reading field U\n" << endl; volVectorField U ( IOobject ( "U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh ); #include "compressibleCreatePhi.H" pressureControl pressureControl(p, rho, pimple.dict(), false); mesh.setFluxRequired(p.name()); Info<< "Creating turbulence model\n" << endl; autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); #include "createDpdt.H" #include "createK.H" #include "createMRF.H" const dimensionedScalar rhoMax("rhoMax", dimDensity, GREAT, pimple.dict()); const dimensionedScalar rhoMin("rhoMin", dimDensity, Zero, pimple.dict()); #include "createFvOptions.H"