- Feb 27, 2009
-
-
mattijs authored
-
- Feb 26, 2009
- Feb 24, 2009
- Feb 20, 2009
- Feb 19, 2009
- Feb 18, 2009
-
-
mattijs authored
-
Andrew Heather authored
-
mattijs authored
-
mattijs authored
-
Andrew Heather authored
- still not consistent for pd as does not include buoyancy effects
-
-
Andrew Heather authored
-
Andrew Heather authored
-
- Feb 17, 2009
-
-
henry authored
-
henry authored
while(runTime.loop()) { ... } idiom. Demonstrated in the shallowWaterFoam solver.
-
-
henry authored
-
Mark Olesen authored
-
Mark Olesen authored
- track previous time index and to avoid recalculating averages. - make sure averages are up-to-date before calling write
-
Andrew Heather authored
-
Andrew Heather authored
-
Mark Olesen authored
- added end() method to functionObject, functionObjectList & associated classes - moved outputFilters from src/sampling -> src/OpenFOAM/db/functionObjects
-
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.
-
- Feb 16, 2009
-
-
Andrew Heather authored
-