🎓 Lesson 19
D5
Case Review: Brooklyn Microgrid Distribution-Aware Dispatch
It's a real-world project where local solar panels, batteries, and smart controls work together to manage electricity supply and demand within a neighborhood—like a mini power grid that can operate independently or with the main grid.
🎯 Learning Objectives
- ✓ Analyze distribution system constraints (voltage deviation, line loading) that govern DER dispatch limits
- ✓ Explain how distribution-aware dispatch differs from centralized generation dispatch using IEEE 1547-2018 and IEEE 2030.7 requirements
- ✓ Apply constraint-aware optimization logic to determine feasible dispatch setpoints for aggregated DERs given feeder topology and real-time SCADA data
- ✓ Design a basic dispatch hierarchy (local autonomy → peer-to-peer signaling → utility coordination) aligned with IEEE 2030.7 functional architecture
📖 Why This Matters
Modern distribution grids face unprecedented stress from rising DER penetration—solar inverters injecting power during midday, EVs charging at peak evening hours, and aging infrastructure struggling with bidirectional flows. The Brooklyn Microgrid isn’t just a pilot—it’s a field-tested blueprint showing how dispatch logic must evolve from 'generation-follows-load' to 'distributed-resource-coordination-with-constraints.' For mining/blasting engineers transitioning into energy systems roles, understanding this shift is critical: just as blast design must respect rock mass boundaries and geotechnical limits, DER dispatch must respect feeder ampacity, voltage regulation bands, and protection device coordination—failure in either domain causes system failure, not just inefficiency.
📘 Core Principles
Distribution-aware dispatch rests on three interdependent layers: (1) Physical layer awareness—real-time knowledge of feeder impedance, transformer ratings, voltage regulator positions, and protection device settings; (2) Information layer integration—time-synchronized phasor measurements (PMUs), smart meter data, and DER telemetry fed into a local edge controller; and (3) Decision layer logic—optimization that prioritizes constraint satisfaction (e.g., keep node voltage within ±5% per ANSI C84.1) before economic or environmental objectives. Unlike transmission-level economic dispatch (which assumes flat voltage and infinite inertia), distribution dispatch operates under strict spatial and temporal coupling: a 100 kW curtailment in one node may be insufficient to resolve overvoltage downstream if reactive power support isn’t simultaneously adjusted. The Brooklyn Microgrid implements this via a hierarchical control scheme: local inverters respond to voltage-VAR curves (IEEE 1547-2018 Mode 1), while the aggregator applies linearized AC optimal power flow (AC-OPF) approximations to compute feasible setpoints across all DERs—ensuring no branch exceeds 95% of its thermal limit and no bus voltage strays beyond ±3% of nominal.
📐 Constraint-Aware Dispatch Feasibility Check
Before dispatching aggregated DERs, engineers must verify that the proposed active/reactive power setpoint vector satisfies key distribution constraints. A foundational check uses the linearized sensitivity matrix (Jacobian) relating DER injections to voltage magnitude deviations. This enables rapid feasibility screening without full AC-OPF.
💡 Worked Example
Problem: Given: Base-case voltage at Node 12 = 1.025 pu (123 V on 120 V nominal); sensitivity ∂V₁₂/∂P₃ = +0.008 pu/kW (Node 3 is a solar DER); maximum allowable voltage = 1.05 pu (ANSI C84.1 upper limit). Current solar output = 45 kW. How much additional solar can be dispatched before violating voltage limit?
1.
Step 1: Compute allowable voltage headroom = 1.05 − 1.025 = 0.025 pu
2.
Step 2: Apply sensitivity: ΔP₃_max = ΔV₁₂ / (∂V₁₂/∂P₃) = 0.025 / 0.008 = 3.125 kW
3.
Step 3: Verify result against typical feeder hosting capacity: 3–5 kW per residential node aligns with NYISO’s 2022 DER Hosting Capacity Map for Zone J
Answer:
Only 3.1 kW additional solar can be dispatched at Node 3 without exceeding voltage limits—highlighting why blind scaling of DER output is unsafe.
🏗️ Real-World Application
During a July 2022 heatwave, Con Edison’s Red Hook feeder experienced >92% thermal loading due to air conditioning demand. Simultaneously, Brooklyn Microgrid’s 52 participating DERs—including 210 kW rooftop PV and 180 kWh battery storage—were dispatched by the Local Energy Marketplace (LEM) platform. Using real-time line flow telemetry from Itron AMI meters and substation RTUs, the aggregator reduced PV exports by 42 kW and activated 65 kW/130 kWh battery discharge—all while maintaining voltage at all 12 monitored nodes within ±2.3% of nominal and keeping feeder loading at 87%. Crucially, this dispatch respected existing protective relays: no recloser was tripped, unlike neighboring feeders where uncoordinated solar curtailment caused voltage collapse and relay misoperation. This demonstrated that distribution-aware dispatch isn’t theoretical—it prevents outages, defers infrastructure upgrades, and unlocks $1.2M/year in avoided T&D costs (per NYSERDA 2023 Impact Report).
🔧 Interactive Calculator
🔧 Open Distributed Energy Resource Aggregation Architecture Calculator📋 Case Connection
📋 CAISO Pilot: 500-MW Residential DER Aggregation Program
Heterogeneous DER mix (120k rooftop PV, 28k smart thermostats, 15k EVSE) with inconsistent comms, low observability, and...
📋 Texas ERCOT VPP: Industrial BESS + CHP + Smart Loads
Legacy CHP controllers lacked telemetry; BESS vendors used proprietary APIs; no common time-series data model across ass...
📋 NYISO Distribution-Aware Aggregation: Brooklyn Microgrid
Feeder thermal limits, reverse power flow risk, and NYISO’s dual-market (energy + distribution services) participation r...
📋 PJM Commercial & Industrial Aggregation: Multi-Tenant VPP Platform
Tenant isolation, multi-utility tariff mapping, real-time tariff switching, and PJM’s complex capacity market eligibilit...