Skip to content
Snippets Groups Projects
  1. Mar 06, 2017
  2. Mar 03, 2017
  3. Mar 02, 2017
  4. Mar 01, 2017
    • Andrew Heather's avatar
      ENH: noiseModel updates · 34bc14a5
      Andrew Heather authored
      - Limit output to frequency range given by fLower and fUpper (if supplied)
      - Enable noise models to be run outside of $FOAM_CASE directory
        - if relative paths are used, $FOAM_CASE is prepended to the noise
          dict and input file names
      - Enable output to be customised, e.g.
      
          // Optional write options dictionary (all default to 'yes')
          writeOptions
          {
              writePrmsf  no;
              writeSPL    yes;
              writePSD    yes;
              writePSDf   no;
              writeOctaves yes;
          }
      34bc14a5
    • Andrew Heather's avatar
      STYLE: Minor typo corrections · bcde59e6
      Andrew Heather authored
      bcde59e6
  5. Feb 03, 2017
  6. Feb 01, 2017
  7. Jan 26, 2017
  8. Jan 25, 2017
  9. Jan 23, 2017
  10. Jan 19, 2017
  11. Jan 17, 2017
  12. Jan 16, 2017
  13. Jan 24, 2017
  14. Jan 23, 2017
  15. Jan 20, 2017
  16. Jan 18, 2017
  17. 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: 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
    • 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