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" 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" //- Overset specific // Add solver-specific interpolations { wordHashSet& nonInt = const_cast(Stencil::New(mesh).nonInterpolatedFields()); nonInt.insert("HbyA"); nonInt.insert("grad(p_rgh)"); nonInt.insert("surfaceIntegrate(phi)"); nonInt.insert("surfaceIntegrate(phiHbyA)"); nonInt.insert("cellMask"); nonInt.insert("cellDisplacement"); nonInt.insert("interpolatedCells"); nonInt.insert("cellInterpolationWeight"); } // Mask field for zeroing out contributions on hole cells #include "createCellMask.H"