1 Info<< "Reading thermophysical properties\n" << endl;
3 autoPtr<basicRhoThermo> pThermo
5 basicRhoThermo::New(mesh)
7 basicRhoThermo& thermo = pThermo();
22 volScalarField& p = thermo.p();
23 volScalarField& h = thermo.h();
24 const volScalarField& psi = thermo.psi();
27 Info<< "Reading field U\n" << endl;
41 #include "compressibleCreatePhi.H"
44 Info<< "Creating turbulence model\n" << endl;
45 autoPtr<compressible::turbulenceModel> turbulence
47 compressible::turbulenceModel::New
56 Info<< "Calculating field g.h\n" << endl;
57 volScalarField gh("gh", g & mesh.C());
58 surfaceScalarField ghf("ghf", g & mesh.Cf());
60 Info<< "Reading field p_rgh\n" << endl;
74 // Force p_rgh to be consistent with p
77 Info<< "Creating field DpDt\n" << endl;
81 fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p)