Skip to main content

An Energy Management System for Home Assistant

Project description

emhass

EMHASS: Energy Management for Home Assistant

Context

This module was conceived as an energy management optimization tool for residential electric power consumption and production systems. The goal is to optimize the energy use in order to maximize autoconsumption. The main study case is a household where we have solar panels, a grid connection and one or more controllable (deferrable) electrical loads. Including an energy storage system using batteries is also possible in the code. The package is highly configurable with an object oriented modular approach and a main configuration file defined by the user. EMHASS was designed to be integrated with Home Assistant, hence it's name. Installation instructions and example Home Assistant automation configurations are given below.

The main dependencies of this project are PVLib to model power from a PV residential installation and the PuLP Python package to perform the actual optimizations using the Linear Programming approach.

The complete documentation for this package is available here.

Installation

It is recommended to install on a virtual environment. For this you will need virtualenv, install it using:

sudo apt install python3-virtualenv

Then create and activate the virtual environment:

virtualenv -p /usr/bin/python3 emhassenv
cd emhassenv
source bin/activate

Install using the distribution files:

pip install emhass

Clone this repository to obtain the example configuration files. We will suppose that this repository is cloned to:

/home/user/emhass

This will be the root path containing the yaml configuration files (config.yaml and secrets.yaml) and the different needed folders (a data folder to store the optimizations results and a scripts folder containing the bash scripts described further below).

Usage

To run a command simply use the emhass command followed by the needed arguments. The available arguments are:

  • --action: That is used to set the desired action, options are: perfect-optim, dayahead-optim and publish-data
  • --config: Define path to the config.yaml file

For example, the following line command can be used to perform a day-ahead optimization task:

emhass --action 'dayahead-optim' --config '/home/user/emhass'

Before running any valuable command you need to modify the config.yaml and secrets.yaml files. These files should contain the information adapted to your own system. To do this take a look at the special section for this in the documentation.

Home Assistant integration

To integrate with home assistant we will need to define some shell commands in the configuration.yaml file and some basic automations in the automations.yaml file.

In configuration.yaml:

shell_command:
  dayahead_optim: /home/user/emhass/scripts/dayahead_optim.sh
  publish_data: /home/user/emhass/scripts/publish_data.sh

And in automations.yaml:

- alias: EMHASS day-ahead optimization
  trigger:
    platform: time
    at: '05:30:00'
  action:
  - service: shell_command.dayahead_optim
- alias: EMHASS publish data
  trigger:
  - minutes: /5
    platform: time_pattern
  action:
  - service: shell_command.publish_data

In these automations the optimization is performed everyday at 5:30am and the data is published every 5 minutes. Create the file dayahead_optim.sh with the following content:

#!/bin/bash
. /home/user/emhassenv/bin/activate
emhass --action 'dayahead-optim' --config '/home/user/emhass'

And the file publish_data.sh with the following content:

#!/bin/bash
. /home/user/emhassenv/bin/activate
emhass --action 'publish-data' --config '/home/user/emhass'

Then specify user rights and make the files executables:

sudo chmod -R 755 /home/user/emhass/scripts/dayahead_optim.sh
sudo chmod -R 755 /home/user/emhass/scripts/publish_data.sh
sudo chmod +x /home/user/emhass/scripts/dayahead_optim.sh
sudo chmod +x /home/user/emhass/scripts/publish_data.sh

The final action will be to link a sensor value in Home Assistant to control the switch of a desired controllable load. For example imagine that I want to control my water heater and that the publish-data action is publishing the optimized value of a deferrable load that I have linked to my water heater desired behavior. In this case we could use an automation like this one below to control the desired real switch:

automation:
  trigger:
    - platform: numeric_state
      entity_id:
        - sensor.p_deferrable1
      above: 0.1
  action:
    - service: homeassistant.turn_on
      entity_id: switch.water_heater

A second automation should be used to turn off the switch:

automation:
  trigger:
    - platform: numeric_state
      entity_id:
        - sensor.p_deferrable1
      below: 0.1
  action:
    - service: homeassistant.turn_off
      entity_id: switch.water_heater

Development

To develop using Anaconda:

conda create --name emhass-dev python=3.8 pip=21.0.1

Then activate environment and install emhass using the provided setup.py file:

conda activate emhass-dev
python setup.py install

Add more packages if needed, this is optional if using spyder:

conda install spyder-kernels

Update the build package:

python3 -m pip install --upgrade build

And generate distribution archives with::

python3 -m build

Create a new tag version:

git tag vX.X.X
git push origin --tags

Upload to pypi:

twine upload dist/*

In Spyder you can use CTRL+F6 and add the needed arguments in the "Command line options". The runfile command in the ipython console may look like this:

runfile('/home/user/emhass/src/emhass/command_line.py', args='--action "dayahead-optim" --config "/home/user/emhass"', wdir='/home/user/emhass/src/emhass')

To generate de documentation we will use Sphynx, the following packages are needed:

pip install sphinx==3.5.4 sphinx-rtd-theme==0.5.2 myst-parser==0.14.0

The actual documentation is generated using:

sphinx-apidoc -o ./ ../src/emhass/
make clean
make html

TODO

  • Implement an energy management with a Model Predictive Control approach. Consider implementing the receiding horizon approach.
  • Improve load forecasting using a time series forecast algorithm. Some tests were made with fbprophet but results are not completly satisfactory. The model needs some regressors for more accuracy.
  • Introduce the modeling of constraints during optimization for a thermal energy storage
  • EMHASS hass been tested in Home Assistan Core. It need to be tested on Home Assistant Operating System and Home Assistant Container.
  • Create an EMHASS add-on for even easier installation on Home Assistant Operating System and Home Assistant Supervised
  • Package everything in a docker container
  • Define the type of forecast that should be used from the configuration file
  • Create a plotting class to visualize the optimization results

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

emhass-0.1.3.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

emhass-0.1.3-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file emhass-0.1.3.tar.gz.

File metadata

  • Download URL: emhass-0.1.3.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11

File hashes

Hashes for emhass-0.1.3.tar.gz
Algorithm Hash digest
SHA256 fa8fe5db4cc9d9c142f3617c6ee66b86f3add0959866a098fd7cb8855c09760c
MD5 daecfa868711d72f19622746feb1a9ad
BLAKE2b-256 3f03fc93987527c2b6c7219baef477ebee4ec230f83d731a3620dc1384e1533d

See more details on using hashes here.

File details

Details for the file emhass-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: emhass-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11

File hashes

Hashes for emhass-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 46cecc526a92ce9e0685e64c49fc4a9faaf1c4584b2034eac390f84b87de71c2
MD5 ab2823130a436485a7d19d311a3ff8f7
BLAKE2b-256 12abd2eeb95ae98d8f9339f8547b1adcc9026c3ea81cb6f04f30752c9e55dd04

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