pypowsybl.network.Network.update_3_windings_transformers#
- Network.update_3_windings_transformers(df=None, **kwargs)[source]#
Update 3 windings transformers with data provided as a
DataFrame
or as named arguments.- Parameters:
df (DataFrame | None) – the data to be updated, as a dataframe.
kwargs (_SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes]) – the data to be updated, as named arguments. Arguments can be single values or any type of sequence. In the case of sequences, all arguments must have the same length.
- Return type:
None
Notes
Attributes that can be updated are:
r1
x1
g1
b1
rated_u1
rated_s1
p1
q1
connected1
ratio_tap_position1
phase_tap_position1
selected_limits_group_1
r2
x2
g2
b2
rated_u2
rated_s2
p2
q2
connected2
ratio_tap_position2
phase_tap_position2
selected_limits_group_2
r3
x3
g3
b3
rated_u3
rated_s3
p3
q3
connected3
ratio_tap_position3
phase_tap_position3
selected_limits_group_3
fictitious
See also
Examples
Some examples using keyword arguments:
network.update_3_windings_transformers(id='T-1', connected1=False, connected2=False, connected3=False) network.update_3_windings_transformers(id=['T-1', 'T-2'], r3=[0.5, 2.0], x3=[5, 10])