Skip to main content

A package for the exploration of safe single/multi-agent reinforcement learning in smart grids.

Project description

CommonPower

Introduction

CommonPower provides a flexible framework to model power systems, interface to single-agent and multi-agent RL controllers, and maintain safety based on a symbolic representation of the system equations. Alternatively, the system model can directly be used to solve a given use case via the built-in model predictive controller. Following a modular design philosophy, CommonPower is an easily extendable tool for the development and benchmarking of RL controllers in the context of smart grids. The initial focus is on energy management and economic dispatch. Additionally, CommonPower readily allows the influence of forecast quality to be studied. The primary features are

  • an object-oriented approach to modelling power system entities,

  • a Pyomo-based symbolic math representation of entities to obtain all relevant system equations in the background,

  • interfaces for single/multi-agent reinforcement learning and optimal control,

  • a flexible interface to make use of diverse data sources and forecasting models.

Documentation

Our documentation is available on ReadtheDocs.

Example

The following code is an illustrative example of a multi-agent scenario with three housholds and heterogeneous controllers. Two of the households are controlled by a multi-agent RL algorithm, the third by a model predictive controller. This example covers the system creation, training, and deployment.

from commonpower.core import System
from commonpower.models.components import Load, RenewableGen, ESSLinear
from commonpower.models.busses import RTPricedBus, ExternalGrid
from commonpower.models.powerflow import PowerBalanceModel
from commonpower.data_forecasting import CSVDataSource, DataProvider, PersistenceForecaster, PerfectKnowledgeForecaster
from commonpower.control.runners import DeploymentRunner, MAPPOTrainer
from commonpower.control.controllers import OptimalController, RLControllerMA
from commonpower.control.wrappers import MultiAgentWrapper
from commonpower.control.safety_layer.safety_layers import ActionProjectionSafetyLayer

pv_data = CSVDataSource("<path_to_data>")
load_data = CSVDataSource("<path_to_data>")
price_data = CSVDataSource("<path_to_data>")

# create 3 identical households
households = []
for i in range(3):
    household = RTPricedBus(f"household{i}").add_data_provider(DataProvider(price_data, PersistenceForecaster()))
    household.add_node(
        RenewableGen(f"pv{i}").add_data_provider(DataProvider(pv_data, PersistenceForecaster()))
    ).add_node(
        Load(f"load{i}").add_data_provider(DataProvider(load_data, PerfectKnowledgeForecaster()))
    ).add_node(
        ESSLinear(f"ess{i}", {
            "p": [-1.5, 1.5], # active power limits in kW
            "q": [0.0, 0.0],  # reactive power limits in kW
            "soc": [0.2, 9],  # state of charge limits in kWh
            "soc_init": 5.0  # initial state of charge
        })
    )
    households.append(household)

substation = ExternalGrid("substation")

sys = System(PowerBalanceModel()).add_node(households[0]).add_node(households[1]).add_node(households[2]).add_node(substation)

mpc_controller = OptimalController("mpc1").add_entity(households[0])
rl_agent1 = RLControllerMA("agent1", safety_layer=ActionProjectionSafetyLayer()).add_entity(households[1])
rl_agent2 = RLControllerMA("agent2", safety_layer=ActionProjectionSafetyLayer()).add_entity(households[2])

# traning
train_runner = MAPPOTrainer(sys, alg_config={"<your>": "<config>"}, wrapper=MultiAgentWrapper)
train_runner.run()

# deployment
deploy_runner = DeploymentRunner(sys, wrapper=MultiAgentWrapper)
deploy_runner.run()

For more examples, have a look at our Tutorials.

Reference

CommonPower was developed and is maintained by the Cyber-Physical Systems Group at the Chair for Robotics and Embedded Systems at Technical University of Munich.

If you use CommonPower, please cite the corresponding tool paper as

@misc{eichelbeck2024commonpower,
      title={{CommonPower}: A Framework for Safe Data-Driven Smart Grid Control}, 
      author={Michael Eichelbeck and Hannah Markgraf and Matthias Althoff},
      year={2024},
      eprint={2406.03231},
      archivePrefix={arXiv},
}

Installing CommonPower

You will need Python >= 3.11, <3.13 and the package manager uv installed on your system.

We recommend using a virtual environment to work with CommonPower. To create and activate a virtual environment run

cd <your/working/directory>
uv venv
source ./.venv/bin/activate || .\.venv\Scripts\activate 

You can then proceed to install CommonPower. For local development, install the library in editable mode using UV:

git clone "https://github.com/TUMcps/commonpower.git"
cd commonpower
uv sync

Otherwise, install CommonPower via PyPI:

uv pip install commonpower

Multi-agent reinforcement learning

At the moment, CommonPower supports multi-agent reinforcement learning using the IPPO/MAPPO implementation detailed in this paper. Since we had to make a few adjustments, we forked the original repository. Please clone our fork, cd into the repository and install the package to your virtual environment using uv pip install -e ..

Gurobi

We use Gurobi as a default solver for our optimization problems. As a student, you can obtain an academic license. There are two options: If you want to run CommonPower on you laptop, you can use the named-user license. To run it on a server, you need the WLS license. After obtaining a license, follow the Gurobi quickstart guide (choose the appropriate one for your system) to install Gurobi and retrieve your license. If you use Gurobi on a server (with the WLS license) and receive the error that it requires two many cores, you can just submit a ticket with the error message and your WLS license will be upgraded.

Get started

Have a look at the Introduction Tutorial to learn more about how CommonPower is structured.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

commonpower-0.6.2.tar.gz (53.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

commonpower-0.6.2-py3-none-any.whl (146.8 kB view details)

Uploaded Python 3

File details

Details for the file commonpower-0.6.2.tar.gz.

File metadata

  • Download URL: commonpower-0.6.2.tar.gz
  • Upload date:
  • Size: 53.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for commonpower-0.6.2.tar.gz
Algorithm Hash digest
SHA256 58d26f88bd5444e573728e8eba5eb3b809c34a82f55dcb5b8c7fa3a0e8bbf56b
MD5 5ccd33298d7226598e1605209c635449
BLAKE2b-256 177b38f66b2133dc285880f16e55add5bb78607ed09e40b477f046390fd11f33

See more details on using hashes here.

File details

Details for the file commonpower-0.6.2-py3-none-any.whl.

File metadata

  • Download URL: commonpower-0.6.2-py3-none-any.whl
  • Upload date:
  • Size: 146.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for commonpower-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cfb80c0d0b3b43d1644568a3213a8640143341a6bf862cce750097fc47333b14
MD5 b66c9af8de30278ce1b2c015057fce83
BLAKE2b-256 770928cb282d8f3d0ea68ce1d547bf3d78ca3d8ab05ed40d60a984576bfbb62a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page