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

solveSolid.H

Go to the documentation of this file.
00001 {
00002     for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
00003     {
00004         tmp<fvScalarMatrix> TEqn
00005         (
00006             fvm::ddt(rho*cp, T)
00007           - fvm::laplacian(K, T)
00008         );
00009         TEqn().relax();
00010         TEqn().solve();
00011     }
00012 
00013     Info<< "Min/max T:" << min(T) << ' ' << max(T) << endl;
00014 }
00015 
00016 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines