{
fvScalarMatrix hEqn
(
fvm::ddt(rho, h)
+ fvm::div(phi, h)
- fvm::laplacian(turb.alphaEff(), h)
==
DpDt
);
if (oCorr == nOuterCorr-1)
hEqn.relax();
hEqn.solve(mesh.solver("hFinal"));
}
else
hEqn.solve();
thermo.correct();
Info<< "Min/max T:" << min(thermo.T()).value() << ' '
<< max(thermo.T()).value() << endl;