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

hsEqn.H

Go to the documentation of this file.
00001 {
00002     fvScalarMatrix hsEqn
00003     (
00004         fvm::ddt(rho, hs)
00005       + mvConvection->fvmDiv(phi, hs)
00006       - fvm::laplacian(turbulence->alphaEff(), hs)
00007      ==
00008         DpDt
00009       + chemistrySh
00010     );
00011 
00012     hsEqn.relax();
00013     hsEqn.solve();
00014 
00015     thermo.correct();
00016 
00017     Info<< "T gas min/max   = " << min(T).value() << ", "
00018         << max(T).value() << endl;
00019 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines