FreeFOAM The Cross-Platform CFD Toolkit
hsEqn.H
Go to the documentation of this file.
1 {
2  solve
3  (
4  fvm::ddt(rho, hs)
5  + mvConvection->fvmDiv(phi, hs)
6  - fvm::laplacian(turbulence->alphaEff(), hs)
7  ==
8  DpDt
9  + dieselSpray.heatTransferSource()().dimensionedInternalField()
10  + chemistrySh
11  );
12 
13  thermo.correct();
14 }