Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HIT2GAP-EU-PROJECT/bemserver
An open source Python server to deploy energy management solutions for buildings
https://github.com/HIT2GAP-EU-PROJECT/bemserver
Last synced: 3 months ago
JSON representation
An open source Python server to deploy energy management solutions for buildings
- Host: GitHub
- URL: https://github.com/HIT2GAP-EU-PROJECT/bemserver
- Owner: HIT2GAP-EU-PROJECT
- License: other
- Created: 2019-07-16T14:45:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-27T16:05:34.000Z (about 2 years ago)
- Last Synced: 2024-06-11T17:46:51.558Z (5 months ago)
- Language: Python
- Homepage: http://bemserver.org
- Size: 1.03 MB
- Stars: 38
- Watchers: 11
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - BEMServer - An open source Python server to deploy energy management solutions for buildings. (Consumption / Buildings and Heating)
README
# BEMServer is being fully refactorized! A newer version is under development [here](https://github.com/BEMServer). The present version is now abandonned (on our side at least).
**Table of Contents**
1. [Description](#description)
1. [Technologies used](#technologies)
2. [Installation](#installation)
2. [User guidelines](#user)
3. [Developer guidelines](#developer)
4. [Related work](#documentation)BEMServer is an open source platform to ease the deployment of energy management software in monitored buildings.
Based on standard technologies (REST APIs, formal ontologies...) it is a Python software that is used to
- ***collect data*** from buildings. Data are currently pushed to BEMServer through a specific REST API. Therefore, for smart meters, adapters need to be developed to connect the meters to BEMServer. For BMS, specific adapters need to be developed, or a third-party solution need to be used to collect data from proprietary protocols (KNX, BACNet...)
- ***agregate data*** collected. Data in buildings are heterogeneous by nature, and come from a variety of sources (meters, sensors, but also human interactions, building descriptions, IFC files...). To ease data access, all data need first to be aggregated and aligned according to a specific model. We use our specific [BEMOnt](https://github.com/HIT2GAP-EU-PROJECT/BEMOnt) formal ontology to do so.
- ***preprocess data***. Data from sensors may not be as reliable as expected. In BEMServer we are continuously developing new algorithms to facilitate data access for software developers: data cleansing to avoid blanks and outliers, unit conversion, airhtmetic operations... are at the disposal to get the data as you need them.
- ***present data***. Through its [REST APIs](https://h2g-platform-core.nobatek.com/api/v0/api-docs/redoc), data are exposed in a standard way to thrid-party developers.BEMServer is a **Python**-based software. As a server is it developed using the [flask](https://palletsprojects.com/p/flask/) library.
Additionally, its storage system uses 3 different technologies:
- Apache Jena to store the metadata (i.e. data used to describe all relevant information, from the building, to the measures made by a sensor)
- HDF5 file format to store timeseries, which are a big part of the data stored, coming from sensors and meters.
- SQLite to store events. An event is typically generated by a service connected to BEMServer, and can be an alert (e.g. an abnormal energy consumption), or an advice (e.g. potential for energy saving).Follow the guideline in [INSTALL.md](INSTALL.md).
BEMServer is mainly dedicated to people and company who want to develop smart energy services for building. As such, it was already used as the support for load forecasting, fault detection and diagnosis, or confort simulation tools. In brief, BEMServer is a tool to be used for domain expert and software developers who do not want to become experts on how to collect data and access them.
In order to install BEMServer, please check the ***INSTALL.md*** file. Once up and running, simply use the online [REST APIs](https://h2g-platform-core.nobatek.com/api/v0/api-docs/redoc) to interact with your BEMServer instance.
Want to be part of the developing team? Want to contribute to the project and join effort in providing the community with an open source tool to deploy energy management softwares? Then, just download the project, fork it, start developing and make a pull request.
Also check the [CONTRIBUTING.md](CONTRIBUTING.md) file.
- Pierre BourreauP, Richard Chbeir, Yudith Cardinale, Aitor Corchero, Khouloud Salameh, Jérôme Lafréchoux, David Frédérique, Rafael Constantinou - ***BEMServer: An Open Source Platform for Building Energy Performance Management*** - EC3 (European Conference on Computing in Construction), July 2019 - https://www.researchgate.net/publication/334626054_BEMServer_An_Open_Source_Platform_for_Building_Energy_Performance_Management
- Lara Kallab, Richard Chbeir, Pierre Bourreau, Pascale Brassier, Michael Mrissa - ***HIT2GAP: Towards a better building energy management***, Energy Procedia, Volume 122, 2017 - http://www.sciencedirect.com/science/article/pii/S1876610217330035
Also, see the [presentation on slideShare](https://www.slideshare.net/pbourreau/bemserver-open-source-platform-for-building-energy-management)