ZeqWind — Wind Power Modeling
Wind power prediction using fluid dynamics operators. Weibull distribution + turbine power curve modulated by atmospheric operators.
| Endpoint | POST /api/energy/wind/predict |
| Auth | api-key |
| Rate limit | 30/min |
| Category | energy |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
windSpeedMs | number | Yes | Mean wind speed (m/s). |
hubHeightM | number | No | Turbine hub height. Default: 80. |
rotorDiameterM | number | No | Rotor diameter. Default: 120. |
Returns
{ powerOutputKw, capacityFactor, weibullK, weibullLambda, cutInSpeed, ratedSpeed }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"windSpeedMs": 0,
"hubHeightM": 80,
"rotorDiameterM": 120
}' \
"https://zeqsdk.com/api/energy/wind/predict"
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-wind.