initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / combustion / XiFoam / huEqn.H
blob0b4068344bc8b74a46691ba7ed205c6cd4efc9ba
1 if (ign.ignited())
3     solve
4     (
5         fvm::ddt(rho, hu)
6       + mvConvection->fvmDiv(phi, hu)
7       - fvm::laplacian(turbulence->alphaEff(), hu)
9     // These terms cannot be used in partially-premixed combustion due to
10     // the resultant inconsistency between ft and hu transport.
11     // A possible solution would be to solve for ftu as well as ft.
12     //- fvm::div(muEff*fvc::grad(b)/(b + 0.001), hu)
13     //+ fvm::Sp(fvc::div(muEff*fvc::grad(b)/(b + 0.001)), hu)
15      ==
16         DpDt*rho/thermo.rhou()
17     );