Skip to content
Snippets Groups Projects
  1. Feb 17, 2009
    • Mark Olesen's avatar
      start simplification of fieldAverage · 663e9b7a
      Mark Olesen authored
      - track previous time index and to avoid recalculating averages.
      - make sure averages are up-to-date before calling write
      663e9b7a
    • Mark Olesen's avatar
      Time and functionObject updated for end() · fee6e312
      Mark Olesen authored
      - added end() method to functionObject, functionObjectList & associated classes
      - moved outputFilters from src/sampling -> src/OpenFOAM/db/functionObjects
      fee6e312
    • Mark Olesen's avatar
      change solvers, utilities, etc. to use while (..) time-looping idiom · c2256e51
      Mark Olesen authored
      - 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.
      c2256e51
  2. Feb 13, 2009
  3. Feb 12, 2009
  4. Feb 11, 2009
  5. Feb 10, 2009
  6. Feb 09, 2009