FreeFOAM The Cross-Platform CFD Toolkit
hsEqn.H
Go to the documentation of this file.
1 {
2  fvScalarMatrix hsEqn
3  (
4  fvm::ddt(rho, hs)
5  + mvConvection->fvmDiv(phi, hs)
6  - fvm::laplacian(turbulence->alphaEff(), hs)
7  ==
8  DpDt
10  );
11 
12  hsEqn.relax();
13  hsEqn.solve();
14 
15  thermo.correct();
16 
17  Info<< "T gas min/max = " << min(T).value() << ", "
18  << max(T).value() << endl;
19 }