142 lines
2.5 KiB
C
142 lines
2.5 KiB
C
Info<< "\nCreating thermophysical model for Fluid mesh\n" << endl;
|
|
#include "readGravitationalAcceleration.H"
|
|
|
|
autoPtr<combustionModels::rhoCombustionModel> combustion
|
|
(
|
|
combustionModels::rhoCombustionModel::New(mesh)
|
|
);
|
|
|
|
rhoReactionThermo& thermo = combustion->thermo();
|
|
thermo.validate(args.executable(), "ha");
|
|
SLGThermo slgThermo(mesh, thermo);
|
|
basicSpecieMixture& composition = thermo.composition();
|
|
PtrList<volScalarField>& Y = composition.Y();
|
|
|
|
word inertSpecie(thermo.lookup("inertSpecie"));
|
|
|
|
volScalarField rho
|
|
(
|
|
IOobject
|
|
(
|
|
"rho",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
thermo.rho()
|
|
);
|
|
|
|
Info<< "Reading field U\n" << endl;
|
|
volVectorField U
|
|
(
|
|
IOobject
|
|
(
|
|
"U",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
|
|
volScalarField& p = thermo.p();
|
|
|
|
#include "compressibleCreatePhi.H"
|
|
dimensionedScalar rhoMax
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMax",
|
|
simple.dict(),
|
|
dimDensity,
|
|
GREAT
|
|
)
|
|
);
|
|
|
|
dimensionedScalar rhoMin
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMin",
|
|
simple.dict(),
|
|
dimDensity,
|
|
0
|
|
)
|
|
);
|
|
|
|
Info << "Creating turbulence model.\n" << nl;
|
|
autoPtr<compressible::turbulenceModel> turbulence
|
|
(
|
|
compressible::turbulenceModel::New
|
|
(
|
|
rho,
|
|
U,
|
|
phi,
|
|
thermo
|
|
)
|
|
);
|
|
|
|
// Set the turbulence into the reaction model
|
|
combustion->setTurbulence(turbulence());
|
|
|
|
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 Hha //absolute Enthalpy
|
|
(
|
|
IOobject
|
|
(
|
|
"Hha",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh,
|
|
dimensionedScalar("Hha", dimEnergy, 0.0)
|
|
);
|
|
volScalarField Hla //absolute Enthalpy
|
|
(
|
|
IOobject
|
|
(
|
|
"Hla",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh,
|
|
dimensionedScalar("Hla", dimEnergy, 0.0)
|
|
);
|
|
*/
|
|
|
|
#include "createRadiationModel.H"
|
|
|
|
#include "createMRF.H"
|
|
#include "createClouds.H"
|
|
|