ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / rhoReactingFoam / hsEqn.H
blob81bd6ea9d7bb4a03834d5db86deb7d728eb3d9db
2     fvScalarMatrix hsEqn
3     (
4         fvm::ddt(rho, hs)
5       + mvConvection->fvmDiv(phi, hs)
6       - fvm::laplacian(turbulence->alphaEff(), hs)
7      ==
8         DpDt
9       + chemistrySh
10     );
12     hsEqn.relax();
13     hsEqn.solve();
15     thermo.correct();
17     Info<< "T gas min/max   = " << min(T).value() << ", "
18         << max(T).value() << endl;