ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / lagrangian / reactingParcelFoam / hsEqn.H
blob7821d340d4bc6b1f955b94dcb770fd9454acdf95
2     fvScalarMatrix hEqn
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      +  chemistrySh
12     );
14     hEqn.relax();
16     hEqn.solve();
18     thermo.correct();
20     radiation->correct();
22     Info<< "T gas min/max   = " << min(T).value() << ", "
23         << max(T).value() << endl;