DER Dispatch
Work in Progress
This documentation represents early work in progress and is expected to change.
DER Dispatch DTOs are used by the following service API:
- DER Dispatch Service API - Uses these configuration structures for managing DER device dispatch operations
Table of Contents
Dispatch Configuration
{
"Algorithm": int, //enum
"SegmentType": int, //enum
"Enabled": bool,
"Rules": [
{
"Id": guid,
"Devices": [
{
"Type": int, //enum
"IncreaseP": true,
"DecreaseP": false,
"Multiple": "Equal"
}
]
}
]
}
Algorithm Enum
| Value | Description |
|---|---|
| 0 | Solar Smoothing |
| 1 | Peak Shaving |
| 2 | Peak Shifting |
| 3 | Volt/Var |
| 4 | CVR |
| 5 | Frequency |
SegmentType Enum
| Value | Description |
|---|---|
| 0 | Substation |
| 1 | Feeder |
| 2 | Region |
| 3 | Section |
Type Enum (Device Type)
| Value | Description |
|---|---|
| 0 | ESS |
| 1 | PV |
| 2 | Generator |
| 3 | Controllable Load |