[custom component] Home Battery Storage simulation (battery_sim integration)

Do you think about getting a Home Storage Battery and are not sure about the costs/earnings or want to see how much you can improve your self sufficiency?
Cue Battery_sim by hif2k1 !

As there is no topic on this and it really is a wonderful integration in HACS and at GitHub - https://github.com/hif2k1/battery_sim, I thought I open a new topic. We can discuss new batteries to be added as presets, strategies for charging/discharging, display on frontend, questions, problems etc. To start I added one question I had when installing battery_sim

Battery_sim provides a few pre-installed batteries with the relevant parameters already set but you can also add your own custom battery. Then you can change the battery behaviour and it provides a lot of sensors on the state of the battery and the costs/earnings.

bat_sim-1

Note that my tariffs are currently set to the same costs for solar generated power and grid power, I should set the export to 0 as I at the moment do not get paid for exporting.

==============

FAQ:
Q01) Why is the export monetary value is negative ?
A01 by integration author)
Normally you would get paid for exporting electricity. If you generated
10kwh and exported it then you get paid for that. If instead you store it
in the battery you won’t get that money which is why it is negative. You
will use that electricity later though and save importing much more
expensive energy which is why batteries save you money overall. Initially
on the batteries first charge though the net benefit will be negative until
you’ve used some energy from the battery which can be disconcerting. If you
don’t get paid for exporting then you should set the tariff for the export
sensor to 0.

Say you get paid $0.10 for each kWh you export. During the day the sun
shines and you generate 10kwh. Without the battery you would have exported
that and earned $1. When the sun sets you’re down $1 (negative). However,
in the evening you use that 10kwh in the house. If your tariff for
importing is $0.25 per kwh it would have cost you $2.50, but instead you
use the energy from the battery saving you that money. Overall at the end
of the day you’ve saved $1.50 by having the battery.

Hi.
I installed a battery. It seems to work fine. During initial setup i selected the smart meter inputs en outputs with both high and low rates.
Is there a way to check if this selection indeed is effective?

@Ericv If by effective you mean if it is working as intended with the separate tariffs I guess you have to check that yourself.

The history graph will show you when and if it is loading/discharging and you can check here for the tariff periods as well.

Hi, I’m doubting if i have configured the battery sim correct. I added it to the energy dashboard. There i had two field to fill in.
Energy goes in: i have selected from my solar the produced tarif 1
Energy goes out: i have selected from my solar the consumed tarif 1

I have also tarif 2, so i think i have to do it twice. But is energy goes in correct configured with solar produced and energy goes out with solar consumed?

Hope someone can help. Thanxs a lot

@NewOakley The github repository at https://github.com/hif2k1/battery_sim is clear on that;
The relevant parameters are:

  • import_sensor: the sensor that measures the energy in kwh imported (coming into) your house cummlatively (e.g. output of a utility_meter component)

  • export_sensor: the sensor that measures the energy in kwh exported (leaving - sometimes called injection) your house cummlatively (e.g. output of a utility_meter component)

so not the solar sensors but the total that is either exported or imported from your house.
I think most p1-meters give these numbers when linked to HA.

I wanted to have a live diagram of the actual power flowing to and from my simulated battery, but found the battery_sim integration does have simulated sensors for the energy consumed from and produced into the grid (kWh), but it does not have equivalent sensors needed for the power flow chart: the ‘simulated current power imported from the grid’ and the ‘simulated current power exported to the grid’ sensors in W.

These simulated grid-power sensors can however be calculated from the sensors that we do have:

  • simulated exported power = (solar + bat_out) - (used + bat_in)
  • simulated imported power = (used + bat_in) - (solar + bat_out)

So I went ahead and created myself 2 helper template sensors for the purpose.

Here is the template I created for the ‘simulated power exported to the grid’ sensor:

{% set bat_out = states('sensor.battery_sim_diy_100k_current_discharging_rate') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.battery_sim_diy_100k_current_discharging_rate', 'unit_of_measurement')] %}
{% set solar_in = states('sensor.envoy_121831009724_current_power_production') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.envoy_121831009724_current_power_production', 'unit_of_measurement')] %}
{% set used = states('sensor.envoy_121831009724_current_power_consumption') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.envoy_121831009724_current_power_consumption', 'unit_of_measurement')] %}
{% set bat_in = states('sensor.battery_sim_diy_100k_current_charging_rate') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.battery_sim_diy_100k_current_charging_rate', 'unit_of_measurement')] %}

{{ max( 0, (solar_in + bat_out) - (used + bat_in)) }}

And the template for the 2nd sensor, the ‘simulated power imported from the grid’ is:

{% set bat_out = states('sensor.battery_sim_diy_100k_current_discharging_rate') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.battery_sim_diy_100k_current_discharging_rate', 'unit_of_measurement')] %}
{% set solar_in = states('sensor.envoy_121831009724_current_power_production') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.envoy_121831009724_current_power_production', 'unit_of_measurement')] %}
{% set used = states('sensor.envoy_121831009724_current_power_consumption') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.envoy_121831009724_current_power_consumption', 'unit_of_measurement')] %}
{% set bat_in = states('sensor.battery_sim_diy_100k_current_charging_rate') | float * { 'W' : 1, 'kW' : 1000, 'MW' : 1000000 }[ state_attr('sensor.battery_sim_diy_100k_current_charging_rate', 'unit_of_measurement')] %}

{{ max( 0, (used + bat_in) - (solar_in + bat_out)) }}

Now that I have these 2 sensors I can create the power flow card. custom:power-flow-card is a HACS lovelace card, which can be downloaded from https://github.com/ulic75/power-flow-card. A newer version and more advanced plus-version is available, but I did not try that yet.

type: custom:power-flow-card
kw_decimals: 3
watt_threshold: 999
clickable_entities: true
entities:
  battery:
    state_of_charge: sensor.battery_sim_diy_100k
    consumption: sensor.battery_sim_diy_100k_current_discharging_rate
    production: sensor.battery_sim_diy_100k_current_charging_rate
  grid:
    consumption: >-
      sensor.battery_sim_diy_100k_simulated_sensor_electricity_meter_current_consumption
    production: >-
      sensor.battery_sim_diy_100k_simulated_sensor_electricity_meter_current_production
  solar: sensor.envoy_121831009724_current_power_production

Which results in this card on my dashboard:
image

Hope anyone finds this interesting.

oh, and while I’m at it. I also want to share how I implemented my strategy for charging and discharging my battery for “optimal” savings on my energy bill whilst on a dynamic contract with Tibber. The aim of the strategy is to use the battery to save on my energy bill and doing so see if the costs of a battery can be earned back. Any energy savings and net-congestion resolving achieved are nice bonusses, but not my primary goal.

I think that for me to save money, I should charge the battery when prices are low, and discharge when the prices are high. Since with Tibber I get paid exactly as much for my energy delivered as I pay for energy taken from the grid, it doesn’t matter -towards my energy bill goal at least- if or how much my solar panels are pushing out: at any time if I charge the battery from the grid, I pay exactly as much as I lose from solar energy not being delivered onto the net. i.e. I do not need to use the current solar production in my decisions whether to charge or discharge. Only the current price is important in that decision.

The Tibber integration exposes the current price for both energy consumed and produced as a single sensor, and this gets updated once every hour. The price includes all taxes, so this can easily be used to switch off my solar panels when the price goes below zero, and back on once it goes above zero again; this is however a story for another day. The Tibber integration also provides on this sensor an attribute ‘price level’. This has values ranging from “VERY_EXPENSIVE” through “EXPENSIVE”, “NORMAL”, “CHEAP” to “VERY_CHEAP”. I couldn’t be much bothered at exactly which tariff the level changes, but I considered it to be a nice starting point to control the switches on my virtual battery. I decided to use this level as follows:

  • “VERY EXPENSIVE” : enable ‘Force discharge’
  • “EXPENSIVE” : enable ‘Discharge only’
  • “NORMAL” : default behavior (depending on excess solar power)
  • “CHEAP” : enable ‘Charge only’
  • “VERY CHEAP” : enable ‘Force Charge’

I created the below automation that implements this strategy. Further optimisations could be achieved by taking into account a prediction on how long it will take to fill the battery to 100%; i.e. there could be more favorable times for charging/discharging the battery, based on the time it takes to reach 100 and 0% SOC (state-of-charge) and the future prices known up to 24 hours ahead. This script does not do any such calculations, it just charges when price is low, discharges when the price is high, and speeds things up as fast as my battery can go when the price is very high or very low.

Please let me know what you think of it…

alias: "Battery sim: DIY 100K"
description: ""
trigger:
  - platform: homeassistant
    event: start
  - platform: homeassistant
    event: shutdown
  - alias: When automations are reloaded
    platform: event
    event_type: automation_reloaded
  - platform: state
    entity_id:
      - sensor.rozemaatjes_electricity_price
    attribute: price_level
condition:
  - condition: template
    value_template: >
      {% if is_state_attr('sensor.rozemaatjes_electricity_price', 'price_level',
      'VERY_EXPENSIVE') %}
        {{ not (is_state('switch.battery_sim_diy_100k_force_discharge', 'on')
          and is_state('switch.battery_sim_diy_100k_discharge_only', 'off')
          and is_state('switch.battery_sim_diy_100k_charge_only', 'off')
          and is_state('switch.battery_sim_diy_100k_force_charge', 'off'))
        }}
      {% elif is_state_attr('sensor.rozemaatjes_electricity_price',
      'price_level', 'EXPENSIVE') %}
        {{ not(is_state('switch.battery_sim_diy_100k_force_discharge', 'off') 
          and is_state('switch.battery_sim_diy_100k_discharge_only', 'on') 
          and is_state('switch.battery_sim_diy_100k_charge_only', 'off')
          and is_state('switch.battery_sim_diy_100k_force_charge', 'off'))
        }}
      {% elif is_state_attr('sensor.rozemaatjes_electricity_price',
      'price_level', 'CHEAP') %}
        {{ not(is_state('switch.battery_sim_diy_100k_force_discharge', 'off') 
          and is_state('switch.battery_sim_diy_100k_discharge_only', 'off') 
          and is_state('switch.battery_sim_diy_100k_charge_only', 'on')
          and is_state('switch.battery_sim_diy_100k_force_charge', 'off'))
        }}
      {% elif is_state_attr('sensor.rozemaatjes_electricity_price',
      'price_level', 'VERY_CHEAP') %}
        {{ not(is_state('switch.battery_sim_diy_100k_force_discharge', 'off') 
          and is_state('switch.battery_sim_diy_100k_discharge_only', 'off') 
          and is_state('switch.battery_sim_diy_100k_charge_only', 'off') 
          and is_state('switch.battery_sim_diy_100k_force_charge', 'on'))
        }}
      {% else %}
        {{ not(is_state('switch.battery_sim_diy_100k_force_discharge', 'off')
          and is_state('switch.battery_sim_diy_100k_discharge_only', 'off') 
          and is_state('switch.battery_sim_diy_100k_charge_only', 'off') 
          and is_state('switch.battery_sim_diy_100k_force_charge', 'off'))
        }}
      {% endif %}
action:
  - metadata: {}
    data: {}
    target:
      entity_id: switch.battery_sim_diy_100k_force_discharge
    action: >-
      switch.turn_{{ 'on' if
      is_state_attr('sensor.rozemaatjes_electricity_price', 'price_level',
      'VERY_EXPENSIVE') else 'off' }}
  - metadata: {}
    data: {}
    target:
      entity_id: switch.battery_sim_diy_100k_discharge_only
    action: >-
      switch.turn_{{ 'on' if
      is_state_attr('sensor.rozemaatjes_electricity_price', 'price_level',
      'EXPENSIVE') else 'off' }}
  - metadata: {}
    data: {}
    target:
      entity_id: switch.battery_sim_diy_100k_charge_only
    action: >-
      switch.turn_{{ 'on' if
      is_state_attr('sensor.rozemaatjes_electricity_price', 'price_level',
      'CHEAP') else 'off' }}
  - metadata: {}
    data: {}
    target:
      entity_id: switch.battery_sim_diy_100k_force_charge
    action: >-
      switch.turn_{{ 'on' if
      is_state_attr('sensor.rozemaatjes_electricity_price', 'price_level',
      'VERY_CHEAP') else 'off' }}
mode: single

Thanks for bringing this to my attention! It looks cool! I added the battery I pre-ordered to my HA-setup. The battery in question is a 2.7 kWh 800 Watt charge/discharge battery sold by Dutch company HomeWizard Energy. They even have the “Works locally with Home Assistant”-badge and work together on their semi?-official integration. I also PR’d the battery as template to the repo.

1 Like

ah, understood. Super.

Also interested in this homewizard battery… Am I correct that this simulator will only simulate from the day you install it on HA? No history data?

I would love to run battery_sim for a while (say half a year) to see what I would benefit from a home battery. My main question would, however, be: will this simulation screw up my historic statistics if I remove it after half a year?

@NewOakley
Indeed only from installation.

@pergola.fabio
You don’t need to add it to the Energy Dashboard and it will still display the results.
Only need a separate card on the dashboard with the entities to get these. That can be added from the integration - device page.

1 Like

Curious about this as well, else I’ll set up a separate HA instance for some time to prevent it messes up the energy history.