6 - fvm::laplacian(turbulence->alphaEff(), e)
8 - fvm::SuSp(pDivU/e, e)
12 if (oCorr == nOuterCorr - 1)
14 if (mesh.solutionDict().relax("eFinal"))
16 eEqn.relax(mesh.solutionDict().relaxationFactor("eFinal"));
30 // Bound the energy using TMin and TMax
32 dimensionedScalar Tstd("Tstd", dimTemperature, specie::Tstd());
34 volScalarField Cv = thermo.Cv();
35 volScalarField R = thermo.Cp() - Cv;
37 e = Foam::min(e, TMax*Cv + R*Tstd);
38 e = Foam::max(e, TMin*Cv + R*Tstd);
39 e.correctBoundaryConditions();