FreeFOAM The Cross-Platform CFD Toolkit
hEqn.H
Go to the documentation of this file.
1 {
2  fvScalarMatrix hEqn
3  (
4  fvm::div(phi, h)
5  - fvm::Sp(fvc::div(phi), h)
6  - fvm::laplacian(turbulence->alphaEff(), h)
7  ==
10  + radiation->Sh(thermo)
11  );
12 
13  hEqn.relax();
14 
15  eqnResidual = hEqn.solve().initialResidual();
17 
18  thermo.correct();
19 
20  radiation->correct();
21 }
22 
23 // ************************ vim: set sw=4 sts=4 et: ************************ //