See tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq for exapmle pimpleControl: Added SIMPLErho option for running in SIMPLE mode with large time-step/Courant number and relaxation. With this option the density is updated from thermodynamics rather than continuity after the pressure equation which is better behaved if pressure is relaxed and/or solved to a loose relative tolerance. The need for this option is demonstrated in the tutorials/compressible/rhoPimpleFoam/RAS/angledDuct tutorial which is unstable without the option.
114 lines
2.1 KiB
C
114 lines
2.1 KiB
C
#include "createRDeltaT.H"
|
|
|
|
Info<< "Creating reaction model\n" << endl;
|
|
|
|
autoPtr<combustionModels::psiCombustionModel> reaction
|
|
(
|
|
combustionModels::psiCombustionModel::New(mesh)
|
|
);
|
|
|
|
psiReactionThermo& thermo = reaction->thermo();
|
|
thermo.validate(args.executable(), "h", "e");
|
|
|
|
basicMultiComponentMixture& composition = thermo.composition();
|
|
PtrList<volScalarField>& Y = composition.Y();
|
|
|
|
const word inertSpecie(thermo.lookup("inertSpecie"));
|
|
if (!composition.species().found(inertSpecie))
|
|
{
|
|
FatalIOErrorIn(args.executable().c_str(), thermo)
|
|
<< "Inert specie " << inertSpecie << " not found in available species "
|
|
<< composition.species()
|
|
<< exit(FatalIOError);
|
|
}
|
|
|
|
volScalarField rho
|
|
(
|
|
IOobject
|
|
(
|
|
"rho",
|
|
runTime.timeName(),
|
|
mesh
|
|
),
|
|
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"
|
|
|
|
pressureControl pressureControl(p, rho, pimple.dict(), false);
|
|
|
|
mesh.setFluxRequired(p.name());
|
|
|
|
Info << "Creating turbulence model.\n" << nl;
|
|
autoPtr<compressible::turbulenceModel> turbulence
|
|
(
|
|
compressible::turbulenceModel::New
|
|
(
|
|
rho,
|
|
U,
|
|
phi,
|
|
thermo
|
|
)
|
|
);
|
|
|
|
// Set the turbulence into the reaction model
|
|
reaction->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 Qdot
|
|
(
|
|
IOobject
|
|
(
|
|
"Qdot",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::READ_IF_PRESENT,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh,
|
|
dimensionedScalar("Qdot", dimEnergy/dimVolume/dimTime, 0.0)
|
|
);
|
|
|
|
#include "createMRF.H"
|