pypowsybl.network.Network.create_vsc_converter_stations#

Network.create_vsc_converter_stations(df=None, **kwargs)[source]#

Creates VSC converter stations.

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:

  • id: the identifier of the new station

  • voltage_level_id: the voltage level where the new station will be created. The voltage level must already exist.

  • bus_id: the bus where the new station will be connected, if the voltage level has a bus-breaker topology kind.

  • connectable_bus_id: the bus where the new station will be connectable, if the voltage level has a bus-breaker topology kind.

  • node: the node where the new station will be connected, if the voltage level has a node-breaker topology kind.

  • name: an optional human-readable name

  • loss_factor: the loss factor of the new station

  • voltage_regulator_on: true if the station regulated voltage

  • target_v: the target voltage, in kV, when the station regulates voltage

  • target_q: the target reactive power, in MVar, when the station does not regulate voltage

Examples

Using keyword arguments:

network.create_vsc_converter_stations(id='CS-1', voltage_level_id='VL1', bus_id='B1',
                                      loss_factor=0.1, voltage_regulator_on=True, target_v=400.0)