pypowsybl.network.Network.create_busbar_sections#
- Network.create_busbar_sections(df=None, **kwargs)[source]#
Creates bus bar sections.
- 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 busbar section
voltage_level_id: the voltage level where the new busbar section will be created. The voltage level must already exist.
node: the node where the new generator will be connected, if the voltage level has a node-breaker topology kind.
name: an optional human-readable name
Examples
Using keyword arguments:
network.create_busbar_sections(id='BBS', voltage_level_id='VL1', node=0)