pypowsybl.network.Network.create_lcc_converter_stations#

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

Creates LCC 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

  • power_factor: the power factor (ratio of the active power to the apparent power)

  • loss_factor: the loss factor of the station

Examples

Using keyword arguments:

network.create_lcc_converter_stations(id='CS-1', voltage_level_id='VL1', bus_id='B1',
                                      power_factor=0.3, loss_factor=0.1)