{
fvScalarMatrix hEqn
(
fvm::ddt(rho, h)
+ fvm::div(phi, h)
- fvm::laplacian(turbulence->alphaEff(), h)
==
DpDt
);
if (oCorr == nOuterCorr-1)
hEqn.relax();
hEqn.solve(mesh.solutionDict().solver("hFinal"));
}
else
hEqn.solve();
thermo.correct();