openfoam/applications/solvers/combustion
Mark Olesen c2256e51f3 change solvers, utilities, etc. to use while (..) time-looping idiom
- this (now deprecated) idiom:
      for (runTime++; !runTime.end(); runTime++) { ... }
  has a few problems:
    * stop-on-next-write will be off-by-one (ie, doesn't work)
    * function objects are not executed on exit with runTime.end()
  Fixing these problems is not really possible.

- this idiom
      while (runTime.run())
      {
          runTime++;
          ...
      }
  works without the above problems.
2009-02-17 08:47:42 +01:00
..
coldEngineFoam update copyrights for 2009 2008-12-31 19:01:56 +01:00
dieselEngineFoam tidying up 2009-01-20 12:09:12 +00:00
dieselFoam change solvers, utilities, etc. to use while (..) time-looping idiom 2009-02-17 08:47:42 +01:00
engineFoam update copyrights for 2009 2008-12-31 19:01:56 +01:00
PDRFoam Merge commit 'OpenCFD/master' into olesenm 2009-01-23 12:51:45 +01:00
reactingFoam update copyrights for 2009 2008-12-31 19:01:56 +01:00
XiFoam update copyrights for 2009 2008-12-31 19:01:56 +01:00