2025-11-13 22:53:46 +01:00
|
|
|
## Energy Management Configuration
|
|
|
|
|
|
|
|
|
|
<!-- pyml disable line-length -->
|
|
|
|
|
:::{table} ems
|
|
|
|
|
:widths: 10 20 10 5 5 30
|
|
|
|
|
:align: left
|
|
|
|
|
|
|
|
|
|
| Name | Environment Variable | Type | Read-Only | Default | Description |
|
|
|
|
|
| ---- | -------------------- | ---- | --------- | ------- | ----------- |
|
2026-02-22 14:12:42 +01:00
|
|
|
| interval | `EOS_EMS__INTERVAL` | `float` | `rw` | `300.0` | Intervall between EOS energy management runs [seconds]. |
|
2026-03-13 15:48:43 +01:00
|
|
|
| mode | `EOS_EMS__MODE` | `<enum 'EnergyManagementMode'>` | `rw` | `required` | Energy management mode [DISABLED | OPTIMIZATION | PREDICTION]. |
|
2025-11-13 22:53:46 +01:00
|
|
|
| startup_delay | `EOS_EMS__STARTUP_DELAY` | `float` | `rw` | `5` | Startup delay in seconds for EOS energy management runs. |
|
|
|
|
|
:::
|
|
|
|
|
<!-- pyml enable line-length -->
|
|
|
|
|
|
|
|
|
|
<!-- pyml disable no-emphasis-as-heading -->
|
|
|
|
|
**Example Input/Output**
|
|
|
|
|
<!-- pyml enable no-emphasis-as-heading -->
|
|
|
|
|
|
|
|
|
|
<!-- pyml disable line-length -->
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"ems": {
|
|
|
|
|
"startup_delay": 5.0,
|
|
|
|
|
"interval": 300.0,
|
|
|
|
|
"mode": "OPTIMIZATION"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
<!-- pyml enable line-length -->
|