Skip to content
Snippets Groups Projects
  1. Mar 21, 2018
  2. Feb 27, 2018
  3. Jan 31, 2018
  4. Dec 06, 2017
  5. Sep 13, 2017
    • Andrew Heather's avatar
      ENH: Lagrangian - provided backwards compatibility for cases using the · 984f8f00
      Andrew Heather authored
      old "positions" file form
      
      The change to barycentric-based tracking changed the contents of the
      cloud "positions" file to a new format comprising the barycentric
      co-ordinates and other cell position-based info.  This broke
      backwards compatibility, providing no option to restart old cases
      (v1706 and earlier), and caused difficulties for dependent code, e.g.
      for post-processing utilities that could only infer the contents only
      after reading.
      
      The barycentric position info is now written to a file called
      "coordinates" with provision to restart old cases for which only the
      "positions" file is available. Related utilities, e.g. for parallel
      running and data conversion have been updated to be able to support both
      file types.
      
      To write the "positions" file by default, use set the following option
      in the InfoSwitches section of the controlDict:
      
          writeLagrangianPositions 1;
      984f8f00
  6. Sep 06, 2017
  7. Sep 12, 2017
  8. Aug 02, 2017
  9. Jul 20, 2017
  10. Jul 17, 2017
    • Mark OLESEN's avatar
      ENH: make treatment of stream allocators more uniform (issue #532) · 41cfd4d0
      Mark OLESEN authored
      - use allocator class to wrap the stream pointers instead of passing
        them into ISstream, OSstream and using a dynamic cast to delete
        then. This is especially important if we will have a bidirectional
        stream (can't delete twice!).
      
      STYLE:
      
      - file stream constructors with std::string (C++11)
      
      - for rewind, explicit about in|out direction. This is not currently
        important, but avoids surprises with any future bidirectional access.
      
      - combined string streams in StringStream.H header.
        Similar to <sstream> include that has both input and output string
        streams.
      41cfd4d0
    • Mark OLESEN's avatar
      bc5d4880
  11. Jul 03, 2017
  12. Jun 13, 2017
  13. May 24, 2017
    • Mark OLESEN's avatar
      ENH: paraview reader module with internal caching of the vtk geometries · 8d900264
      Mark OLESEN authored
      - The reader module allows two levels of caching.
        The OpenFOAM fvMesh can be cached in memory, for faster loading of
        fields. Additionally, the translated VTK geometries are held in a
        local cache. The cached VTK geometries should incur no additional
        overhead since they use the VTK reference counting for their storage
        management.
      8d900264
  14. May 23, 2017
  15. May 15, 2017
  16. May 14, 2017
  17. May 12, 2017
  18. May 18, 2017
  19. May 10, 2017
  20. Apr 24, 2017
  21. Apr 04, 2017
  22. Feb 24, 2017
  23. Feb 23, 2017
  24. Feb 10, 2017
  25. Feb 03, 2017
  26. Feb 01, 2017
  27. Jan 23, 2017
  28. Jan 12, 2017
    • Mark Olesen's avatar
      ENH: avoid deprecated paraview method SetImmediateUpdate() · 4b7d1e4e
      Mark Olesen authored
      - add support for patch names in block mesh reader.
      4b7d1e4e
    • Mark Olesen's avatar
      ENH: refactor paraview readers code to avoid duplication · ec944d4b
      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.
      ec944d4b