mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2026-07-31 14:16:11 +00:00
Bump Version / Bump Version Workflow (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
docker-build / platform-excludes (push) Has been cancelled
docker-build / build (push) Has been cancelled
docker-build / merge (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Run Pytest on Pull Request / test (push) Has been cancelled
Close stale pull requests/issues / Find Stale issues and PRs (push) Has been cancelled
Fetches GET /api/prices?start&end&zone (15-min slots, EUR/MWh) and stores the raw market price as feed_in_tariff_wh (EUR/Wh) — no import charges/VAT. Slots beyond the day-ahead horizon are left to the consumer's forward-fill (FeedInTariffImport behaviour). 5 unit tests + opt-in live smoke (EOS_DVHUB_ONLINE_LIVE=1, passing). Signed-off-by: Christin <info@bikinibottom.capital> Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
6.1 KiB
6.1 KiB
Feed In Tariff Prediction Configuration
:::{table} feedintariff :widths: 10 20 10 5 5 30 :align: left
| Name | Environment Variable | Type | Read-Only | Default | Description |
|---|---|---|---|---|---|
| dvhubonline | EOS_FEEDINTARIFF__DVHUBONLINE |
FeedInTariffDvhubOnlineCommonSettings |
rw |
required |
DvhubOnline feed in tariff provider settings. |
| energycharts | EOS_FEEDINTARIFF__ENERGYCHARTS |
FeedInTariffEnergyChartsCommonSettings |
rw |
required |
EnergyCharts feed in tariff provider settings. |
| feedintarifffixed | EOS_FEEDINTARIFF__FEEDINTARIFFFIXED |
FeedInTariffFixedCommonSettings |
rw |
required |
Fixed feed in tariff provider settings. |
| feedintariffimport | EOS_FEEDINTARIFF__FEEDINTARIFFIMPORT |
FeedInTariffImportCommonSettings |
rw |
required |
Feed in tarif import provider settings. |
| provider | EOS_FEEDINTARIFF__PROVIDER |
`str | None` | rw |
None |
| providers | list[str] |
ro |
N/A |
Available feed in tariff provider ids. | |
| ::: |
Example Input
{
"feedintariff": {
"provider": "FeedInTariffFixed",
"feedintarifffixed": {
"feed_in_tariff_kwh": null
},
"feedintariffimport": {
"import_file_path": null,
"import_json": null
},
"dvhubonline": {
"base_url": "https://dvhub.online",
"zone": "DE-LU"
},
"energycharts": {
"bidding_zone": "DE-LU"
}
}
}
Example Output
{
"feedintariff": {
"provider": "FeedInTariffFixed",
"feedintarifffixed": {
"feed_in_tariff_kwh": null
},
"feedintariffimport": {
"import_file_path": null,
"import_json": null
},
"dvhubonline": {
"base_url": "https://dvhub.online",
"zone": "DE-LU"
},
"energycharts": {
"bidding_zone": "DE-LU"
},
"providers": [
"FeedInTariffAkkudoktor",
"FeedInTariffDvhubOnline",
"FeedInTariffEnergyCharts",
"FeedInTariffFixed",
"FeedInTariffImport",
"FeedInTariffTibber"
]
}
}
Common settings for feed in tariff data import from file or JSON string
:::{table} feedintariff::feedintariffimport :widths: 10 10 5 5 30 :align: left
| Name | Type | Read-Only | Default | Description |
|---|---|---|---|---|
| import_file_path | `str | pathlib.Path | None` | rw |
| import_json | `str | None` | rw |
None |
| ::: |
Example Input/Output
{
"feedintariff": {
"feedintariffimport": {
"import_file_path": null,
"import_json": "{\"fead_in_tariff_wh\": [0.000078, 0.000078, 0.000023]}"
}
}
}
Common settings for elecprice fixed price
:::{table} feedintariff::feedintarifffixed :widths: 10 10 5 5 30 :align: left
| Name | Type | Read-Only | Default | Description |
|---|---|---|---|---|
| feed_in_tariff_kwh | `float | None` | rw |
None |
| ::: |
Example Input/Output
{
"feedintariff": {
"feedintarifffixed": {
"feed_in_tariff_kwh": 0.078
}
}
}
Common settings for Energy-Charts feed-in tariff provider
:::{table} feedintariff::energycharts :widths: 10 10 5 5 30 :align: left
| Name | Type | Read-Only | Default | Description |
|---|---|---|---|---|
| bidding_zone | <enum 'EnergyChartsBiddingZones'> |
rw |
DE-LU |
Bidding Zone: 'AT', 'BE', 'CH', 'CZ', 'DE-LU', 'DE-AT-LU', 'DK1', 'DK2', 'FR', 'HU', 'IT-NORTH', 'NL', 'NO2', 'PL', 'SE4' or 'SI' |
| ::: |
Example Input/Output
{
"feedintariff": {
"energycharts": {
"bidding_zone": "DE-LU"
}
}
}
Common settings for the dvhub.online feed-in tariff provider
:::{table} feedintariff::dvhubonline :widths: 10 10 5 5 30 :align: left
| Name | Type | Read-Only | Default | Description |
|---|---|---|---|---|
| base_url | str |
rw |
https://dvhub.online |
Base URL of the dvhub.online price API. |
| zone | str |
rw |
DE-LU |
Bidding zone passed to the dvhub.online price API. |
| ::: |
Example Input/Output
{
"feedintariff": {
"dvhubonline": {
"base_url": "https://dvhub.online",
"zone": "DE-LU"
}
}
}