pypowsybl.network.Network.create_dangling_lines#
- Network.create_dangling_lines(df=None, **kwargs)[source]#
Creates dangling lines.
- 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 line
voltage_level_id: the voltage level where the new line will be created. The voltage level must already exist.
bus_id: the bus where the new line will be connected, if the voltage level has a bus-breaker topology kind.
connectable_bus_id: the bus where the new line will be connectable, if the voltage level has a bus-breaker topology kind.
node: the node where the new line will be connected, if the voltage level has a node-breaker topology kind.
name: an optional human-readable name
p0: the active power consumption, in MW
q0: the reactive power consumption, in MVar
r: the resistance, in Ohms
x: the reactance, in Ohms
g: the shunt conductance, in S
b: the shunt susceptance, in S
pairing-key: the optional pairing key associated to the dangling line, to be used for creating tie lines.
ucte-x-node-code: deprecated, use pairing-key instead.
Examples
Using keyword arguments:
network.create_dangling_lines(id='BAT-1', voltage_level_id='VL1', bus_id='B1', p0=10, q0=3, r=0, x=5, g=0, b=1e-6)