pypowsybl.dynamic.ModelMapping.add_overload_management_system#

ModelMapping.add_overload_management_system(df=None, **kwargs)[source]#

Add a dynamic overload management system (not link to a network element)

Args:

df: Attributes as a dataframe. kwargs: Attributes as keyword arguments.

Parameters:
Return type:

None

Notes

Data may be provided as a dataframe or as keyword arguments. In the latter case, all arguments must have the same length.

Valid attributes are:

  • dynamic_model_id: id of the overload management system

  • parameter_set_id: id of the parameter for this model given in the dynawo configuration

  • controlled_branch: id of the branch controlled by the automation system

  • i_measurement: id of the branch used for the current intensity measurement

  • i_measurement_side: measured side of the i_measurement branch (ONE or TWO)

  • model_name: name of the model used for the mapping (if none the default model will be used)

Examples

Using keyword arguments:

model_mapping.add_overload_management_system(dynamic_model_id='DM_OV',
                                             parameter_set_id='ov',
                                             controlled_branch='LINE1',
                                             i_measurement='LINE2',
                                             i_measurement_side='TWO',
                                             model_name='OverloadManagementSystem')