File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
i18n/en/docusaurus-plugin-content-docs/current Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ Unter `zones` kann eine Liste von Preiszonen definiert werden.
5757Der Geltungszeitraum wird durch `days` und/oder `hours` definiert.
5858Ist für einen Zeitpunkt keine Preiszone definiert, wird der Standardpreis verwendet.
5959
60+ # ## Konfiguration testen
61+
6062Der 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
7898Du hast einen Vertrag der nach Börsenpreisen berechnet wird?
Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ You can also define a list of price zones under `zones`.
6161The validity period is defined by `days` and/or `hours`.
6262If no price zone is defined for a time, the default price is used.
6363
64+ # ## Test Configuration
65+
6466The `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
You can’t perform that action at this time.
0 commit comments