pypowsybl.dynamic.ModelMapping.add_phase_shifter_blocking_i_automation_system

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

Add a dynamic phase shifter blocking I automation 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 phase shifter blocking I automation system

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

  • phase_shifter_id: id of the phase shifter I automation system controlled by the automation system

  • 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_phase_shifter_blocking_i_automation_system(dynamic_model_id='DM_PSB_I',
                                                             parameter_set_id='psb',
                                                             phase_shifter_id='PSI',
                                                             model_name='PhaseShifterBlockingI')