pypowsybl.network.Network.update_lcc_converter_stations#

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

Update VSC converter stations with data provided as a DataFrame or as named arguments.

Parameters:
Return type:

None

Notes

Attributes that can be updated are:

  • power_factor

  • loss_factor

  • p

  • q

  • connected

  • fictitious

Examples

Some examples using keyword arguments:

network.update_lcc_converter_stations(id='S-1', connected=True)
network.update_lcc_converter_stations(id=['S-1', 'S-2'], connected=[True, False])