Skip to main content

ZeqGrid — Power Grid Balancing

Power grid load balancing using R(t) modulation. Demand response synchronized to HulyaPulse — loads shift to phase troughs, generation peaks match consumption peaks.

EndpointPOST /api/energy/grid/balance
Authapi-key
Rate limit30/min
Categoryenergy

Parameters

NameTypeRequiredDescription
loadMwnumberYesCurrent grid load in megawatts.
generationMwnumberYesCurrent generation capacity.
renewablePctnumberNoRenewable energy percentage (0–100).

Returns

{ balanceState, R_t_modulation, shiftRecommendation, frequencyDeviation, stability }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"loadMw": 0,
"generationMw": 0,
"renewablePct": 0
}' \
"https://zeqsdk.com/api/energy/grid/balance"

This protocol is a named building block — one of the operations you compose inside a state contract. Call it directly with the request above, or invoke it from a contract that fires on your machine's clock. Browse the whole library at GET /api/protocols; fetch this one at GET /api/protocols/zeq-grid.