[soln-plugin-sampler]

Periodically samples specific points in the volume and writes them out to a CSV file. Parameterised with

  1. nsteps — sample every nsteps:

    int

  2. samp-pts — list of points to sample:

    [(x, y), (x, y), ...] | [(x, y, z), (x, y, z), ...]

  3. format — output variable format:

    primitive | conservative

  4. file — output file path; should the file already exist it will be appended to:

    string

  5. header — if to output a header row or not:

    boolean

Example:

[soln-plugin-sampler]
nsteps = 10
samp-pts = [(1.0, 0.7, 0.0), (1.0, 0.8, 0.0)]
format = primitive
file = point-data.csv
header = true