Go to the documentation of this file.00001 autoPtr<hCombustionThermo> thermo
00002 (
00003 hCombustionThermo::New(mesh)
00004 );
00005
00006 const volScalarField& h = thermo->h();
00007
00008 volScalarField rho
00009 (
00010 IOobject
00011 (
00012 "rho",
00013 runTime.timeName(),
00014 mesh
00015 ),
00016 thermo->rho()
00017 );
00018
00019 volVectorField U
00020 (
00021 IOobject
00022 (
00023 "U",
00024 runTime.timeName(),
00025 mesh,
00026 IOobject::MUST_READ,
00027 IOobject::AUTO_WRITE
00028 ),
00029 mesh
00030 );
00031
00032 #include <finiteVolume/compressibleCreatePhi.H>
00033
00034 autoPtr<compressible::RASModel> RASModel
00035 (
00036 compressible::RASModel::New
00037 (
00038 rho,
00039 U,
00040 phi,
00041 thermo()
00042 )
00043 );
00044
00045