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: ************************ //