Skip to content
Snippets Groups Projects
  1. Feb 06, 2019
  2. Feb 05, 2019
  3. Feb 04, 2019
  4. Feb 01, 2019
  5. Jan 30, 2019
  6. Jan 29, 2019
    • Andrew Heather's avatar
      GIT: Added gitlab templates · f7729d6f
      Andrew Heather authored
      f7729d6f
    • 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
  7. Jan 31, 2019
  8. Jan 30, 2019
  9. Jan 29, 2019
  10. 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
      ENH: enable MPI library variants (#1153) · 473e000b
      Mark OLESEN authored
      - in addition to managing different vendors and versions, it may also
        be necessary or desirable to have a particular variant
        (eg, profiling, release, etc).
      
        Devise a new meaningful name for the variant and create a
        corresponding wmake rule.
      
        Eg, SYSTEMOPENMPI-profiling with a corresponding
            "wmake/rules/linux64Gcc/mplibSYSTEMOPENMPI-profiling" file
        that has suitable content for your system.
      
      CONFIG: intel-mpi use intel64/ paths only for config and wmake rules (#1153)
      
      - previously adjusted the config files, but missed the changes
        required for the wmake rules too.
      
        Now simply migrate to using  "intel64/{include,bin,lib}"
        instead of the older naming  "{include,bin,lib}64"
      
        These changes work since at least intel-mpi 2015 (5.x), but possibly
        earlier as well
      473e000b
    • 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
    • mattijs's avatar
      GIT: chockedNozzle: rename to chokedNozzle · ea9fbafa
      mattijs authored
      ea9fbafa
    • Andrew Heather's avatar
      Merge branch 'feature-snappyHexMesh-check' into 'develop' · da29c4f0
      Andrew Heather authored
      Feature snappy hex mesh check
      
      See merge request OpenFOAM-plus!229
      da29c4f0