Academy/Program Design & Controls/Control Types and Dispatch Strategies
Program Design & Controls

Control Types and Dispatch Strategies

Use this lesson to move from generic dispatch language into the control patterns your program, telemetry stack, and participating devices must actually support.

Intermediate11 minProgram Design & Controls

Common control types

Demand response programs use a mix of control styles depending on the asset, customer relationship, and operational objective. The most common patterns include simple shed commands, setpoint adjustments, schedule-based charge or discharge control, export limitation, and autonomous target-following where the device interprets higher-level intent locally.

Control typeTypical useValidation concern
Binary shed / restoreSimple curtailment of a load or processDid the resource change state at the requested time and recover correctly?
Setpoint adjustmentThermostats, HVAC, storage operating windowsWas the requested setpoint applied and reflected in resulting telemetry?
Power limit / charge rateEV charging and battery dispatchDid the device respect the requested cap over the full event window?
Schedule windowFlexible shifting, precharge, pre-cool, staged dispatchWere timing boundaries honored consistently?
Autonomous target-followingSites or aggregators that optimize locallyCan the local strategy still prove delivered performance transparently?

Why control type changes telemetry expectations

A binary load shed program can sometimes be validated with coarse state and interval power data. A setpoint-based or schedule-based program usually needs richer telemetry and better timing fidelity. That means the control pattern should influence what telemetry you require, how you evaluate delivery, and what disputes you should expect during settlement review.

Control strategy is also a customer-experience decision

Engineering teams sometimes treat controls as purely technical. In reality, control type is also a trust and program-adoption decision. Residential customers may tolerate thermostat offsets differently from direct appliance interruption. C&I operators may prefer explicit schedules and opt-out windows over black-box autonomous control. Good program design recognizes this early instead of discovering it during rollout.

Key takeaway: Control type is not just a protocol field. It shapes telemetry design, event validation, customer experience, and whether the program will be operationally sustainable.