Skip to main content

Python Library used for different python modules for the analysis and optimization of energy systems, buildings and indoor climate

Project description

E.ON EBC RWTH Aachen University

DOI pylint documentation coverage License build

ebcpy

This PYthon package provides generic functions and classes commonly used for the analysis and optimization of energy systems, buildings and indoor climate (EBC).

Key features are:

  • TimeSeriesData
  • SimulationAPI's
  • Optimization wrapper
  • Pre-/Postprocessing
  • Modelica utilities

It was developed together with AixCaliBuHA, a framework for an automated calibration of dynamic building and HVAC models. During this development, we found several interfaces relevant to further research. We thus decoupled these interfaces into ebcpy and used the framework, for instance in the design optimization of heat pump systems (link).

Installation

To install, simply run

pip install ebcpy

In order to use all optional dependencies (e.g. pymoo optimization), install via:

pip install ebcpy[full]

If you encounter an error with the installation of scikit-learn, first install scikit-learn separatly and then install ebcpy:

pip install scikit-learn
pip install ebcpy

If this still does not work, we refer to the troubleshooting section of scikit-learn: https://scikit-learn.org/stable/install.html#troubleshooting. Also check issue 23 for updates.

In order to help development, install it as an egg:

git clone https://github.com/RWTH-EBC/ebcpy
pip install -e ebcpy

How to get started?

We recommend running our jupyter-notebook to be guided through a helpful tutorial.
For this, run the following code:

# If jupyter is not already installed:
pip install jupyter
# Go into your ebcpy-folder (cd \path_to_\ebcpy) or change the path to tutorial.ipynb and run:
jupyter notebook tutorial\tutorial.ipynb

Or, clone this repo and look at the examples\README.md file. Here you will find several examples to execute.

How to cite ebcpy

Please use the following metadata to cite ebcpy in your research:

@article{Wuellhorst2022,
  doi = {10.21105/joss.03861},
  url = {https://doi.org/10.21105/joss.03861},
  year = {2022},
  publisher = {The Open Journal},
  volume = {7},
  number = {72},
  pages = {3861},
  author = {Fabian Wüllhorst and Thomas Storek and Philipp Mehrfeld and Dirk Müller},
  title = {AixCaliBuHA: Automated calibration of building and HVAC systems},
  journal = {Journal of Open Source Software}
}

TimeSeriesData

Note that we use our own TimeSeriesData object which inherits from pd.DataFrame. The aim is to make tasks like loading different filetypes or applying multiple tags to one variable more convenient, while conserving the powerful tools of the DataFrame. Just a quick intro here:

Variables and tags

>>> from ebcpy.data_types import TimeSeriesData
>>> tsd = TimeSeriesData(r"path_to_a_supported_file")
>>> print(tsd)
Variables    T_heater              T_heater_1            
Tags             meas         sim        meas         sim
Time                                                     
0.0        313.165863  313.165863  293.173126  293.173126
1.0        312.090271  310.787750  293.233002  293.352448
2.0        312.090027  310.796753  293.385925  293.719055
3.0        312.109436  310.870331  293.589233  294.141754

As you can see, our first column level is always a variable, and the second one a tag. This is especially handy when dealing with calibration or processing tasks, where you will have multiple versions (tags) for one variable. The default tag is raw to indicate the unmodified data. To access a variable, you have to call .loc. To access multiple variables that all hold one tag use xs:

# All tags:
tsd.loc[:, "variable_name"]
# One specific tag:
tsd.loc[:, ("variable_name", "tag_name")]
# One tag, all variables:
tsd.xs("tag_name", axis=1, level=1)

FloatIndex and DateTimeIndex

Measured data typically holds a datetime stamps (DateTimeIndex) while simulation result files hold absolute seconds (FloatIndex). You can easily convert back and forth using:

# From Datetime to float
tsd.to_float_index()
# From float to datetime
tsd.to_datetime_index()
# To clean your data and create a common frequency:
tsd.clean_and_space_equally(desired_freq="1s")

Documentation

Visit our official Documentation.

Problems?

Please raise an issue here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ebcpy-0.5.0.tar.gz (79.3 kB view details)

Uploaded Source

Built Distribution

ebcpy-0.5.0-py3-none-any.whl (71.2 kB view details)

Uploaded Python 3

File details

Details for the file ebcpy-0.5.0.tar.gz.

File metadata

  • Download URL: ebcpy-0.5.0.tar.gz
  • Upload date:
  • Size: 79.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for ebcpy-0.5.0.tar.gz
Algorithm Hash digest
SHA256 47cf30304213cdebe78edbe45773eb482932020f9787327392fa60553aafa694
MD5 9e674d9d2e4f8b5d582898173e863824
BLAKE2b-256 50fee507ad92be4252c4f8972b99cf628dd5fa3f773862cb073810a01e9696bc

See more details on using hashes here.

File details

Details for the file ebcpy-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: ebcpy-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 71.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for ebcpy-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f6fe4361230943f9f3ec51b9abc68a6c35c0778d907320fae29105fa376a9c8b
MD5 15bc95471628c07491ef56578e0559bf
BLAKE2b-256 0135655ea12cc25ec52d76d409fdb096b922b9d3eee5fb2593ea3fb6543fed9e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page