mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Added calls to setFluxRequired for p, p_rgh etc. in all solvers which avoids the need to add fluxRequired entries in fvSchemes dictionaries.
136 lines
2.6 KiB
C
136 lines
2.6 KiB
C
Info<< "Creating combustion model\n" << endl;
|
|
|
|
autoPtr<combustionModels::rhoCombustionModel> combustion
|
|
(
|
|
combustionModels::rhoCombustionModel::New(mesh)
|
|
);
|
|
|
|
rhoReactionThermo& thermo = combustion->thermo();
|
|
thermo.validate(args.executable(), "h", "e");
|
|
|
|
SLGThermo slgThermo(mesh, thermo);
|
|
|
|
basicSpecieMixture& composition = thermo.composition();
|
|
PtrList<volScalarField>& Y = composition.Y();
|
|
|
|
const word inertSpecie(thermo.lookup("inertSpecie"));
|
|
|
|
if (!composition.contains(inertSpecie))
|
|
{
|
|
FatalErrorIn(args.executable())
|
|
<< "Specified inert specie '" << inertSpecie << "' not found in "
|
|
<< "species list. Available species:" << composition.species()
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
volScalarField& p = thermo.p();
|
|
const volScalarField& T = thermo.T();
|
|
const volScalarField& psi = thermo.psi();
|
|
|
|
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
|
|
);
|
|
|
|
#include "compressibleCreatePhi.H"
|
|
|
|
mesh.setFluxRequired(p.name());
|
|
|
|
dimensionedScalar rhoMax
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMax",
|
|
pimple.dict(),
|
|
GREAT,
|
|
dimDensity
|
|
)
|
|
);
|
|
|
|
dimensionedScalar rhoMin
|
|
(
|
|
dimensionedScalar::lookupOrDefault
|
|
(
|
|
"rhoMin",
|
|
pimple.dict(),
|
|
0,
|
|
dimDensity
|
|
)
|
|
);
|
|
|
|
Info<< "Creating turbulence model\n" << endl;
|
|
autoPtr<compressible::turbulenceModel> turbulence
|
|
(
|
|
compressible::turbulenceModel::New
|
|
(
|
|
rho,
|
|
U,
|
|
phi,
|
|
thermo
|
|
)
|
|
);
|
|
|
|
// Set the turbulence into the combustion 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));
|
|
|
|
Info<< "Creating multi-variate interpolation scheme\n" << endl;
|
|
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)
|
|
);
|