EEqn.H
Go to the documentation of this file.
1{
3 (
4 fvm::ddt(rho, e) + fvm::div(phi, e)
5 + fvc::ddt(rho, K) + fvc::div(phi, K)
6 + fvc::div(fvc::absolute(phi/fvc::interpolate(rho), U), p, "div(phiv,p)")
7 - fvm::laplacian(turbulence->alphaEff(), e)
8 ==
10 );
11
12 EEqn.relax();
13
14 fvOptions.constrain(EEqn);
15
16 EEqn.solve();
17
18 fvOptions.correct(e);
19
20 thermo.correct();
21}
CGAL::Exact_predicates_exact_constructions_kernel K
fv::options & fvOptions
surfaceScalarField & phi
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
U
Definition: pEqn.H:72
volScalarField & p
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)==Qdot+fvOptions(rho, he))
compressible::turbulenceModel & turbulence
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:45
volScalarField & e
Definition: createFields.H:11