19 lines
354 B
C
19 lines
354 B
C
{
|
|
fvScalarMatrix hsEqn
|
|
(
|
|
fvm::ddt(rho, hs)
|
|
+ mvConvection->fvmDiv(phi, hs)
|
|
- fvm::laplacian(turbulence->alphaEff(), hs)
|
|
==
|
|
DpDt
|
|
+ chemistrySh
|
|
);
|
|
|
|
hsEqn.relax();
|
|
hsEqn.solve();
|
|
|
|
thermo.correct();
|
|
|
|
Info<< "T gas min/max = " << min(T).value() << ", "
|
|
<< max(T).value() << endl;
|
|
}
|