SPARKLE - Simulation Platform for Agent-based Research on energy marKet dynamics for Lower Emissions
SPARKLE is an open-source toolbox for agent-based simulations of European electricity markets, with a primary focus on the German market setup. Developed as an open-source model, its primary objectives are to ensure usability and customizability for a wide range of users and use cases in the energy system modeling community.
This is a fork of ASSUME, created to focus on the results of my PhD thesis. It is published under a different name, so that my thesis is not too tightly coupled to the ASSUME research project, as I do not receive funding from it.
I plan to add all features to the upstream assume project, where I am also one of the core maintainers and developers. After finishing my PhD, SPARKLE will not be maintained any longer, so you should surely just use the ASSUME Framework in the first place.
For convenience reasons, the package name and cli name stays assume
to reduce the unneeded changes towards the maintained version.
You can install SPARKLE using pip. Choose the appropriate installation method based on your needs:
To install the core package:
pip install -e .
To install with reinforcement learning capabilities:
pip install -e .[full]
If you want to benefit from a supported database and integrated Grafana dashboards for scenario analysis, you can use the provided Docker Compose file.
Follow these steps:
- Clone the repository and navigate to its directory:
git clone https://github.com/maurerle/sparkle.git
cd sparkle
- Start the database and Grafana using the following command:
docker-compose up -d
This will launch a container for TimescaleDB and Grafana with preconfigured dashboards for analysis. You can access the Grafana dashboards at http://localhost:3000
.
When running an example with learning capabilities, you can start TensorBoard to observe the learning process. Use the following shell command to start TensorBoard:
tensorboard --logdir tensorboard
You can then head to http://localhost:6006/
to view and evaluate the training progress.
Please note that TensorBoard should ideally be shut down via Ctrl + C
every time you want to start a new simulation run in the same folder structure and want to overwrite existing results, as failing to do so may lead to conflicts deleting old logs.
To ease your way into ASSUME we provided some examples and tutorials. The former are helpful if you would like to get an impression of how ASSUME works and the latter introduce you into the development of ASSUME.
There are two ways to run simulations using sparkle
- Using the provided Docker setup:
If you have installed Docker and set up the Docker Compose file previously, you can select 'timescale' in examples.py
before running the simulation. This will save the simulation results in a Timescale database, and you can access the Dashboard at http://localhost:3000
.
- Using the CLI to run simulations:
assume -s example_01b -db "postgresql://assume:assume@localhost:5432/assume"
For additional CLI options, run assume -h
.
Copyright 2022-2025 ASSUME developers.
ASSUME is licensed under the GNU Affero General Public License v3.0. This license is a strong copyleft license that requires that any derivative work be licensed under the same terms as the original work. It is approved by the Open Source Initiative.