Skip to content

CSV Data Sources

Jens Engel edited this page Jan 30, 2021 · 1 revision

PARODIS can use CSV files as data sources for both disturbances and parameters. In both cases, the CSV must contain column-wise time series representation of the data, and PARODIS will linearly interpolate the actual data at timesteps T from these timeseries.

Data inside the CSV files should be structured as follows:

time in simulation time index1 index2 ... indexN
0 0.123 0.43 ... 4
10 0.234 0.46 ... 3.2
30 0.873 0.11 ... 1.0
... ... ... ... ...
0,0.123,0.43,...,4
10,0.234,0.46,...,3.2
30,0.873,0.11,...,1.0
...