Usage

Install Stable Release

To install the building-energy-storage-simulation with pip, execute:

(.venv) $ pip install building-energy-storage-simulation

Install Development Version

To contribute to this project, with support for running tests and building the documentation.

git clone https://github.com/tobirohrer/building-energy-storage-simulation.git && cd building-energy-storage-simulation
pip install -e .[docs,tests]

Example Usage

To use the building-energy-storage-simulation, first install it using pip:

from building_energy_storage_simulation import Environment
env = Environment()
initial_observation, _ = env.reset()
observation, reward, done, truncated, info = env.step(42)
...