-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
97 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
:::warning In Entwicklung | ||
Aktuell werden PV-Produktionsvorhersagen lediglich konsumiert und über [REST API](/docs/integrations/rest-api) (`/api/state`) und [MQTT API](/docs/integrations/mqtt-api) (`forecast/solar`) verfügbar gemacht. | ||
Wenn du Vorhersagedaten konfiguriert hast, wird dir die geschätzte Restproduktion für den aktuellen Tag im UI angezeigt. | ||
Zudem bekommst du eine Diagramm-Ansicht mit den Daten der nächsten Tage. | ||
|
||
Eine Anzeige der Daten im UI und Berücksichtigung in der [Ladeplanung](/docs/features/plans) folgt in zukünftigen Releases. | ||
::: | ||
Es ist auch möglich, **mehrere PV-Vorhersagen** zu kombinieren, um mehrere Dachflächen abzudecken. | ||
Die Werte werden dafür aufsummiert. | ||
Verwende dafür die folgende Syntax: | ||
|
||
```yaml | ||
tariffs: | ||
solar: | ||
- type: template | ||
template: solcast | ||
site: aaa # Fläche A | ||
token: xxxxx | ||
interval: 6h # erhöhtes Intervall, um das Solcast-Rate-Limit von 10 Aufrufen pro Tag nicht zu überschreiten | ||
- type: template | ||
template: solcast | ||
site: bbb # Fläche B | ||
token: xxxxx | ||
interval: 6h # erhöhtes Intervall, um das Solcast-Rate-Limit von 10 Aufrufen pro Tag nicht zu überschreiten | ||
``` | ||
Viele Anbieter haben ein Ratelimit. | ||
Daher musst du ggf. das Update-Intervall (`interval`) erhöhen. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 23 additions & 4 deletions
27
i18n/en/docusaurus-plugin-content-docs/current/tariffs/_pv_forecast.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
:::warning Under Development | ||
Currently, PV production forecasts are only consumed and made available via [REST API](/docs/integrations/rest-api) (`/api/state`) and [MQTT API](/docs/integrations/mqtt-api) (`forecast/solar`). | ||
If you configure forecast data, the estimated remaining production for the current day will be shown in the UI. | ||
You also get a forecast chart for the upcoming days. | ||
|
||
Display of the data in the UI and consideration in the [charging plan](/docs/features/plans) will follow in future releases. | ||
::: | ||
It is possible to combine **multiple solar forecasts** to cover multiple solar arrays. | ||
The values will be summed up for this purpose. | ||
Use the following syntax: | ||
|
||
```yaml | ||
tariffs: | ||
solar: | ||
- type: template | ||
template: solcast | ||
site: aaa # solar array A | ||
token: xxxxx | ||
interval: 6h # increased interval to not exceed solcast's 10req/day limit | ||
- type: template | ||
template: solcast | ||
site: bbb # solar array B | ||
token: xxxxx | ||
interval: 6h # increased interval to not exceed solcast's 10req/day limit | ||
``` | ||
Many providers have a rate limit. | ||
Therefore, you may need to increase the update `interval`. |