EnCoDaPy – Energy Control and Data Preparation in Python.
Project description
"EnCoDaPy" – Energy Control and Data Preparation in Python.
Basics
- The Basic Controller provides a system for
- read a configuration
- receive data
- start a calculation
- return the results
- This interaction is possible with several interfaces, see examples/03_interfaces:
- FIWARE-API
- MQTT
- File
- The controller has the functionality to read a configuration from JSON and ENV, validate it and return it as a model.
Configuration
-
The configuration of the service must be provided via
config.jsonand has several sections (see the examples):name: Controller name - for documentation purposes onlyinterfaces: Indicates which interfaces are activeinputs: Configuration of the inputs to the controlleroutputs: Configuration of the outputsstaticdata: Static data point configuration (Data that is not continuously updated)controller_components: Configuration of the controller componentscontroller_settings: General settings about the controller
-
ENVs are required to configure the interfaces / get the config with the default value [
default]:CONFIG_PATH = ["./config.json"] LOG_LEVEL = RELOAD_STATICDATA = False # FIWARE - Interface CB_URL = ["http://localhost:1026"] FIWARE_SERVICE = ["service"] FIWARE_SERVICE_PATH = [/] FIWARE_AUTH = [False] # only used if FIWARE_AUTH = true / Option 1 for authentication FIWARE_CLIENT_ID = FIWARE_CLIENT_PW = FIWARE_TOKEN_URL = # only used if FIWARE_AUTH = true and the three previously not set / Option 2 for authentication FIWARE_BAERER_TOKEN = [] CRATE_DB_URL = ["http://localhost:4200"] CRATE_DB_USER = ["crate"] CRATE_DB_PW = [""] CRATE_DB_SSL = [False] # FILE - Interface PATH_OF_INPUT_FILE = "path_to_the_file_\\validation_data.csv" START_TIME_FILE = "01.01.2023 06:00" TIME_FORMAT_FILE = "%d.%m.%Y %H:%M" - format of time in file
Usage
You could install the Package via PyPI:
pip install encodapy
To create your own custom service, you have to overwrite two functions of the ControllerBasicService:
prepare_start: This is a synchronous function that prepares the start of the algorithm and specifies aspects of the service. This should not take long due to health issues in Docker containers. It only needs to be overwritten if other tasks are required after initialisation of the service.calculation(): Asynchronous function to perform the main calculation in the servicecalibration(): Asynchronous function to calibrate the service or coefficients in the service if only required
To start the service, you need to call
start_calibration(): To start the calibration if requiredstart_service(): To start the service
A easy posibility to start the service is to run the base main.py. For more details, see the examples
Examples
For different examples and documentation, how to use the tool - see examples.
The examples are intended to help you use the tool and understand how it works:
- the configuration
- the use
Units
- Inputs and outputs get information about the unit. The class
DataUnitsis used for this. - More units must be added manually.
- Timeranges:
- Timeranges for data queries are different for calculation and calibration.
- The following timeranges are possible
- '"minute"'
- '"hour"'
- '"day"'
- '"month"' (30 days for simple use)
- Today, there ist no adjustment for different units. Its a TODO for the future
Deployment
The recommended way to run the service is:
- Create a Python environment using Poetry (see pyproject.toml).
- Use a Docker container for production deployments (create a custom image using the dockerfile).
License
This project is licensed under the BSD License - see the LICENSE file for details.
Copyright
2024-2025, TUD Dresden University of Technology, Chair of Building Energy Systems and Heat Supply
Related projects
-
EnOB: TWE-Flex - Optimisation and flexibilisation of domestic hot water heating systems
Project Website -
EnEff: E³ - Low-emission and energy-efficient energy supply in urban areas using the latest intelligent ICT structures
Project Website
Acknowledgments
We gratefully acknowledge the financial support of the Federal Ministry for Economic Affairs and Climate Action (BMWK).
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.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file encodapy-0.4.0.tar.gz.
File metadata
- Download URL: encodapy-0.4.0.tar.gz
- Upload date:
- Size: 30.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cda0562037324e6bd0005965d5c5faac0eb7dadab1d42316fb24319794caa8c9
|
|
| MD5 |
e8b4935fc4119e52c4440cd9cff77cd7
|
|
| BLAKE2b-256 |
37052bab4a6a7cbb53df306d8315512486fb177e2cfb0c1e24b96c9803afa111
|
File details
Details for the file encodapy-0.4.0-py3-none-any.whl.
File metadata
- Download URL: encodapy-0.4.0-py3-none-any.whl
- Upload date:
- Size: 35.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcd6c7c9f8ef3c3d6d0aaf1e8401c4e61239e0d9eca627deb6e6dcf209e59d42
|
|
| MD5 |
0282e7b6c55bf681ca54208c0668f8ae
|
|
| BLAKE2b-256 |
1a0f167e74e5bac62afe600fd0ab1a14442d075b30fcf62d486608e207a2ef1f
|