ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / buoyantSimpleFoam / hEqn.H
blob6e607f89e87ce91aeef4a66c7a9d1ad8d71cce78
2     fvScalarMatrix hEqn
3     (
4         fvm::div(phi, h)
5       - fvm::Sp(fvc::div(phi), h)
6       - fvm::laplacian(turbulence->alphaEff(), h)
7      ==
8         fvc::div(phi/fvc::interpolate(rho)*fvc::interpolate(p))
9       - p*fvc::div(phi/fvc::interpolate(rho))
10     );
12     hEqn.relax();
13     hEqn.solve();
15     thermo.correct();