Skip to content

Instantly share code, notes, and snippets.

@KristianOellegaard
Forked from JBoye/EDS Basic Template.yaml
Created October 26, 2022 13:14
Show Gist options
  • Save KristianOellegaard/42afd708b5025bbb95c7ae3105488bc4 to your computer and use it in GitHub Desktop.
Save KristianOellegaard/42afd708b5025bbb95c7ae3105488bc4 to your computer and use it in GitHub Desktop.
Energi Data Service Template for additional costs
{# Find lavlast, spidslast og evt. fortjeneste/tillæg på elspotpris.dk #}
{% set spidslast = 0.7791 %}
{% set lavlast = 0.2951 %}
{% set tillaeg = 0.2057 %}
{% set tariffer = [0.723, 0.00229, 0.061, 0.049] | sum %}
{% set spids = (now().month < 3 or now().month >= 10) and (now().hour >= 17 and now().hour <= 19) %}
{{tariffer + tillaeg + (spidslast if spids else lavlast)}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment