Skip to content
Snippets Groups Projects
  1. Jan 16, 2024
  2. Jul 13, 2023
  3. Jun 24, 2023
  4. Jun 22, 2023
  5. Feb 10, 2022
  6. Nov 22, 2021
  7. Sep 10, 2021
  8. Feb 04, 2021
  9. Jan 11, 2021
  10. Oct 13, 2020
  11. Aug 09, 2020
  12. Aug 08, 2020
  13. Jan 22, 2020
  14. Jan 13, 2020
    • Stephan Seitz's avatar
      Make add_arrays return fields to arrays · e5f4c74d
      Stephan Seitz authored
      e5f4c74d
    • Stephan Seitz's avatar
      Add DataHandling.add_arrays · 1b4ace3e
      Stephan Seitz authored
      This adds a function for lazy people who want to write
      
      ```python
      dh = create_data_handling((20, 30))
      dh.add_arrays('x, y(9), z')
      ```
      
      instead of
      
      ```python
      dh = create_data_handling((20, 30))
      dh.add_array('x')
      dh.add_array('y', values_per_cell=9)
      dh.add_array('z')
      ```
      
      because in most cases you want to use more than one array.
      1b4ace3e
  15. Jan 10, 2020
  16. Jul 11, 2019
  17. Apr 28, 2019
  18. Mar 21, 2019
    • Martin Bauer's avatar
      Separated modules into subfolders with own setup.py · 1e02cdc7
      Martin Bauer authored
      This restructuring allows for easier separation of modules into
      separate repositories later. Also, now pip install with repo url can be
      used.
      
      The setup.py files have also been updated to correctly reference each
      other. Module versions are not extracted from git state
      1e02cdc7