edisgo.opf.results.opf_result_class.OPFResults

class edisgo.opf.results.opf_result_class.OPFResults
status = None
solution_time = None
solver = None
lines_t
slack_generator_t
heat_storage_t
hv_requirement_slacks_t
grid_slacks_t
overlying_grid
battery_storage_t
to_csv(directory, attributes=None)

Exports OPF results data to csv files.

The following attributes can be exported:

  • ‘lines_t’ : The results of the three variables in attribute lines_t are saved to lines_t_p.csv, lines_t_p.csv, and lines_t_ccm.csv.

  • ‘slack_generator_t’ : Attribute slack_generator_t is saved to slack_generator_t.csv.

  • ‘heat_storage_t’ : The results of the two variables in attribute heat_storage_t are saved to heat_storage_t_p.csv and heat_storage_t_e.csv.

  • ‘hv_requirement_slacks_t’ : Attribute hv_requirement_slacks_t is saved to hv_requirement_slacks_t.csv.

  • ‘grid_slacks_t’ : The results of the five variables in attribute grid_slacks_t are saved to dispatchable_gen_crt.csv, non_dispatchable_gen_crt.csv, load_shedding.csv, cp_load_shedding.csv and hp_load_shedding.csv.

  • ‘overlying_grid’ : Attribute overlying_grid is saved to overlying_grid.csv.

Parameters:
  • directory (str) – Path to save OPF results data to.

  • attributes (list(str) or None) – List of attributes to export. See above for attributes that can be exported. If None, all specified attributes are exported. Default: None.

from_csv(data_path, from_zip_archive=False)

Restores OPF results from csv files.

Parameters:
  • data_path (str) – Path to OPF results csv files.

  • from_zip_archive (bool, optional) – Set True if data is archived in a zip archive. Default: False.