Skip to content
Snippets Groups Projects
  1. Jan 25, 2017
    • Mark Olesen's avatar
      ENH: boundBox 'reduce' method (related to #196) · 17d76e62
      Mark Olesen authored
      reduce()
      - parallel reduction of min/max values.
        Reduces coding for the callers.
      
        Eg,
            bb.reduce();
      
        instead of the previous method:
            reduce(bb.min(), minOp<point>());
            reduce(bb.max(), maxOp<point>());
      
      STYLE:
      
      - use initializer list for creating static content
      - use point::min/point::max when defining standard boxes
      17d76e62
  2. Feb 03, 2017
  3. Jan 26, 2017
  4. Jan 25, 2017
  5. Jan 23, 2017
  6. Jan 12, 2017
    • Mark Olesen's avatar
      ENH: avoid deprecated paraview method SetImmediateUpdate() · f47e8513
      Mark Olesen authored
      - add support for patch names in block mesh reader.
      f47e8513
    • Mark Olesen's avatar
      ENH: refactor paraview readers code to avoid duplication · ecb80a2e
      Mark Olesen authored
      - as originally intended years ago, but never actually done.
      
      - use 'foamPvCore' instead of 'vtkPVReaders' to avoid potential name
        collisions with any 'vtk*' files and since we may reuse these
        functions in other foam-paraview modules (not just readers).
      
      STYLE: use same font size/colour for patch-names as for point-numbers
      
      BUG: repair issue with single time-step
      
      - paraview time-selector returns '0' as the requested time if there is
        only one time step. However, if we have skipped the 0/ directory,
        this single time step is likely a non-zero value.
      ecb80a2e
  7. Jan 05, 2017
    • Mark Olesen's avatar
      ENH: add versioning to paraview plugin support libraries (issue #370) · 7a90f5e6
      Mark Olesen authored
      - use "-pvMAJ.MIN" suffix for similarity with the paraview convention
      
      - use sentinel file to ensure clean change of intermediate targets
      
      - ensure all library files are being properly removed
      7a90f5e6
    • Mark Olesen's avatar
      ENH: update QT interface code for ParaView reader (issue #337) · 2c96ec75
      Mark Olesen authored
      - remove old (ParaView-3) files
      
      - Works in 4.4.0, 5.0.1, 5.2.0 etc
      
      STYLE:
      - slots now use SM properties directly without a second lookup.
        This reduces exposure of the QT elements and simplifies the coding.
      
      - avoid focus borders on the Qt elements
      
      - place the "use Polyhedron" checkbox into a column
      
      - move "Cache Mesh" down in the GUI (an advanced feature and thus
        should be less prominent)
      
      - obtain button labels/tooltip directly from the XML content
      2c96ec75
  8. Jan 04, 2017
  9. Jan 17, 2017
  10. Jan 16, 2017
  11. Jan 24, 2017
  12. Jan 23, 2017
  13. Jan 20, 2017
  14. Jan 18, 2017
  15. Jan 23, 2017
  16. Jan 19, 2017
  17. Jan 17, 2017
  18. Jan 12, 2017
    • Mark Olesen's avatar
      ENH: command-line query for the OPENFOAM_PLUS wmake value (issue #378) · 23d24a51
      Mark Olesen authored
      Examples,
      
          wmakePrintBuild -plus
      
      Check if value is known
      (ie, everything configured and also OpenFOAM+):
      
          if wmakePrintBuild -plus >/dev/null 2>&1
          then
              echo YES
          else
              echo NO
          fi
      
      Check if version is new enough
      
          if ofver=$(wmakePrintBuild -plus 2>/dev/null) && [ "$ofver" -ge 1612 ]
          then
              echo YES
          else
              echo NO
          fi
      
      Conditionals
      
          ofver=$(wmakePrintBuild -plus 2>/dev/null)
          case "${ofver:=0}" in
          1612)
              echo "something for 1612
              ;;
          1706)
              echo "something for 1706
              ;;
          esac
      23d24a51
  19. Jan 11, 2017
  20. Jan 10, 2017
  21. Jan 06, 2017
  22. Jan 04, 2017