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, simple.dict()); mesh.setFluxRequired(p.name()); Info<< "Creating turbulence model\n" << endl; autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); dimensionedScalar initialMass = fvc::domainIntegrate(rho); #include "createMRF.H" //- Overset specific // Add solver-specific interpolations { wordHashSet& nonInt = const_cast(Stencil::New(mesh).nonInterpolatedFields()); nonInt.insert("HbyA"); nonInt.insert("grad(p)"); 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" #include "createInterpolatedCells.H"