feat: add Akkudoktor feed-in provider (#1187)
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

The `FeedInTariffAkkudoktor` provider uses raw day-ahead market prices from
`https://api.akkudoktor.net/prices` as `feed_in_tariff_wh`. It does not add electricity import
charges or VAT. Published prices are extended to the configured prediction horizon with the same
seasonal ETS or median fallback used by the Akkudoktor electricity-price provider.

The Akkudoktor endpoint currently forwards hourly market prices from aWATTar. With a 15-minute
optimization interval, EOS holds each hourly price constant for its four quarter-hour slots. This
keeps the slot grid consistent but does not create genuine quarter-hour market prices.

Signed-off-by: Andreas Schmitz <akkudoktor.net>
Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
Bobby Noelte
2026-07-23 22:37:38 +02:00
committed by GitHub
parent ed61918fe0
commit 4c8a8e40f5
14 changed files with 327 additions and 31 deletions
@@ -36,6 +36,7 @@ from akkudoktoreos.prediction.elecpriceenergycharts import ElecPriceEnergyCharts
from akkudoktoreos.prediction.elecpricefixed import ElecPriceFixed
from akkudoktoreos.prediction.elecpriceimport import ElecPriceImport
from akkudoktoreos.prediction.elecpricetibber import ElecPriceTibber
from akkudoktoreos.prediction.feedintariffakkudoktor import FeedInTariffAkkudoktor
from akkudoktoreos.prediction.feedintariffenergycharts import FeedInTariffEnergyCharts
from akkudoktoreos.prediction.feedintarifffixed import FeedInTariffFixed
from akkudoktoreos.prediction.feedintariffimport import FeedInTariffImport
@@ -82,6 +83,7 @@ elecprice_energy_charts = ElecPriceEnergyCharts()
elecprice_fixed = ElecPriceFixed()
elecprice_import = ElecPriceImport()
elecprice_tibber = ElecPriceTibber()
feedintariff_akkudoktor = FeedInTariffAkkudoktor()
feedintariff_energy_charts = FeedInTariffEnergyCharts()
feedintariff_fixed = FeedInTariffFixed()
feedintariff_import = FeedInTariffImport()
@@ -108,6 +110,7 @@ def prediction_providers() -> list[
ElecPriceFixed,
ElecPriceImport,
ElecPriceTibber,
FeedInTariffAkkudoktor,
FeedInTariffEnergyCharts,
FeedInTariffFixed,
FeedInTariffImport,
@@ -137,6 +140,7 @@ def prediction_providers() -> list[
elecprice_fixed, \
elecprice_import, \
elecprice_tibber, \
feedintariff_akkudoktor, \
feedintariff_energy_charts, \
feedintariff_fixed, \
feedintariff_import, \
@@ -162,6 +166,7 @@ def prediction_providers() -> list[
elecprice_fixed,
elecprice_import,
elecprice_tibber,
feedintariff_akkudoktor,
feedintariff_energy_charts,
feedintariff_fixed,
feedintariff_import,
@@ -192,6 +197,7 @@ class Prediction(PredictionContainer):
ElecPriceFixed,
ElecPriceImport,
ElecPriceTibber,
FeedInTariffAkkudoktor,
FeedInTariffEnergyCharts,
FeedInTariffFixed,
FeedInTariffImport,