Info<< nl << "Reading thermophysicalProperties" << endl; autoPtr thermo ( hCombustionThermo::New(mesh) ); combustionMixture& 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(); const volScalarField& T = thermo->T(); volScalarField& h = thermo->h(); #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::RASModel::New ( rho, U, phi, thermo() ) ); Info<< "Creating field DpDt\n" << endl; volScalarField DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p); Info << "Constructing chemical mechanism" << endl; chemistryModel chemistry ( thermo(), rho ); multivariateSurfaceInterpolationScheme::fieldTable fields; for(label i=0; i