initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / combustion / PDRFoam / huEqn.H
blob3467bc6b751177800f70b927250e2b61926ff04b
1 if (ign.ignited())
3     solve
4     (
5         betav*fvm::ddt(rho, hu)
6       + mvConvection->fvmDiv(phi, hu)
7       - fvm::laplacian(Db, 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         betav*DpDt*rho/thermo.rhou()
17     );