A library for Building and Energy Simulation, Optimization and Surrogate-modelling
Project description
BESOS: Building and Energy Systems Optimization and Surrogate-modelling
BESOS is a collection of modules for the simulation and optimization of buildings and urban energy systems. BESOS is designed to help researchers and practitioners to design more sustainable, district-integrated buildings. It integrates EnergyPlus and EnergyHub simulation software with optimization and machine learning functionality. this includes lots of help with 'surrogate modelling', where machine learning models are fitted to data generated by parametric runs of detailed simulation models. BESOS facilitates running large-scale parametric analyses of EnergyPlus or EnergyHub models with output in a pandas DataFrame and using this to train machine learning surrogate models with scikit-learn or TensorFlow. We provide access to commonly used optimization algorithms via existing optimization toolboxes.
Installing BESOS
Ensure that you have Python 3.7+ and the corresponding version of pip.
pip install besos[complete]
(If you do not want to run the example notebooks, you can use pip install besos
, which will
install with less dependencies.)
Install Dependencies
We use third party software to run building models (EnergyPlus
), to solve EnergyHub models (a MILP solver), and make use of Rbfopt (via Bonmin
). To use this functionality you need to install the software for the corresponding the task. GLPK and Bonmin are optional, it is possible to use Besos without them.
Install Energyplus
Download EnergyPlus here. (BESOS
is currently supporting versions from 8.8-9.3+).
For windows: After downloading the installation file, double click the setup file to start installing.
After setup is complete, navigate to your System Properties
and in the Advanced
tab, select Environment Variables
.
In either your User Variables
or System Variables
(Depending on your permissions), double click on Path
and add the location of your EnergyPlus
folder to the end of it.
For linux: Run the downloaded script, and accept the prompt to add symlinks.
Optional: MILP solver
EnergyHub modelling requires a linear programming solver that is supported by PuLP, such as GLPK
, CPlex
, or Gurobi
.
GLPK
is free and open source. It can be found here.
If you are using a Debian based operating system, you can install GLPK with sudo apt install glpk-utils
Optional: Bonmin
Bonmin
is required to use the RBFopt
optimizer.
How to install Bonmin
can be found here.
Running Example Notebooks
Examples of Besos' functionality are provided through example notebooks. The notebooks can be viewed as Python scripts or through a Jupyter notebook.
You can run notebooks from the Besos platform, which has the besos library and all dependencies pre-installed, or you can install Jupyter locally.
To run the notebooks you need Juptyer installed. Jupyter can be installed using: pip install juptyer
and launched from the current directory with jupyter notebook
.
Contributing and Support
When creating gitlab issues, please search the existing gitlab issues to see if someone else has already made the same request.
Feature Requests
To request a feature open a new issue with your feature request.
Bug reports/Questions
If you have found a bug, please open a gitlab issue describing the bug. Make sure to include steps to reproduce the bug. Ideally, include a small bit of code that causes the bug. If the bug causes an error, please include the traceback. If the bug causes the wrong behaviour, please mention what besos should do in this situation.
Code contributions
If you are making a new feature, first install besos locally, and make a feature branch off of dev.
(If you are fixing a bug branch off of the master branch.) Once you have written your code, test and format it, then submit a merge request.
These steps are described in more detail below.
Development Installation
You will need python 3 and git installed in order to install besos.
Download the repo:
git clone https://gitlab.com/energyincities/besos.git
cd besos
git checkout dev
Set up a virtual environment (optional but recommended):
python3 -m venv venv
source venv/bin/activate
Install besos in editable mode, with development dependencies:
pip install -e .
pip install -r environments/requirements-dev.txt
pre-commit install
Install the libraries needed for Besos to run:
Install Bonmin. Can be found here.
Also install GLPK or another Pulp supporting solver.
Can be found here.
If you are using Debian, you can install GLPK with sudo apt install glpk-utils
Feature branches
To create an feature branch from dev, use
git checkout dev
git pull
git checkout -b <your-branch-name>
Testing and Formatting
You can run the tests using pytest
, and format code using black .
(both from the besos root directory.) Tests and formatting will also be run automatically by
gitlab-ci on any merge request. Every month the master branch also runs all example notebooks.
Design Notes
The primary purpose of these tools is to facilitate combining building simulation tools, machine learning techniques, and optimisation algorithms. It does not attempt to provide new tools in any of these domains.
Two dimensional data should be stored in or converted to a DataFrame where possible, especially for user facing data.
Reasonable defaults should be available where possible.
There should be simple versions of core features available which can be used out of the box.
Program Details
Example notebooks
A good way to start is using the example notebooks. They are described in the examples overview
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.