Energy operators
10 operators in the energy category of the live registry. Compose them in a contract or call POST /api/zeq/compute — KO42 is always on, plus up to three more per call.
How it computes: dedicated closed-form solver solveENERGY — real equations over CODATA-2018 constants; where an operator needs a series/matrix/field a scalar cannot express, it refuses honestly. See the solvers.
| Operator | Description | Equation |
|---|---|---|
POWER_ELECTRICAL | Electrical power dissipation expressed as the product of voltage and current, or equivalently as current squared times resistance. | P = VI = I^2R = \frac{V^2}{R} |
POWER_FACTOR | Power factor defined as the cosine of the phase angle between voltage and current, measuring real power delivery efficiency in AC circuits. | PF = \cos(\phi) |
POWER_LOSS | Joule heating loss in transmission lines, quantifying resistive power dissipation as current squared times line resistance. | P_{loss} = I^2 R_{line} |
SOLAR_IRRADIANCE | Ground-level solar irradiance computed from extraterrestrial constant adjusted by the cosine of the solar zenith angle. | G = G_0 \times \cos(\theta_z) |
SOLAR_OPTIMIZE | Optimal solar panel tilt angle approximation based on geographic latitude with seasonal adjustment for maximum annual energy capture. | \theta_{opt} = \phi \pm 15° |
SOLAR_POWER | Photovoltaic power output from panel area, cell efficiency, incident irradiance, and system performance ratio. | P = A \times \eta \times G \times PR |
THERMO_CARNOT | Carnot efficiency establishing the theoretical maximum efficiency of any heat engine operating between two thermal reservoirs. | \eta_C = 1 - \frac{T_C}{T_H} |
THERMO_ENTROPY | Clausius entropy change defined as the integral of reversible heat transfer divided by temperature along a thermodynamic path. | \Delta S = \int \frac{dQ}{T} |
THERMO_HEAT_TRANSFER | Overall heat transfer rate through a surface expressed as the product of heat transfer coefficient, area, and temperature difference. | Q = UA\Delta T |
WIND_POWER | Wind turbine power extraction from kinetic energy flux through the rotor disc area, bounded by the Betz limit for power coefficient. | P = \frac{1}{2}\rho A v^3 C_p |
Compute one — a real call
curl -sS -X POST https://zeqsdk.com/api/zeq/compute \
-H "Authorization: Bearer $ZEQ_KEY" \
-H "Content-Type: application/json" \
-d '{"operators":["SOLAR_POWER"],"inputs":{"area":10,"irradiance":1000,"efficiency":0.2}}'
Returns 1600 W (P = A·η·G·PR, PR = 0.8) — with unit, uncertainty, the generated master equation, and a signed envelope you can verify.
See also
- The solvers — the coverage map and the ODE fallback
- The honesty contract — compute, ask, or refuse
- All operator categories