pypowsybl.network.Network.update_hvdc_lines#

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

Update HVDC lines with data provided as a DataFrame or as named arguments.

Parameters:
Return type:

None

Notes

Attributes that can be updated are:

  • converters_mode

  • target_p

  • max_p

  • nominal_v

  • r

  • connected1

  • connected2

  • fictitious

See also

get_hvdc_lines()

Examples

Some examples using keyword arguments:

network.update_hvdc_lines(id='HVDC-1', target_p=800)
network.update_hvdc_lines(id=['HVDC-1', 'HVDC-2'], target_p=[800, 600])