initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / lagrangian / coalChemistryFoam / hEqn.H
blob2eaf6315cfb9fabe9f4f2ae6e1149fbd111c9739
2     fvScalarMatrix hEqn
3     (
4         fvm::ddt(rho, h)
5       + mvConvection->fvmDiv(phi, h)
6       - fvm::laplacian(turbulence->alphaEff(), h)
7      ==
8         DpDt
9      +  coalParcels.Sh()
10      +  limestoneParcels.Sh()
11      +  enthalpySource.Su()
12      +  radiation->Sh(thermo)
13     );
15     hEqn.relax();
17     hEqn.solve();
19     thermo.correct();
21     radiation->correct();