ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / lagrangian / coalChemistryFoam / hsEqn.H
blobe6901a9c6f255dcf4328c60fa986c45a353deee0
2     fvScalarMatrix hsEqn
3     (
4         fvm::ddt(rho, hs)
5       + mvConvection->fvmDiv(phi, hs)
6       - fvm::laplacian(turbulence->alphaEff(), hs)
7      ==
8         DpDt
9      +  coalParcels.Sh(hs)
10      +  limestoneParcels.Sh(hs)
11      +  enthalpySource.Su()
12      +  radiation->Shs(thermo)
13      +  chemistrySh
14     );
16     hsEqn.relax();
18     hsEqn.solve();
20     thermo.correct();
22     radiation->correct();
24     Info<< "T gas min/max   = " << min(T).value() << ", "
25         << max(T).value() << endl;