130 lines
2.4 KiB
C
130 lines
2.4 KiB
C
#include "readGravitationalAcceleration.H"
|
|
|
|
Info<< "Creating combustion model\n" << endl;
|
|
|
|
autoPtr<psiChemistryModel> chemistry(psiChemistryModel::New(mesh));
|
|
|
|
psiReactionThermo& thermo = chemistry->thermo();
|
|
|
|
thermo.validate(args.executable(), "h", "e");
|
|
SLGThermo slgThermo(mesh, thermo);
|
|
|
|
basicMultiComponentMixture& composition = thermo.composition();
|
|
PtrList<volScalarField>& Y = composition.Y();
|
|
const word inertSpecie(thermo.lookup("inertSpecie"));
|
|
|
|
if (!composition.contains(inertSpecie))
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Specified inert specie '" << inertSpecie << "' not found in "
|
|
<< "species list. Available species:" << composition.species()
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
volScalarField& p = thermo.p();
|
|
|
|
volScalarField rho
|
|
(
|
|
IOobject
|
|
(
|
|
"rho",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::READ_IF_PRESENT,
|
|
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
|
|
);
|
|
|
|
#include "compressibleCreatePhi.H"
|
|
|
|
mesh.setFluxRequired(p.name());
|
|
|
|
dimensionedScalar rhoMax
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMax",
|
|
piso.dict(),
|
|
dimDensity,
|
|
GREAT
|
|
)
|
|
);
|
|
|
|
dimensionedScalar rhoMin
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMin",
|
|
piso.dict(),
|
|
dimDensity,
|
|
0
|
|
)
|
|
);
|
|
|
|
Info<< "Creating turbulence model\n" << endl;
|
|
autoPtr<compressible::turbulenceModel> turbulence
|
|
(
|
|
compressible::turbulenceModel::New
|
|
(
|
|
rho,
|
|
U,
|
|
phi,
|
|
thermo
|
|
)
|
|
);
|
|
|
|
Info<< "Creating field dpdt\n" << endl;
|
|
volScalarField dpdt
|
|
(
|
|
IOobject
|
|
(
|
|
"dpdt",
|
|
runTime.timeName(),
|
|
mesh
|
|
),
|
|
mesh,
|
|
dimensionedScalar("dpdt", p.dimensions()/dimTime, 0)
|
|
);
|
|
|
|
Info<< "Creating field kinetic energy K\n" << endl;
|
|
volScalarField K("K", 0.5*magSqr(U));
|
|
multivariateSurfaceInterpolationScheme<scalar>::fieldTable fields;
|
|
|
|
forAll(Y, i)
|
|
{
|
|
fields.add(Y[i]);
|
|
}
|
|
fields.add(thermo.he());
|
|
|
|
volScalarField dQ
|
|
(
|
|
IOobject
|
|
(
|
|
"dQ",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh,
|
|
dimensionedScalar("dQ", dimEnergy/dimTime, 0.0)
|
|
);
|
|
|
|
#include "createMRF.H"
|
|
#include "createClouds.H"
|
|
#include "createRadiationModel.H"
|