## 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` | Feed in tariff provider id of provider to be used. | | providers | | `list[str]` | `ro` | `N/A` | Available feed in tariff provider ids. | | smard | `EOS_FEEDINTARIFF__SMARD` | `FeedInTariffSMARDCommonSettings` | `rw` | `required` | SMARD feed in tariff provider settings. | ::: **Example Input** ```json { "feedintariff": { "provider": "FeedInTariffFixed", "feedintarifffixed": { "feed_in_tariff_amt_kwh": { "windows": [] } }, "feedintariffimport": { "import_file_path": null, "import_json": null }, "dvhubonline": { "base_url": "https://dvhub.online", "zone": "DE-LU" }, "energycharts": { "bidding_zone": "DE-LU" }, "smard": {} } } ``` **Example Output** ```json { "feedintariff": { "provider": "FeedInTariffFixed", "feedintarifffixed": { "feed_in_tariff_amt_kwh": { "windows": [] } }, "feedintariffimport": { "import_file_path": null, "import_json": null }, "dvhubonline": { "base_url": "https://dvhub.online", "zone": "DE-LU" }, "energycharts": { "bidding_zone": "DE-LU" }, "smard": {}, "providers": [ "FeedInTariffAkkudoktor", "FeedInTariffDvhubOnline", "FeedInTariffEnergyCharts", "FeedInTariffFixed", "FeedInTariffImport", "FeedInTariffSMARD", "FeedInTariffTibber" ] } } ``` ### Settings for SMARD feed-in prices shared with ``elecprice.smard`` :::{table} feedintariff::smard :widths: 10 10 5 5 30 :align: left | Name | Type | Read-Only | Default | Description | | ---- | ---- | --------- | ------- | ----------- | ::: **Example Input/Output** ```json { "feedintariff": { "smard": {} } } ``` ### 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` | `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. | ::: **Example Input/Output** ```json { "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_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. | ::: **Example Input/Output** ```json { "feedintariff": { "feedintarifffixed": { "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 } ] } } } } ``` ### 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 | `` | `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** ```json { "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** ```json { "feedintariff": { "dvhubonline": { "base_url": "https://dvhub.online", "zone": "DE-LU" } } } ```