Feed In Tariff Prediction Configuration
Name |
Environment Variable |
Type |
Read-Only |
Default |
Description |
|---|---|---|---|---|---|
provider |
|
|
|
|
Feed in tariff provider id of provider to be used. |
provider_settings |
|
|
|
|
Provider settings |
providers |
|
|
|
Available feed in tariff provider ids. |
Example Input
{
"feedintariff": {
"provider": "FeedInTariffFixed",
"provider_settings": {
"FeedInTariffFixed": null,
"FeedInTariffImport": null
}
}
}
Example Output
{
"feedintariff": {
"provider": "FeedInTariffFixed",
"provider_settings": {
"FeedInTariffFixed": null,
"FeedInTariffImport": null
},
"providers": [
"FeedInTariffFixed",
"FeedInTariffImport"
]
}
}
Common settings for feed in tariff data import from file or JSON string
Name |
Type |
Read-Only |
Default |
Description |
|---|---|---|---|---|
import_file_path |
|
|
|
Path to the file to import feed in tariff data from. |
import_json |
|
|
|
JSON string, dictionary of feed in tariff forecast value lists. |
Example Input/Output
{
"feedintariff": {
"provider_settings": {
"FeedInTariffImport": {
"import_file_path": null,
"import_json": "{\"fead_in_tariff_wh\": [0.000078, 0.000078, 0.000023]}"
}
}
}
}
Common settings for elecprice fixed price
Name |
Type |
Read-Only |
Default |
Description |
|---|---|---|---|---|
feed_in_tariff_kwh |
|
|
|
Electricity price feed in tariff [€/kWH]. |
Example Input/Output
{
"feedintariff": {
"provider_settings": {
"FeedInTariffFixed": {
"feed_in_tariff_kwh": 0.078
}
}
}
}
Feed In Tariff Prediction Provider Configuration
Name |
Type |
Read-Only |
Default |
Description |
|---|---|---|---|---|
FeedInTariffFixed |
|
|
|
FeedInTariffFixed settings |
FeedInTariffImport |
|
|
|
FeedInTariffImport settings |
Example Input/Output
{
"feedintariff": {
"provider_settings": {
"FeedInTariffFixed": null,
"FeedInTariffImport": null
}
}
}