Revision de306b0da8d74b8574d4712cf2e8e21e6bf88db2 authored by Fabian on 02 March 2023, 11:54:11 UTC, committed by Fabian on 02 March 2023, 11:54:11 UTC
1 parent 129a597
Raw File
minimal_example_pf.py
# -*- coding: utf-8 -*-
## Minimal 3-node example of PyPSA power flow
#
# Available as a Jupyter notebook at <https://pypsa.readthedocs.io/en/latest/examples/minimal_example_pf.ipynb>.


import numpy as np

import pypsa

network = pypsa.Network()

# add three buses
n_buses = 3

for i in range(n_buses):
    network.add("Bus", "My bus {}".format(i), v_nom=20.0)

print(network.buses)

# add three lines in a ring
for i in range(n_buses):
    network.add(
        "Line",
        "My line {}".format(i),
        bus0="My bus {}".format(i),
        bus1="My bus {}".format((i + 1) % n_buses),
        x=0.1,
        r=0.01,
    )

print(network.lines)

# add a generator at bus 0
network.add("Generator", "My gen", bus="My bus 0", p_set=100, control="PQ")

print(network.generators)

print(network.generators.p_set)

# add a load at bus 1
network.add("Load", "My load", bus="My bus 1", p_set=100)

print(network.loads)

print(network.loads.p_set)

network.loads.q_set = 100.0

# Do a Newton-Raphson power flow
network.pf()

print(network.lines_t.p0)

print(network.buses_t.v_ang * 180 / np.pi)

print(network.buses_t.v_mag_pu)
back to top