A Volttron agent that runs boptest simulation.
Project description
boptest-agent
The volttron-boptest-agent utilizes the volttron-lib-boptest-integration library to perform simulation control and benchmark tasks.
BOPTEST is designed to facilitate the performance evaluation and benchmarking of building control strategies, which contains these key components:
-
Run-Time Environment (RTE): Deployed with Docker and accessed with a RESTful HTTP API, use the RTE to set up tests, control building emulators, access data, and report KPIs.
-
Test Case Repository: A collection of ready-to-use building emulators representing a range of building types and HVAC systems.
-
Key Performance Indicator (KPI) Reporting: A set of KPIs is calculated by the the RTE using data from the building emulator being controlled.
For more information, please visit IBPSA Project 1 - BOPTEST.
Prerequisites
- Python 3 (tested with Python3.10)
- Linux OS (tested with Ubuntu 22.04)
Python
To install specific Python version (e.g., Python 3.10), we recommend using pyenv
.
# install pyenv
git clone https://github.com/pyenv/pyenv ~/.pyenv
# setup pyenv (you should also put these three lines in .bashrc or similar)
export PATH="${HOME}/.pyenv/bin:${PATH}"
export PYENV_ROOT="${HOME}/.pyenv"
eval "$(pyenv init -)"
# install Python 3.10
pyenv install 3.10
# make it available globally
pyenv global system 3.10
Quick-start
Setup environment and VOLTTRON platform
The following recipe walks through the steps to install and demonstrate basic usage of "volttron-boptest" agent.
The following recipe walks through the steps to install and run use case example.
Note: For the ease of reproducibility, in this demo, we
will git clone the volttron-boptest repo to the ~/sandbox/
path. Feel free to modify the workflow as desired.
kefei@ubuntu-22:~/sandbox$ git clone https://github.com/eclipse-volttron/volttron-boptest.git
Cloning into 'volttron-boptest'...
remote: Enumerating objects: 450, done.
remote: Counting objects: 100% (450/450), done.
remote: Compressing objects: 100% (242/242), done.
remote: Total 450 (delta 192), reused 424 (delta 170), pack-reused 0
Receiving objects: 100% (450/450), 3.66 MiB | 7.06 MiB/s, done.
Resolving deltas: 100% (192/192), done.
kefei@ubuntu-22:~/sandbox$ cd volttron-boptest/
kefei@ubuntu-22:~/sandbox/volttron-boptest$
-
Create and activate a virtual environment.
It is recommended to use a virtual environment for installing volttron.
python -m venv env source env/bin/activate pip install volttron
-
Install volttron and start the platform.
Note: According to the volttron-core#README, setup VOLTTRON_HOME environment variable is mandatory: ... if you have/had in the past, a monolithic VOLTTRON version that used the default VOLTTRON_HOME $HOME/.volttron. This modular version of VOLTTRON cannot work with volttron_home used by monolithic version of VOLTTRON(version 8.3 or earlier)
# Setup environment variable `VOLTTRON_HOME` export VOLTTRON_HOME=<path-to-volttron_home-dir> # Start platform with output going to volttron.log volttron -vv -l volttron.log &
Setup the boptest simulation server locally.
In order to demonstrate the basic usage of volttron-boptest-agent, we need to setup the boptest simulation server.
(Please see more details about boptest quick-start at Quick-Start to Deploy a Test Case)
-
Download IBPSA Project 1 - BOPTEST repository to <boptest_repo>. For demo purpose, let boptest_repo be
~/project1-boptest
.git clone https://github.com/ibpsa/project1-boptest ~/project1-boptest
-
Install Docker and Docker Compose.
Note: this demo run docker as a non-root user, you can follow Linux post-installation steps for Docker Engine to achieve similar setup.
(Optional) Verify with
docker-compose version
to verify the installation(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ docker-compose version docker-compose version 1.29.2, build unknown docker-py version: 5.0.3 CPython version: 3.10.6 OpenSSL version: OpenSSL 3.0.2 15 Mar 2022
-
Build and deploy a test case.
The basic command to start a test case is by using
TESTCASE=<testcase_name> docker-compose up
.For demo purpose, we will build and deploy testcase1, for avialbe testcases please see testcases/
(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ TESTCASE=testcase1 docker-compose --file ~/project1-boptest/docker-compose.yml up Creating network "boptest-net" with the default driver Creating project1-boptest_boptest_1 ... done Attaching to project1-boptest_boptest_1 boptest_1 | 07/13/2023 09:59:42 PM UTC root INFO Control step set successfully. boptest_1 | 07/13/2023 09:59:42 PM UTC root INFO Test simulation initialized successfully to 0.0s with warmup period of 0.0s. boptest_1 | 07/13/2023 09:59:42 PM UTC root INFO Test case scenario was set successfully. ... boptest_1 | * Debug mode: off boptest_1 | 07/13/2023 09:59:42 PM UTC werkzeug INFO * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
Or use detach mode
(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ TESTCASE=testcase1 docker-compose --file ~/project1-boptest/docker-compose.yml up --detach Starting project1-boptest_boptest_1 ... done (env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ docker container ls CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ddd0f2cc1f99 boptest_base "/bin/sh -c 'python …" 23 hours ago Up 12 seconds 127.0.0.1:5000->5000/tcp project1-boptest_boptest_1
Note: Use
docker-compose down
to shut down the service.Verify boptest simulation server is running properly:
(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ curl http://127.0.0.1:5000/name {"message":"Queried the name of the test case successfully.","payload":{"name":"testcase1"},"status":200}
Install volttron boptest agent
-
Install the "volttron-boptest" dependency.
There are two options to install volttron-boptest. You can install this library using the version on PyPi or install it from the source code (
git clone
might be required.) Note: thevctl install
command in the following step can handle dependency installation using pypi. However, in this demo we demonstrate what is happening under the neath the hood by separating the dependency installation and agent registry steps.# option 1: install from pypi pip install volttron-boptest # option 2: install from the source code (Note: `-e` option to use editable mode, useful for development.) pip install [-e] <path-to-the-source-code-root>/volttron-boptest/
-
Install and start the "volttron-boptest" agent.
We will use the testcase1.config as the agent config for this demo. Please see examples/ for other example config files.
Use
vctl install
command to register to the volttron home path. Note: for demo purposes and reproducibility, we assign vip-identity as "volttron_boptest_agent", but you can choose any other valid agent identity as desired.(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ vctl install volttron-boptest \ --agent-config volttron-boptest-agent/examples/testcase1.config \ --vip-identity volttron_boptest_agent \ --start Agent a0fd6f5c-3751-4312-9f59-ca541b8aac4e installed and started [4980]
Observe Data
The volttron-boptest agent publishes events on the message bus. To see these events in the Volttron log file, install a Listener Agent:
vctl install volttron-listener --start
(Optional) Use vctl stauts
to verify the installation
(env) kefei@ubuntu-22:~/sandbox/volttron-boptest$ vctl status
UUID AGENT IDENTITY TAG PRIORITY STATUS HEALTH
a volttron-boptest-agent-0.0.1 volttron_boptest_agent running [59108] GOOD
2 volttron-listener-0.2.0rc0 volttron-listener-0.2.0rc0_1 running [59096] GOOD
-
(optional) Inspect the volttron.log file
Within the volttron.log, we should see similar logs as follows
# Create config file place holders KPI RESULTS ----------- 2023-07-13 18:27:51,124 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: emis_tot: 0.2147137757521314 KgCO2/m$^2$ 2023-07-13 18:27:51,174 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: ener_tot: 1.073568878760657 kWh/m$^2$ 2023-07-13 18:27:51,223 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: idis_tot: 508.47225004790033 ppmh/zone 2023-07-13 18:27:51,280 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: pdih_tot: None kW/m$^2$ 2023-07-13 18:27:51,330 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: pele_tot: None kW/m$^2$ 2023-07-13 18:27:51,381 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: pgas_tot: 0.09615811655434148 kW/m$^2$ 2023-07-13 18:27:51,436 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: tdis_tot: 5.316029375566828 Kh/zone 2023-07-13 18:27:51,494 (volttron-boptest-agent-0.0.1 59108) root(186) INFO: time_rat: 0.001856946445725582 s/s 2023-07-13 18:27:51,550 (volttron-boptest-agent-0.0.1 59108) root(202) INFO: ======== run workflow completed.====== 2023-07-13 18:27:51,553 (volttron-boptest-agent-0.0.1 59108) <stdout>(0) INFO: ["======= kpi {'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': 1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, 'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': 5.316029375566828, 'time_rat': 0.001856946445725582}"] 2023-07-13 18:27:51,558 (volttron-boptest-agent-0.0.1 59108) root(129) INFO: =========== refactoring onstart 2023-07-13 18:27:52,067 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,071 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,073 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,074 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,075 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,076 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,078 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,079 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,081 (volttron-listener-0.2.0rc0 59096) listener.agent(104) INFO: Peer: pubsub, Sender: volttron_boptest_agent:, Bus: , Topic: PNNL/BUILDING/UNIT/kpi, Headers: {'min_compatible_version': '3.0', 'max_compatible_version': ''}, Message: ("{'cost_tot': 0.075149821513246, 'emis_tot': 0.2147137757521314, 'ener_tot': " "1.073568878760657, 'idis_tot': 508.47225004790033, 'pdih_tot': None, " "'pele_tot': None, 'pgas_tot': 0.09615811655434148, 'tdis_tot': " "5.316029375566828, 'time_rat': 0.001856946445725582}") 2023-07-13 18:27:52,084 (volttron-boptest-agent-0.0.1 59108) root(305) INFO: ======== onstart completed.======
Development
Please see the following for contributing guidelines contributing.
Please see the following helpful guide about developing modular VOLTTRON agents
Disclaimer Notice
This material was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor the United States Department of Energy, nor Battelle, nor any of their employees, nor any jurisdiction or organization that has cooperated in the development of these materials, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness or any information, apparatus, product, software, or process disclosed, or represents that its use would not infringe privately owned rights.
Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or any agency thereof, or Battelle Memorial Institute. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or any agency thereof.
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
File details
Details for the file volttron_boptest-0.1.1.tar.gz
.
File metadata
- Download URL: volttron_boptest-0.1.1.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.13 Linux/6.2.0-1012-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 683fe644f96cd79943c34af2305e5c179f1fa32e620c76e9b5eac8759579eb97 |
|
MD5 | 21dc36ef7b1df9e063a090cb81728e3f |
|
BLAKE2b-256 | 786fcadc82634135bb731304ba09662f63bcc6972d87ab8ecbc85bad0d4be8d7 |
File details
Details for the file volttron_boptest-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: volttron_boptest-0.1.1-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.13 Linux/6.2.0-1012-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6e374583c8ad561c4bc77745ddb8d7993b5291c7bf5d8cbf9570c71b962a2b |
|
MD5 | 9694ddf42a38a2dadb564f46572a7268 |
|
BLAKE2b-256 | 11fdc35bac6d8e3edf88466aba0214806c8d03b69ae470167ce13f00c3d23481 |