2025-11-13 22:53:46 +01:00
## Feed In Tariff Prediction Configuration
<!-- pyml disable line-length -->
:::{table} feedintariff
:widths: 10 20 10 5 5 30
:align: left
| Name | Environment Variable | Type | Read-Only | Default | Description |
| ---- | -------------------- | ---- | --------- | ------- | ----------- |
2026-07-29 22:21:17 +02:00
| dvhubonline | `EOS_FEEDINTARIFF__DVHUBONLINE` | `FeedInTariffDvhubOnlineCommonSettings` | `rw` | `required` | DvhubOnline feed in tariff provider settings. |
2026-07-23 15:48:29 +02:00
| energycharts | `EOS_FEEDINTARIFF__ENERGYCHARTS` | `FeedInTariffEnergyChartsCommonSettings` | `rw` | `required` | EnergyCharts feed in tariff provider settings. |
2026-07-20 14:37:03 +02:00
| 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. |
2026-07-24 15:52:26 +02:00
| provider | `EOS_FEEDINTARIFF__PROVIDER` | `str | None` | `rw` | `None` | Feed in tariff provider id of provider to be used. |
2025-12-30 22:08:21 +01:00
| providers | | `list[str]` | `ro` | `N/A` | Available feed in tariff provider ids. |
2026-08-23 02:26:16 +02:00
| smard | `EOS_FEEDINTARIFF__SMARD` | `FeedInTariffSMARDCommonSettings` | `rw` | `required` | SMARD feed in tariff provider settings. |
2025-11-13 22:53:46 +01:00
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
2025-12-30 22:08:21 +01:00
**Example Input**
2025-11-13 22:53:46 +01:00
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
"provider" : "FeedInTariffFixed" ,
2026-07-20 14:37:03 +02:00
"feedintarifffixed" : {
2026-08-23 02:26:16 +02:00
"feed_in_tariff_amt_kwh" : {
"windows" : []
}
2026-07-20 14:37:03 +02:00
},
"feedintariffimport" : {
"import_file_path" : null ,
"import_json" : null
2026-07-23 15:48:29 +02:00
},
2026-07-29 22:21:17 +02:00
"dvhubonline" : {
"base_url" : "https://dvhub.online" ,
"zone" : "DE-LU"
},
2026-07-23 15:48:29 +02:00
"energycharts" : {
"bidding_zone" : "DE-LU"
2026-08-23 02:26:16 +02:00
},
"smard" : {}
2025-11-13 22:53:46 +01:00
}
}
```
<!-- pyml enable line-length -->
2025-12-30 22:08:21 +01:00
<!-- pyml disable no-emphasis-as-heading -->
**Example Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
"provider" : "FeedInTariffFixed" ,
2026-07-20 14:37:03 +02:00
"feedintarifffixed" : {
2026-08-23 02:26:16 +02:00
"feed_in_tariff_amt_kwh" : {
"windows" : []
}
2026-07-20 14:37:03 +02:00
},
"feedintariffimport" : {
"import_file_path" : null ,
"import_json" : null
2025-12-30 22:08:21 +01:00
},
2026-07-29 22:21:17 +02:00
"dvhubonline" : {
"base_url" : "https://dvhub.online" ,
"zone" : "DE-LU"
},
2026-07-23 15:48:29 +02:00
"energycharts" : {
"bidding_zone" : "DE-LU"
},
2026-08-23 02:26:16 +02:00
"smard" : {},
2025-12-30 22:08:21 +01:00
"providers" : [
2026-07-23 22:37:38 +02:00
"FeedInTariffAkkudoktor" ,
2026-07-29 22:21:17 +02:00
"FeedInTariffDvhubOnline" ,
2026-07-23 15:48:29 +02:00
"FeedInTariffEnergyCharts" ,
2025-12-30 22:08:21 +01:00
"FeedInTariffFixed" ,
2026-07-24 15:52:26 +02:00
"FeedInTariffImport" ,
2026-08-23 02:26:16 +02:00
"FeedInTariffSMARD" ,
2026-07-24 15:52:26 +02:00
"FeedInTariffTibber"
2025-12-30 22:08:21 +01:00
]
}
}
```
<!-- pyml enable line-length -->
2026-08-23 02:26:16 +02:00
### Settings for SMARD feed-in prices shared with ``elecprice.smard``
<!-- pyml disable line-length -->
:::{table} feedintariff::smard
:widths: 10 10 5 5 30
:align: left
| Name | Type | Read-Only | Default | Description |
| ---- | ---- | --------- | ------- | ----------- |
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
**Example Input/Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
"smard" : {}
}
}
```
<!-- pyml enable line-length -->
2025-11-13 22:53:46 +01:00
### Common settings for feed in tariff data import from file or JSON string
<!-- pyml disable line-length -->
2026-07-20 14:37:03 +02:00
:::{table} feedintariff::feedintariffimport
2025-11-13 22:53:46 +01:00
:widths: 10 10 5 5 30
:align: left
| Name | Type | Read-Only | Default | Description |
| ---- | ---- | --------- | ------- | ----------- |
2026-07-24 15:52:26 +02:00
| import_file_path | `str | pathlib.Path | None` | `rw` | `None` | Path to the file to import feed in tariff data from. |
| import_json | `str | None` | `rw` | `None` | JSON string, dictionary of feed in tariff forecast value lists. |
2025-11-13 22:53:46 +01:00
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
**Example Input/Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
2026-07-20 14:37:03 +02:00
"feedintariffimport" : {
"import_file_path" : null ,
"import_json" : "{\"fead_in_tariff_wh\": [0.000078, 0.000078, 0.000023]}"
2025-11-13 22:53:46 +01:00
}
}
}
```
<!-- pyml enable line-length -->
### Common settings for elecprice fixed price
<!-- pyml disable line-length -->
2026-07-20 14:37:03 +02:00
:::{table} feedintariff::feedintarifffixed
2025-11-13 22:53:46 +01:00
:widths: 10 10 5 5 30
:align: left
| Name | Type | Read-Only | Default | Description |
| ---- | ---- | --------- | ------- | ----------- |
2026-08-23 02:26:16 +02:00
| feed_in_tariff_amt_kwh | `ValueTimeWindowSequence` | `rw` | `required` | Sequence of time windows defining the electricity feed in tariff [amount/kWh]. If not provided, no fixed feed in tariff is applied. |
2025-11-13 22:53:46 +01:00
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
**Example Input/Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
2026-07-20 14:37:03 +02:00
"feedintarifffixed" : {
2026-08-23 02:26:16 +02:00
"feed_in_tariff_amt_kwh" : {
"windows" : [
{
"start_time" : "00:00:00.000000" ,
"duration" : "8 hours" ,
"day_of_week" : null ,
"date" : null ,
"locale" : null ,
"value" : 0.028
},
{
"start_time" : "08:00:00.000000" ,
"duration" : "16 hours" ,
"day_of_week" : null ,
"date" : null ,
"locale" : null ,
"value" : 0.034
}
]
}
2025-11-13 22:53:46 +01:00
}
}
}
```
<!-- pyml enable line-length -->
2026-07-23 15:48:29 +02:00
### Common settings for Energy-Charts feed-in tariff provider
<!-- pyml disable line-length -->
:::{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' |
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
**Example Input/Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
"energycharts" : {
"bidding_zone" : "DE-LU"
}
}
}
```
<!-- pyml enable line-length -->
2026-07-29 22:21:17 +02:00
### Common settings for the dvhub.online feed-in tariff provider
<!-- pyml disable line-length -->
:::{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. |
:::
<!-- pyml enable line-length -->
<!-- pyml disable no-emphasis-as-heading -->
**Example Input/Output**
<!-- pyml enable no-emphasis-as-heading -->
<!-- pyml disable line-length -->
```json
{
"feedintariff" : {
"dvhubonline" : {
"base_url" : "https://dvhub.online" ,
"zone" : "DE-LU"
}
}
}
```
<!-- pyml enable line-length -->