FreeFOAM The Cross-Platform CFD Toolkit
solveSolid.H
Go to the documentation of this file.
1 {
2  for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
3  {
4  tmp<fvScalarMatrix> TEqn
5  (
6  fvm::ddt(rho*cp, T)
7  - fvm::laplacian(K, T)
8  );
9  TEqn().relax();
10  TEqn().solve();
11  }
12 
13  Info<< "Min/max T:" << min(T) << ' ' << max(T) << endl;
14 }
15 
16 // ************************ vim: set sw=4 sts=4 et: ************************ //