initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / combustion / XiFoam / hEqn.H
blob513ae604419f28b96bbf455e8ed0bc1e75d258bb
2     fvScalarMatrix hEqn
3     (
4         fvm::ddt(rho, h)
5       + mvConvection->fvmDiv(phi, h)
6       - fvm::laplacian(turbulence->alphaEff(), h)
7      ==
8         DpDt
9     );
11     hEqn.relax();
12     hEqn.solve();
14     thermo.correct();