mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
28 lines
861 B
C
28 lines
861 B
C
if (ign.ignited())
|
|
{
|
|
volScalarField& heau = thermo.heu();
|
|
|
|
solve
|
|
(
|
|
betav*fvm::ddt(rho, heau) + mvConvection->fvmDiv(phi, heau)
|
|
+ (betav*fvc::ddt(rho, K) + fvc::div(phi, K))*rho/thermo.rhou()
|
|
+ (
|
|
heau.name() == "eau"
|
|
? fvc::div
|
|
(
|
|
phi/fvc::interpolate(rho),
|
|
p,
|
|
"div(phiv,p)"
|
|
)*rho/thermo.rhou()
|
|
: -betav*dpdt*rho/thermo.rhou()
|
|
)
|
|
- fvm::laplacian(Db, heau)
|
|
|
|
// These terms cannot be used in partially-premixed combustion due to
|
|
// the resultant inconsistency between ft and heau transport.
|
|
// A possible solution would be to solve for ftu as well as ft.
|
|
//- fvm::div(muEff*fvc::grad(b)/(b + 0.001), heau)
|
|
//+ fvm::Sp(fvc::div(muEff*fvc::grad(b)/(b + 0.001)), heau)
|
|
);
|
|
}
|