Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 717 Bytes

data_source.rst

File metadata and controls

19 lines (15 loc) · 717 Bytes

Data Sources

DataSource Base Class ================= A DataSource object must be given to const controllers <ConstControl> in order to run time series simulations. The data source contains the values to be set in each time step by the controller. It has the function get_time_step_value(time_step) which reads these values.

pandapower.timeseries.data_source.DataSource

DataFrame Data Source ================= A DFData object is inherited from DataSource and contains a DataFrame which stores the time series values.

pandapower.timeseries.data_sources.frame_data.DFData