Info<< nl << "Reading thermophysicalProperties" << endl; autoPtr pChemistry ( rhoChemistryModel::New(mesh) ); rhoChemistryModel& chemistry = pChemistry(); hsReactionThermo& thermo = chemistry.thermo(); basicMultiComponentMixture& composition = thermo.composition(); PtrList& Y = composition.Y(); word inertSpecie(thermo.lookup("inertSpecie")); volScalarField rho ( IOobject ( "rho", runTime.timeName(), mesh ), thermo.rho() ); Info<< "Reading field U\n" << endl; volVectorField U ( IOobject ( "U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh ); volScalarField& p = thermo.p(); const volScalarField& psi = thermo.psi(); volScalarField& hs = thermo.hs(); const volScalarField& T = thermo.T(); #include "compressibleCreatePhi.H" volScalarField kappa ( IOobject ( "kappa", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, dimensionedScalar("zero", dimless, 0.0) ); Info << "Creating turbulence model.\n" << nl; autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); Info<< "Creating field DpDt\n" << endl; volScalarField DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p); multivariateSurfaceInterpolationScheme::fieldTable fields; forAll(Y, i) { fields.add(Y[i]); } fields.add(hs); DimensionedField chemistrySh ( IOobject ( "chemistry::Sh", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE ), mesh, dimensionedScalar("chemistrySh", dimEnergy/dimTime/dimVolume, 0.0) ); mesh.schemesDict().setFluxRequired(p.name());