Skip to content
Snippets Groups Projects
  1. Sep 04, 2016
  2. Sep 03, 2016
  3. Aug 26, 2016
  4. Aug 25, 2016
  5. Aug 24, 2016
  6. Aug 23, 2016
  7. Aug 22, 2016
  8. Aug 20, 2016
  9. Aug 19, 2016
  10. Aug 18, 2016
  11. Aug 17, 2016
  12. Aug 16, 2016
    • Henry Weller's avatar
      functionObjects::writeObjects: Added option "writeOption" · 9a739863
      Henry Weller authored
      Description
          Allows specification of different writing frequency of objects registered
          to the database.
      
          It has similar functionality as the main time database through the
          \c writeControl setting:
            - timeStep
            - writeTime
            - adjustableRunTime
            - runTime
            - clockTime
            - cpuTime
      
          It also has the ability to write the selected objects that were defined
          with the respective write mode for the requested \c writeOption, namely:
            - \c autoWrite - objects set to write at output time
            - \c noWrite   - objects set to not write by default
            - \c anyWrite  - any option of the previous two
      
          Example of function object specification:
          \verbatim
          writeObjects1
          {
              type        writeObjects;
              libs        ("libutilityFunctionObjects.so");
              ...
              objects     (obj1 obj2);
              writeOption anyWrite;
          }
          \endverbatim
      
      Patch contributed by Bruno Santos
      Resolves bug-report http://bugs.openfoam.org/view.php?id=2090
      9a739863