Skip to content
Snippets Groups Projects
  1. Oct 05, 2018
  2. Oct 04, 2018
  3. Oct 02, 2018
  4. Sep 28, 2018
    • Mark OLESEN's avatar
      ENH: add globalPath() to argList and TimePaths · 69f6f638
      Mark OLESEN authored
      - simply combines (rootPath()/globalCaseName())
      69f6f638
    • Will Bainbridge's avatar
      meshSearch: Prevent hang in calculation of line-boundary intersections · 911ea108
      Will Bainbridge authored
      This fix changes how the intersections loop ignores previously
      intersected faces. It now marks them by their index so that subsequent
      iterations ignore them.
      
      Before this change, after an intersection was found the start point was
      advanced by a small amount to move the past the intersection. The
      problem with this was if multiple boundary faces or the end point were
      in close proximity to the intersection then the move forward might span
      them. This could lead to intersections being missed or counted multiple
      times, in some cases indefinitely.
      
      Based on a patch contributed by Mattijs Janssens
      Resolves bug report https://bugs.openfoam.org/view.php?id=1147
      911ea108
  5. Oct 03, 2018
  6. Oct 04, 2018
  7. Oct 03, 2018
  8. Oct 01, 2018
  9. Sep 28, 2018
  10. Sep 27, 2018
  11. Sep 26, 2018
  12. Sep 25, 2018
  13. Sep 21, 2018
  14. Sep 20, 2018
  15. Sep 25, 2018
    • Mark OLESEN's avatar
      ENH: allow new patch names in subsetMesh (issue #1019) · d0da21fe
      Mark OLESEN authored
      Previously had 3 possibilities for handling exposed internal faces
      
        1. use default "oldInternalFaces"
        2. specify -patch, to use the specified (existing) patch
        3. specify -patches, to use the geometrically closest patches
      
      Now relaxed the restriction on -patch to allow specification of a new
      (not yet existing) patch name. This improves flexibility, but won't
      catch typing mistakes.
      
      Harmonize behaviour of -patches and -patch. When -patches is used to
      specify a single, non-regex patch name, it now behaves identically to
      -patch. Since the getList handling for options already allows special
      treatment for single parameter lists, the following will work
      identically:
      
            subsetMesh -patch  patch0
            subsetMesh -patches patch0
            subsetMesh -patches '( patch0 )'
      
      In the future it might be reasonable to fully combine the behaviour of
      '-patch' and '-patches' and treat them as aliases for each other.
      
      ENH: support subsetMesh on a cellZone.
      
      - when the '-zone' option is specified, the command argument is treated
        as the name (or names) of cellZones to be selected instead of as the
        name of the cellSet.
      
        The command argument can be a single word, regex, or list of
        word/regex.
        Eg,
      
            subsetMesh -zone -patch mypatch  mixer
            subsetMesh -zone -patch mypatch  '(mixer "moving.*" )'
      
      STYLE: simplify set handling and other code cleanup in subsetMesh
      d0da21fe
  16. Sep 21, 2018
  17. Sep 19, 2018