Skip to content

Commit f4a2987

Browse files
authored
docs: seasonal tariffs (#794)
1 parent 956bbae commit f4a2987

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

docs/tariffs.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Unter `zones` kann eine Liste von Preiszonen definiert werden.
5757
Der Geltungszeitraum wird durch `days` und/oder `hours` definiert.
5858
Ist für einen Zeitpunkt keine Preiszone definiert, wird der Standardpreis verwendet.
5959

60+
### Konfiguration testen
61+
6062
Der Befehl `evcc tariff` zeigt die Preisliste der kommenden Stunden an.
6163

6264
```
@@ -73,6 +75,24 @@ From To Price/Cost
7375
...
7476
```
7577
78+
### Monatsabhängige Preise
79+
80+
Stromtarife mit monatsabhängigen Preisen können ebenfalls definiert werden.
81+
82+
```yaml
83+
tariffs:
84+
grid:
85+
type: fixed
86+
price: 0.2 # EUR/kWh
87+
zones:
88+
- month: May-Sep
89+
price: 0.1 # EUR/kWh
90+
- month: Jan,Nov,Dez
91+
price: 0.3 # EUR/kWh
92+
```
93+
94+
Du kannst die `month` Bedingung auch mit `days` und `hours` kombinieren.
95+
7696
## Börsenstrompreise
7797

7898
Du hast einen Vertrag der nach Börsenpreisen berechnet wird?

i18n/en/docusaurus-plugin-content-docs/current/tariffs.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ You can also define a list of price zones under `zones`.
6161
The validity period is defined by `days` and/or `hours`.
6262
If no price zone is defined for a time, the default price is used.
6363

64+
### Test Configuration
65+
6466
The `evcc tariff` command shows the price list for the upcoming hours.
6567

6668
```
@@ -77,6 +79,23 @@ From To Price/Cost
7779
...
7880
```
7981
82+
### Monthly Prices
83+
84+
Electricity tariffs with monthly prices can also be defined.
85+
86+
```yaml
87+
tariffs:
88+
grid:
89+
type: fixed
90+
price: 0.2
91+
zones:
92+
- month: May-Sep
93+
price: 0.1
94+
- month: Jan,Nov,Dez
95+
price: 0.3
96+
```
97+
98+
You can also combine the `month` condition with `days` and `hours`.
8099

81100
## Exchange Prices
82101

0 commit comments

Comments
 (0)