BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / lagrangian / LTSReactingParcelFoam / hsEqn.H
blob5954b1217e6cbce2f227c60b9dfa158f7ca54343
2     fvScalarMatrix hsEqn
3     (
4         fvm::ddt(rho, hs)
5       + mvConvection->fvmDiv(phi, hs)
6       - fvm::laplacian(turbulence->alphaEff(), hs)
7      ==
8         DpDt
9       + parcels.Sh(hs)
10       + radiation->Shs(thermo)
11       + energySource.Su()
12       + chemistrySh
13     );
15     hsEqn.solve();
17     thermo.correct();
19     radiation->correct();
21     Info<< "T gas min/max   = " << min(T).value() << ", "
22         << max(T).value() << endl;