#include "createRDeltaT.H" Info<< "Reading thermophysical properties\n" << endl; autoPtr pThermo(rhoThermo::New(mesh)); rhoThermo& thermo = pThermo(); thermo.validate(args.executable(), "h", "e"); volScalarField rho ( IOobject ( "rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE ), thermo.rho() ); volScalarField& p = thermo.p(); 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); Info<< "Creating turbulence model\n" << endl; autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); #include "readGravitationalAcceleration.H" #include "readhRef.H" #include "gh.H" Info<< "Reading field p_rgh\n" << endl; volScalarField p_rgh ( IOobject ( "p_rgh", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh ); // Force p_rgh to be consistent with p p_rgh = p - rho*gh; mesh.setFluxRequired(p_rgh.name()); label pRefCell = 0; scalar pRefValue = 0.0; if (p_rgh.needReference()) { setRefCell ( p, p_rgh, pimple.dict(), pRefCell, pRefValue ); p += dimensionedScalar ( "p", p.dimensions(), pRefValue - getRefCellValue(p, pRefCell) ); } dimensionedScalar initialMass("initialMass", fvc::domainIntegrate(rho)); #include "createDpdt.H" #include "createK.H" #include "createMRF.H" #include "createRadiationModel.H" #include "createFvOptions.H" const dimensionedScalar rhoMax("rhoMax", dimDensity, GREAT, pimple.dict()); const dimensionedScalar rhoMin("rhoMin", dimDensity, Zero, pimple.dict());