Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git] / applications / solvers / lagrangian / coalChemistryFoam / hsEqn.H
blobced6b6400448a84182e7fba55a56bb06d18f14ab
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()
10      +  limestoneParcels.Sh()
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;