File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
i18n/en/docusaurus-plugin-content-docs/current Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,23 @@ Der Netzgebührenanteil (`gridfee`) unterscheidet sich im Winter (Oktober - Mär
225225Zudem gibt es Normal- (6-17 Uhr, 21-24 Uhr), Niedrig- (0-6 Uhr) und Hochlastzonen (17-21 Uhr).
226226In diesem Beispiel betragen die Gebühren im Juni um 4 Uhr 0,1467 DKK/kWh.
227227
228+ # ### Beispiel: Keine Einspeisevergütung bei negativen Strompreisen
229+
230+ Für deutsche PV-Anlagen, die [seit dem 25. Februar 2025 in Betrieb genommen wurde](https://www.clearingstelle-eeg-kwkg.de/haeufige-rechtsfrage/264),
231+ wird die Einspeisevergütung nicht gezahlt, falls der Börsenstrompreis negativ ist.
232+ Mit der folgenden Formel wird dies in der Berechnung des Preises berücksichtigt.
233+
234+ ` ` ` yaml
235+ tariffs:
236+ feedin:
237+ type: template
238+ template: energy-charts-api
239+ bzn: DE-LU
240+ formula: factor := 1.0; if price < 0 { factor = 0.0 }; factor * 0.07
241+ ` ` `
242+
243+ In diesem Beispiel gibt es eine fixe Einspeisevergütung von 7 ct/kWh, außer bei negativen Börsenpreisen.
244+
228245<!-- AUTO-GENERATED CONTENT BELOW THIS LINE -->
229246
230247<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/tariff -->
Original file line number Diff line number Diff line change @@ -226,6 +226,23 @@ The grid fee (`gridfee`) differs in winter (October - March) and summer (April -
226226Additionally there is a high- (6am-5pm, 9-12pm), low- (0-6am) and peak-load (5pm-9pm) zone.
227227In this example the grid fee is 0.1467 DKK/kWh at 4am in June.
228228
229+ # ### Example: No feed-in tariff in case of negative day-ahead market prices
230+
231+ For German PV systems [commissioned since February 25, 2025](https://www.clearingstelle-eeg-kwkg.de/haeufige-rechtsfrage/264),
232+ the feed-in tariff is not paid if the day-ahead market price is negative.
233+ This is taken into account in the price calculation using the following formula.
234+
235+ ` ` ` yaml
236+ tariffs:
237+ feedin:
238+ type: template
239+ template: energy-charts-api
240+ bzn: DE-LU
241+ formula: factor := 1.0; if price < 0 { factor = 0.0 }; factor * 0.07
242+ ` ` `
243+
244+ In this example, there is a fixed feed-in tariff of 7 ct/kWh, except in the case of negative day-ahead market prices.
245+
229246<!-- AUTO-GENERATED CONTENT BELOW THIS LINE -->
230247
231248<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/tariff -->
You can’t perform that action at this time.
0 commit comments