Go to the source code of this file.
|
| Info<< "Creating combustion model\n"<< endl;autoPtr< combustionModels::psiCombustionModel > | combustion (combustionModels::psiCombustionModel::New(mesh)) |
| |
| thermo | validate (args.executable(),"h","e") |
| |
| SLGThermo | slgThermo (mesh, thermo) |
| |
| const word | inertSpecie (thermo.lookup("inertSpecie")) |
| |
| | if (!composition.contains(inertSpecie)) |
| |
| | forAll (Y, i) |
| |
| fields | add (thermo.he()) |
| |
| volScalarField | rho (IOobject("rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), thermo.rho()) |
| |
| volScalarField | rhoEffLagrangian (IOobject("rhoEffLagrangian", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), mesh, dimensionedScalar("zero", dimDensity, 0.0)) |
| |
| volScalarField | pDyn (IOobject("pDyn", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), mesh, dimensionedScalar("zero", dimPressure, 0.0)) |
| |
| Info<< "\nReading field U\n"<< endl;volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);mesh.setFluxRequired(p.name());Info<< "Creating turbulence model\n"<< endl;autoPtr< compressible::turbulenceModel > | turbulence (compressible::turbulenceModel::New(rho, U, phi, thermo)) |
| |
| combustion | setTurbulence (turbulence()) |
| |
|
| psiReactionThermo & | thermo = combustion->thermo() |
| |
| basicSpecieMixture & | composition = thermo.composition() |
| |
| PtrList< volScalarField > & | Y = composition.Y() |
| |
| volScalarField & | p = thermo.p() |
| |
| const volScalarField & | T = thermo.T() |
| |
| const volScalarField & | psi = thermo.psi() |
| |
| multivariateSurfaceInterpolationScheme< scalar >::fieldTable | fields |
| |
| Info<< "Creating combustion model\n" << endl;autoPtr<combustionModels::psiCombustionModel> combustion |
( |
combustionModels::psiCombustionModel::New(mesh) |
| ) |
|
| thermo validate |
( |
args. |
executable(), |
|
|
"h" |
, |
|
|
"e" |
|
|
) |
| |
| const word inertSpecie |
( |
thermo. |
lookup"inertSpecie" | ) |
|
| if |
( |
!composition. |
containsinertSpecie | ) |
|
Definition at line 34 of file createFields.H.
References combustion(), Foam::dimDensity, Foam::dimEnergy, Foam::dimPressure, Foam::dimTime, dpdt, dQ(), Foam::endl(), Foam::Info, Foam::magSqr(), mesh, Foam::New(), pDyn(), phi, rho, rhoEffLagrangian(), turbulence, and U().
| volScalarField rho |
( |
IOobject("rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE) |
, |
|
|
thermo. |
rho() |
|
) |
| |
| volScalarField rhoEffLagrangian |
( |
IOobject("rhoEffLagrangian", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE) |
, |
|
|
mesh |
, |
|
|
dimensionedScalar("zero", dimDensity, 0.0) |
|
|
) |
| |
| volScalarField pDyn |
( |
IOobject("pDyn", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE) |
, |
|
|
mesh |
, |
|
|
dimensionedScalar("zero", dimPressure, 0.0) |
|
|
) |
| |
| Info<< "\nReading field U\n" << endl;volVectorField U( IOobject ( "U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh);mesh.setFluxRequired(p.name());Info<< "Creating turbulence model\n" << endl;autoPtr<compressible::turbulenceModel> turbulence |
( |
compressible::turbulenceModel::New(rho, U, phi, thermo) |
| ) |
|
| basicSpecieMixture& composition = thermo.composition() |
| PtrList<volScalarField>& Y = composition.Y() |
| volScalarField& p = thermo.p() |
| const volScalarField& T = thermo.T() |
| const volScalarField& psi = thermo.psi() |
| multivariateSurfaceInterpolationScheme<scalar>::fieldTable fields |