Skip to content

Commit 784b4bc

Browse files
docs: document the merged tariff feature (#1024)
1 parent 318bf05 commit 784b4bc

2 files changed

Lines changed: 68 additions & 0 deletions

File tree

docs/tariffs.mdx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,40 @@ tariffs:
242242

243243
In diesem Beispiel gibt es eine fixe Einspeisevergütung von 7 ct/kWh, außer bei negativen Börsenpreisen.
244244

245+
### Mehrere Tarifquellen kombinieren {#merged}
246+
247+
Die `merged`-Tariffart ermöglicht es, zwei Tarifquellen zu kombinieren, um längere Vorhersagehorizonte zu nutzen.
248+
Dies ist besonders nützlich, wenn du Echtpreise von einer primären Quelle mit Prognosen von einer sekundären Quelle verbinden möchtest.
249+
250+
Die **primäre Quelle** sollte aktuelle und genaue Preise liefern (z. B. realisierte Börsenpreise), während die **sekundäre Quelle** Vorhersagen für Zeiträume bereitstellt, die von der primären Quelle nicht abgedeckt werden.
251+
252+
```yaml
253+
tariffs:
254+
grid:
255+
type: merged
256+
primary:
257+
type: template
258+
template: energy-charts-api
259+
bzn: DE-LU # Gebotszone
260+
charges: 0.22 # Aufschlag (EUR/kWh)
261+
tax: 0.19 # MwSt. (%)
262+
secondary:
263+
type: template
264+
template: epex-predictor
265+
region: DE
266+
charges: 0.22 # Aufschlag (EUR/kWh)
267+
tax: 0.19 # MwSt. (%)
268+
```
269+
270+
evcc kombiniert die Daten automatisch:
271+
Die Preise der primären Quelle werden verwendet, soweit verfügbar.
272+
Danach folgen die Prognosen der sekundären Quelle für zukünftige Zeiträume.
273+
274+
:::info
275+
Beide Tarifquellen müssen kompatible Typen sein.
276+
Beispielsweise können zwei Börsenpreis-Quellen, zwei Preis-APIs oder ein auf aktuellen Preisen basierendes Template mit einer Prognose-Quelle kombiniert werden.
277+
:::
278+
245279
<!-- AUTO-GENERATED CONTENT BELOW THIS LINE -->
246280

247281
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/tariff -->

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

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,40 @@ tariffs:
243243

244244
In this example, there is a fixed feed-in tariff of 7 ct/kWh, except in the case of negative day-ahead market prices.
245245

246+
### Combining Multiple Tariff Sources {#merged}
247+
248+
The `merged` tariff type allows you to combine two tariff sources to leverage longer forecast horizons.
249+
This is especially useful when you want to combine real prices from a primary source with forecasts from a secondary source.
250+
251+
The **primary source** should provide current and accurate prices (e.g., realized market prices), while the **secondary source** provides forecasts for time periods that the primary source does not cover.
252+
253+
```yaml
254+
tariffs:
255+
grid:
256+
type: merged
257+
primary:
258+
type: template
259+
template: energy-charts-api
260+
bzn: DE-LU # Bidding zone
261+
charges: 0.22 # Surcharge (EUR/kWh)
262+
tax: 0.19 # VAT (%)
263+
secondary:
264+
type: template
265+
template: epex-predictor
266+
region: DE
267+
charges: 0.22 # Surcharge (EUR/kWh)
268+
tax: 0.19 # VAT (%)
269+
```
270+
271+
evcc combines the data automatically:
272+
prices from the primary source are used as long as available.
273+
This is followed by forecasts from the secondary source for future time periods.
274+
275+
:::info
276+
Both tariff sources must be of compatible types.
277+
For example, you can combine two exchange price sources, two price APIs, or a template based on current prices with a forecast source.
278+
:::
279+
246280
<!-- AUTO-GENERATED CONTENT BELOW THIS LINE -->
247281

248282
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/tariff -->

0 commit comments

Comments
 (0)