The batch processor reads the entire simulation scenario from a json file and performs a simulation. Output can be saved in numpy format by enabling snapshots.
Either each snapshot step is svaed in one file, or the snapshots (matrix of specific field variables) are accumulated in a three-dimensional volume, saved in on numpy file.
-`Rho:<path-to-2dim-numpy-file>` and `VL:<path-to-2dim-numpy-file>` and `VT:<path-to-2dim-numpy-file>` containing Rho, VL, and VT matrix (back-end, engine)
```
"Import": {
"Im": "/tmp/simulation-materials-Im.npy"
}
"Import": {
"Rho": "/tmp/simulation-materials-Rho.npy",
"VL": "/tmp/simulation-materials-VL.npy",
"VT": "/tmp/simulation-materials-VT.npy"
}
```
### Export
#### Material
Exports material matrix
`enableMaterial:true,Material:XX`
- Iabs: Material label matrix w/o boundaries, front-end
- Im: Material label matrix with boundaries (same size as field matrix), front-end
- RV: Rho,VT,VL material matrix set, back-end (engine)
- RC: Rho,C11,.. material matrix set, back-end (engine)