Skip to content
Snippets Groups Projects
  1. Feb 06, 2019
  2. Feb 05, 2019
  3. Feb 04, 2019
  4. Feb 01, 2019
  5. Jan 29, 2019
    • Mark OLESEN's avatar
      ENH: restructuring of ensight output files · b7fb6116
      Mark OLESEN authored
      - changed ensightOutput from a class solely comprising static methods to
        a namespace and added in sub-namespaces Detail and Serial.
      
        This makes it easier to "mix-in" functions at different levels.
        Refactored and combined some serial/parallel code where possible.
      
        The general ensightOutput namespace has now shifted to be in the
        fileFormats lib, while leaving volField outputs in the conversion lib
        and cloud outputs in the lagrangian-intermediate lib.
      
        The ensightCloud namespace is now simply folded into the new
        ensightOutput namespace.
      
        These changes clean up some code, reduce fragmentation and
        duplication and removes the previous libconversion dependency for
        sampling.
      
      - use int for ensight nTypes constexpr
      
      Note: issue #1176 is unaffected except for the change in file name:
      
         ensightOutputTemplates.C -> ensightOutputVolFieldTemplates.C
      b7fb6116
  6. Jan 31, 2019
  7. Jan 30, 2019
  8. Jan 29, 2019
  9. Jan 28, 2019
    • Mark OLESEN's avatar
      ENH: add initial support for compile-time project paths (#1050) · 86d462c0
      Mark OLESEN authored
      Eg,
          #define FOAM_CONFIGURED_PROJECT_ETC "/usr/share/openfoam/etc"
      
      This provides some easy to file patching locations, but is not yet
      integrated in the build system at all.
      86d462c0
    • Mark OLESEN's avatar
      ENH: add 'default' as possible Switch state, but not as input/output · a3f960e3
      Mark OLESEN authored
      - in some circumstances we need to pass a bool value upwards to the
        caller and know if the true/false value was set based on real input
        or is a default value.
      
        Eg, in the object::read() we might normally have
      
           enabled_(dict.readIfPresent(key, true));
      
        but would lose information about why the value is true/false.
      
        We can change that by using
      
           enabled_(dict.readIfPresent<Switch>(key, Switch::DEFAULT_ON));
      
        After which we can use this information is testing.
      
            if
            (
                child.enabled().nonDefault()
              ? child.enabled()
              : parent.enabled()
            )
            { ... }
      
         And thus enable output if the parent requested it explicitly or by
         default and it has not been explicitly disabled in the child.
      
        No difference when testing as a bool and the text representation
        of DEFAULT_ON / DEFAULT_OFF will simply be "true" / "false".
      
      ENH: add construction of Switch from dictionary (similar to Enum)
      a3f960e3
    • Mark OLESEN's avatar
      COMP: add debug flag for repeating runTimePostProcessing rebuilds · f34acb56
      Mark OLESEN authored
      - avoids removal of files and the dummy fallback
      f34acb56
    • mattijs's avatar
      COMP: Allwmake: work with -q · e05a62d3
      mattijs authored
      e05a62d3
  10. Jan 26, 2019
  11. Jan 25, 2019
  12. Jan 24, 2019
  13. Jan 25, 2019
  14. Jan 24, 2019
  15. Jan 23, 2019