Vessim is a co-simulation testbed for carbon-aware systems. It allows you to simulate the interaction of computing systems with local energy systems, including renewable energy sources, energy storage, and the public grid. Vessim can connect domain-specific simulators for power generation and batteries with real software and hardware.
Check out the documentation!
Vessim helps you to understand and optimize how your (distributed) computing system interacts with (distributed) renewable energy sources and battery storage.
- Carbon-aware applications: Develop applications that automatically reduce their energy consumption when the grid is powered by fossil fuels, and increase activity when renewable energy is abundant.
- Energy system composition: Experiment with adding solar panels, wind turbines, or batteries to see how they would affect your energy costs and carbon emissions.
- Plan for outages and extreme events: Simulate power outages or renewable energy fluctuations to understand risks and test backup strategies.
- Quality assurance: Apply Vessim in continuous integrating testing to validate software roll-outs in a controlled environment.
Vessim can run simulations faster than real-time, includes historical datasets for realistic scenarios, and can simulate multiple microgrids in parallel. You can test scenarios using historical data or connect real applications and hardware to simulated energy systems.
The scenario below simulates a microgrid consisting of a simulated computing system (drawing 700W), a solar power plant (modelled based on a dataset provided by Solcast), and a battery. The vs.CsvLogger periodically stores the energy system state in a CSV file.
import vessim as vs
environment = vs.Environment(sim_start="2022-06-15", step_size=300) # 5 minute step size
microgrid = environment.add_microgrid(
name="datacenter",
actors=[
vs.Actor(name="server", signal=vs.StaticSignal(value=-700)), # negative = consumes power
vs.Actor(name="solar_panel", signal=vs.Trace.load("solcast2022_global", column="Berlin", params={"scale": 5000})), # 5kW maximum
],
storage=vs.SimpleBattery(capacity=100),
)
# Write results to CSV
environment.add_controller(vs.CsvLogger("./results.csv"))
environment.run(until=24 * 3600) # 24h simulated timeCheck out the tutorials and examples/!
You can install the latest release of Vessim via pip:
pip install vessim
If you require software-in-the-loop (SiL) capabilities, you should additionally install the sil extension:
pip install vessim[sil]
Vessim comes with ready-to-user datasets for solar irradiance and average carbon intensity provided by
We're working on documentation on how to include custom datasets for your simulations.
If you use Vessim in your research, please cite our paper:
- Philipp Wiesner, Ilja Behnke, Paul Kilian, Marvin Steinke, and Odej Kao. "Vessim: A Testbed for Carbon-Aware Applications and Systems." ACM SIGENERGY Energy Informatics Review 4 (5). 2024.
For details in Vessim's software-in-the-loop simulation methodology, refer to:
- Philipp Wiesner, Marvin Steinke, Henrik Nickel, Yazan Kitana, and Odej Kao. "Software-in-the-Loop Simulation for Developing and Testing Carbon-Aware Applications." Software: Practice and Experience, 53 (12). 2023.
For all related papers, please refer to the documentation.


