BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / chtMultiRegionFoam / fluid / hEqn.H
blob0bb3c8b47c61f70aedd822071aab0a6753957055
2     fvScalarMatrix hEqn
3     (
4         fvm::ddt(rho, h)
5       + fvm::div(phi, h)
6       - fvm::laplacian(turb.alphaEff(), h)
7      ==
8         DpDt
9       + rad.Sh(thermo)
10     );
12     hEqn.relax();
13     hEqn.solve(mesh.solver(h.select(finalIter)));
15     thermo.correct();
17     rad.correct();
19     Info<< "Min/max T:" << min(thermo.T()).value() << ' '
20         << max(thermo.T()).value() << endl;