@@ -7,7 +7,6 @@ import TabItem from "@theme/TabItem";
7
7
import DeviceConfig from " /src/components/DeviceConfig" ;
8
8
import DeviceFeatures from " /src/components/DeviceFeatures" ;
9
9
10
-
11
10
# Tariffs & Forecasts
12
11
13
12
Optimize your charging by integrating electricity tariffs (` grid ` , ` feedin ` ) and forecasts (` co2 ` , ` solar ` ).
@@ -26,7 +25,6 @@ tariffs:
26
25
27
26
The simplest case is fixed values for grid consumption (` grid`) and feed-in (`feedin`).
28
27
29
-
30
28
` ` ` yaml
31
29
tariffs:
32
30
currency: EUR # (default EUR)
@@ -36,8 +34,6 @@ tariffs:
36
34
feedin:
37
35
type: fixed
38
36
price: 0.08 # EUR/kWh
39
- co2:
40
- ...
41
37
` ` `
42
38
43
39
# # Time-based Electricity Price
@@ -50,8 +46,8 @@ tariffs:
50
46
type: fixed
51
47
price: 0.294 # EUR/kWh (default)
52
48
zones:
53
- - days: Mon-Fri
54
- hours: 2-5
49
+ - days: Mon-Fri # Monday to including Friday
50
+ hours: 2-5 # 02:00 to 05:00
55
51
price: 0.2 # EUR/kWh
56
52
- days: Sat,Sun
57
53
price: 0.15 # EUR/kWh
@@ -87,15 +83,35 @@ Electricity tariffs with monthly prices can also be defined.
87
83
tariffs:
88
84
grid:
89
85
type: fixed
90
- price: 0.2
86
+ price: 0.2 # EUR/kWh
91
87
zones:
92
- - month : May-Sep
93
- price: 0.1
94
- - month : Jan,Nov,Dez
95
- price: 0.3
88
+ - months : May-Sep # May up to and including September
89
+ price: 0.1 # EUR/kWh
90
+ - months : Jan,Oct-Dec # October up to and including January
91
+ price: 0.3 # EUR/kWh
96
92
```
97
93
98
- You can also combine the ` month ` condition with ` days ` and ` hours ` .
94
+ You can also combine the ` months ` condition with ` days ` and ` hours ` .
95
+ The following is a more complex example to illustrate the possibilities of ` zones ` .
96
+
97
+ ``` yaml
98
+ tariffs :
99
+ currency : CHF
100
+ grid :
101
+ type : fixed
102
+ price : 0.35 # CHF/kWh; winter high tariff
103
+ zones :
104
+ - months : Apr-Sep # summer low tariff
105
+ hours : 11-15
106
+ price : 0.2 # CHF/kWh
107
+ - months : Apr-Sep # summer high tariff
108
+ hours : 0-11,15-0
109
+ price : 0.3 # CHF/kWh
110
+ - months : Jan-Mar,Oct-Dec # winter low tariff (at weekends from October to March inclusive)
111
+ days : Sa,So
112
+ hours : 22-0,0-6 # 22:00 to 06:00; note: 22-6 is not possible, as 00:00 is passed over
113
+ price : 0.25 # CHF/kWh
114
+ ` ` `
99
115
100
116
## Exchange Prices
101
117
0 commit comments