Go to the source code of this file.
|
Info<< "Reading thermophysical properties\n"<< endl;autoPtr< psiThermo > | pThermo (psiThermo::New(mesh)) |
|
volScalarField | rho (IOobject( "rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), thermo.rho()) |
|
Info<< "\nReading field U\n"<< endl;volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);Info<< "Creating turbulence model\n"<< endl;autoPtr< compressible::turbulenceModel > | turbulence (compressible::turbulenceModel::New( rho, U, phi, thermo )) |
|
const word | kinematicCloudName (args.optionLookupOrDefault< word >("cloudName","kinematicCloud")) |
|
Info<< "Reading thermophysical properties\n" << endl; autoPtr<psiThermo> pThermo |
( |
psiThermo::New(mesh) |
| ) |
|
volScalarField rho |
( |
IOobject( "rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ) |
, |
|
|
thermo. |
rho() |
|
) |
| |
Info<< "\nReading field U\n" << endl; volVectorField U ( IOobject ( "U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh ); Info<< "Creating turbulence model\n" << endl; autoPtr<compressible::turbulenceModel> turbulence |
( |
compressible::turbulenceModel::New( rho, U, phi, thermo ) |
| ) |
|
const word kinematicCloudName |
( |
args.optionLookupOrDefault< word > |
"cloudName","kinematicCloud" | ) |
|