EEqn.H
Go to the documentation of this file.
1 {
2  volScalarField& he = thermo.he();
3 
5  (
6  mvConvection->fvmDiv(phi, he)
7  + (
8  he.name() == "e"
9  ? fvc::div(phi, volScalarField("Ekp", 0.5*magSqr(U) + p/rho))
10  : fvc::div(phi, volScalarField("K", 0.5*magSqr(U)))
11  )
12  - fvm::laplacian(turbulence->alphaEff(), he)
13  ==
14  rho*(U&g)
15  + parcels.Sh(he)
16  + radiation->Sh(thermo)
17  + combustion->Sh()
18  + fvOptions(rho, he)
19  );
20 
21  EEqn.relax();
22 
23  fvOptions.constrain(EEqn);
24 
25  EEqn.solve();
26 
27  fvOptions.correct(he);
28  thermo.correct();
29  radiation->correct();
30 
31  Info<< "T gas min/max = " << min(T).value() << ", "
32  << max(T).value() << endl;
33 }
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
surfaceScalarField & phi
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:42
U
Definition: pEqn.H:83
Info<< "Creating combustion model\n"<< endl;autoPtr< combustionModels::psiCombustionModel > combustion(combustionModels::psiCombustionModel::New(mesh))
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
scalar Sh
Definition: solveChemistry.H:2
tmp< GeometricField< Type, fvPatchField, volMesh > > div(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
Definition: fvcDiv.C:47
fvScalarMatrix EEqn(fvm::ddt(rho, he)+mvConvection->fvmDiv(phi, he)+fvc::ddt(rho, K)+fvc::div(phi, K)+(he.name()=="e"?fvc::div(fvc::absolute(phi/fvc::interpolate(rho), U), p,"div(phiv,p)"):-dpdt)-fvm::laplacian(turbulence->alphaEff(), he)==reaction->Sh()+fvOptions(rho, he))
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
tmp< GeometricField< Type, fvPatchField, volMesh > > laplacian(const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
Definition: fvcLaplacian.C:45
fv::options & fvOptions
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
psiReactionThermo & thermo
Definition: createFields.H:31
virtual void correct()
Main update/correction routine.
dimensioned< scalar > magSqr(const dimensioned< Type > &)
const dimensionedVector & g
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
const volScalarField & T
tmp< fv::convectionScheme< scalar > > mvConvection(fv::convectionScheme< scalar >::New(mesh, fields, phi, mesh.divScheme("div(phi,Yi_h)")))
messageStream Info
volScalarField alphaEff("alphaEff", turbulence->nu()/Pr+alphat)
volScalarField & p
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))