3-Phase Grid Data

pandapower.networks.ieee_european_lv_asymmetric(scenario='on_peak_566', **kwargs)

Loads the IEEE European LV network, a generic 0.416 kV network serviced by one 0.8 MVA MV/LV transformer station. The network supplies 906 LV buses and 55 1-PH loads The network layout is mostly radial.

The data source can be found at https://cmte.ieee.org/pes-testfeeders/resources/

The network can be loaded with three different scenarios for On-Peak and Off-Peak load which are defined by scaling factors for loads / generators. These scenarios are a good starting point for working with this network, but you are of course free to parametrize the network for your use case.

The network also includes geographical information of lines and buses for plotting.

Parameters:

scenario (str, "on_peak_566") –

defines the scaling for load and generation

  • ”on_peak_566”: 09:26 AM: On Peak (566 min)

  • ”off_peak_1”: 12:01 AM: Off Peak (1 min)

  • ”off_peak_1440”: 12:00 AM: Off Peak (1440 min)

Returns:

the ieee european low voltage asymmetric network

Return type:

pandapowerNet

Example

>>> from pandapower.networks import ieee_european_lv_asymmetric
>>> net = ieee_european_lv_asymmetric("off_peak_1")