Simple pandapower Test Networks
Four load branch
- pandapower.networks.panda_four_load_branch()
This function creates a simple six bus system with four radial low voltage nodes connected to a medium voltage slack bus. At every low voltage node the same load is connected.
- OUTPUT:
net - Returns the required four load system
- EXAMPLE:
>>> from pandapower.networks.simple_pandapower_test_networks import panda_four_load_branch >>> net_four_load = panda_four_load_branch()

Four loads with branches out
- pandapower.networks.four_loads_with_branches_out()
This function creates a simple ten bus system with four radial low voltage nodes connected to a medium voltage slack bus. At every of the four radial low voltage nodes another low voltage node with a load is connected via cable.
- OUTPUT:
net - Returns the required four load system with branches
- EXAMPLE:
>>> from pandapower.networks.simple_pandapower_test_networks import four_loads_with_branches_out >>> net_four_load_with_branches = four_loads_with_branches_out()

Four bus system
- pandapower.networks.simple_four_bus_system()
This function creates a simple four bus system with two radial low voltage nodes connected to a medium voltage slack bus. At both low voltage nodes the a load and a static generator is connected.
- OUTPUT:
net - Returns the required four bus system
- EXAMPLE:
>>> from pandapower.networks.simple_pandapower_test_networks import simple_four_bus_system >>> net_simple_four_bus = simple_four_bus_system()

Medium voltage open ring
- pandapower.networks.simple_mv_open_ring_net()
This function creates a simple medium voltage open ring network with loads at every medium voltage node. As an example this function is used in the topology and diagnostic docu.
- OUTPUT:
net - Returns the required simple medium voltage open ring network
- EXAMPLE:
>>> from pandapower.networks.simple_pandapower_test_networks import simple_mv_open_ring_net >>> net_simple_open_ring = simple_mv_open_ring_net()
