mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
sensible enthalpy thermo packages - Enthalpy source term now retrieved from the chemistry model (scaled by kappa for the PaSR model)
15 lines
273 B
C
15 lines
273 B
C
{
|
|
solve
|
|
(
|
|
fvm::ddt(rho, hs)
|
|
+ mvConvection->fvmDiv(phi, hs)
|
|
- fvm::laplacian(turbulence->alphaEff(), hs)
|
|
==
|
|
DpDt
|
|
+ dieselSpray.heatTransferSource()().dimensionedInternalField()
|
|
+ chemistrySh
|
|
);
|
|
|
|
thermo.correct();
|
|
}
|