FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

hEqn.H

Go to the documentation of this file.
00001 {
00002     fvScalarMatrix hEqn
00003     (
00004         fvm::ddt(rho, h)
00005       + fvm::div(phi, h)
00006       - fvm::laplacian(turbulence->alphaEff(), h)
00007      ==
00008         DpDt
00009     );
00010 
00011     hEqn.relax();
00012     hEqn.solve(mesh.solver(h.select(finalIter)));
00013 
00014     thermo.correct();
00015 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines