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  fvScalarMatrix tEqn
5  (
7  );
8  tEqn.relax();
9  eqnResidual = tEqn.solve().initialResidual();
11 
12  }
13 
14  Info<< "Min/max T:" << min(T).value() << ' '
15  << max(T).value() << endl;
16 }