Skip to content

Add cell data to the parsers (Rebase & Revisit)

Santiago Ospina De Los Ríos requested to merge feature/griddata-revisit into master

First squash and rebases the work of Dylan (dylanvermoortele@gmail.com):

  • Add data structure to hold cell data information
  • Add parser for a custom cell data format
  • Pass data structure across the whole stack to enable parsers to read the actual cell data
  • Adds documentation on how to use the feature
  • Add simple tests for the data
  • Add simple form to skip some vtk write of time-steps
  • Add comparison test between analytical and cell data
  • Track files under test/data with git-lfs

Then, move cell data out of local equations

Local equations contain the keys and the data used to refer to its own values in the parsers, hence, there is no need to hold the cell data within it. The local operator can update its values manually. This allows to split the cell data object from the parsers and the local equations while still having the correct updates on the local operator.

Merge request reports