Skip to content

Commit d099886

Browse files
authored
15min intervals for plugins (#904)
1 parent 972a0c0 commit d099886

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

docs/tariffs/_dynamischer_strompreis.mdx

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,19 @@ tariffs:
2929
3030
Das Plugin muss eine JSON-Struktur zurückgeben, welches eine Liste von Zeiträumen und Preisen enthält.
3131
Die Datumsfelder müssen in der Form `YYYY-MM-DDTHH:MM:SSZ` und der Preis in der korrekten Währungseinheit (bspw. EUR) angegeben werden.
32-
Siehe nachfolgendes Beispiel:
32+
33+
Seit Oktober 2025 veröffentlicht der EPEX Spotmarkt dynamische Stromtarife im 15-Minuten-Takt.
34+
evcc arbeitet intern mit 15-Minuten-Intervallen.
35+
Plugins können weiterhin Daten in stündlichen Intervallen liefern, diese werden automatisch in 15-Minuten-Intervalle umgerechnet.
36+
37+
Siehe nachfolgendes Beispiel mit 15-Minuten-Intervallen:
3338

3439
```js
3540
[
36-
{ "start": "2025-01-01T00:00:00Z", "end": "2025-01-01T01:00:00Z", "value": 25.0 },
37-
{ "start": "2025-01-01T01:00:00Z", "end": "2025-01-01T02:00:00Z", "value": 30.0 },
41+
{ "start": "2025-01-01T00:00:00Z", "end": "2025-01-01T00:15:00Z", "value": 25.0 },
42+
{ "start": "2025-01-01T00:15:00Z", "end": "2025-01-01T00:30:00Z", "value": 26.5 },
43+
{ "start": "2025-01-01T00:30:00Z", "end": "2025-01-01T00:45:00Z", "value": 24.8 },
44+
{ "start": "2025-01-01T00:45:00Z", "end": "2025-01-01T01:00:00Z", "value": 27.2 },
3845
]
3946
```
4047

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,19 @@ tariffs:
263263

264264
The plugin must return a JSON structure containing a list of time periods and prices.
265265
The date fields must be in the form `YYYY-MM-DDTHH:MM:SSZ` and the price in the correct currency unit (e.g. EUR).
266-
See the following example:
266+
267+
Since October 2025, EPEX Spot Market publishes dynamic electricity tariffs in 15-minute intervals.
268+
evcc works internally with 15-minute intervals.
269+
Plugins can still provide data in hourly intervals, which are automatically converted into 15-minute intervals.
270+
271+
See the following example with 15-minute intervals:
267272

268273
```js
269274
[
270-
{ "start": "2025-01-01T00:00:00Z", "end": "2025-01-01T01:00:00Z", "value": 25.0 },
271-
{ "start": "2025-01-01T01:00:00Z", "end": "2025-01-01T02:00:00Z", "value": 30.0 },
275+
{ "start": "2025-01-01T00:00:00Z", "end": "2025-01-01T00:15:00Z", "value": 25.0 },
276+
{ "start": "2025-01-01T00:15:00Z", "end": "2025-01-01T00:30:00Z", "value": 26.5 },
277+
{ "start": "2025-01-01T00:30:00Z", "end": "2025-01-01T00:45:00Z", "value": 24.8 },
278+
{ "start": "2025-01-01T00:45:00Z", "end": "2025-01-01T01:00:00Z", "value": 27.2 },
272279
]
273280
```
274281

0 commit comments

Comments
 (0)