BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / reactingFoam / hsEqn.H
blobe3fa4e7a135adb1539de8d1e548329a8f97c7a06
2     fvScalarMatrix hsEqn
3     (
4         fvm::ddt(rho, hs)
5       + mvConvection->fvmDiv(phi, hs)
6       - fvm::laplacian(turbulence->alphaEff(), hs)
7 //      - fvm::laplacian(turbulence->muEff(), hs)  // unit lewis no.
8      ==
9         DpDt
10       + chemistrySh
11     );
13     hsEqn.relax();
14     hsEqn.solve();
16     thermo.correct();
18     Info<< "T gas min/max   = " << min(T).value() << ", "
19         << max(T).value() << endl;