Info<< "Reading thermophysical properties\n" << endl; autoPtr pThermo ( psiThermo::New(mesh) ); psiThermo& thermo = pThermo(); thermo.validate(args.executable(), "e"); volScalarField& p = thermo.p(); 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 ); #include "compressibleCreatePhi.H" mesh.setFluxRequired(p.name()); Info<< "Creating turbulence model\n" << endl; autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); #include "createK.H" #include "createMRF.H" #include "createFvOptions.H"