6 - fvm::laplacian(turbulence->alphaEff(), e)
12 phi/fvc::interpolate(rho)
13 + fvc::meshPhi(rho, U)
20 if (oCorr == nOuterCorr - 1)
22 if (mesh.solutionDict().relax("eFinal"))
24 eEqn.relax(mesh.solutionDict().relaxationFactor("eFinal"));
38 // Bound the energy using TMin and TMax
40 dimensionedScalar Tstd("Tstd", dimTemperature, specie::Tstd());
42 volScalarField Cv = thermo.Cv();
43 volScalarField R = thermo.Cp() - Cv;
45 e = Foam::min(e, TMax*Cv + R*Tstd);
46 e = Foam::max(e, TMin*Cv + R*Tstd);
47 e.correctBoundaryConditions();
52 // Recalculate compressibility
53 psis = thermo.psi()/thermo.Cp()*thermo.Cv();
55 // Recalculate density
57 rho.correctBoundaryConditions();