Engineering operators
10 operators in the engineering category of the live registry. Each is a named formula you can compose inside a state contract or call directly through POST /api/zeq/compute. KO42 is always on; add up to three more per call (total ≤ 4), per the 7-step protocol.
| Operator | Description | Equation |
|---|---|---|
BEAM_DEFLECTION | Maximum deflection of a cantilever beam under a point load, derived from Euler-Bernoulli beam theory relating load, length, and flexural rigidity. | \delta = \frac{PL^3}{3EI} |
BEAM_MOMENT | Maximum bending moment at midspan of a simply supported beam under a central point load, equal to one quarter of force times span. | M = \frac{PL}{4} |
BEAM_SHEAR | Maximum shear force at the supports of a simply supported beam under a central point load, equal to half the applied force. | V = \frac{P}{2} |
BUCKLING_CHECK | Euler critical buckling load for slender columns, giving the axial force at which a column becomes elastically unstable under compression. | P_{cr} = \frac{\pi^2 EI}{(KL)^2} |
FEA_DISPLACEMENT | Global finite element equilibrium equation relating the assembled stiffness matrix and nodal displacement vector to the applied force vector. | [K]\{u\} = \{F\} |
FEA_STIFFNESS | Element stiffness matrix assembled by integrating the product of strain-displacement and constitutive matrices over the element volume. | [K] = \int_V [B]^T[D][B] dV |
MOMENT_INERTIA | Second moment of area computed by integrating the square of the distance from the neutral axis over the cross-section, governing bending resistance. | I = \int y^2 dA |
STRESS_ANALYSIS | Normal stress defined as applied force divided by cross-sectional area, the foundational relation of strength of materials. | \sigma = \frac{F}{A} |
STRESS_PRINCIPAL | Principal stress formula finding the maximum and minimum normal stresses on planes where shear stress vanishes in a 2D stress state. | \sigma_{1,2} = \frac{\sigma_x + \sigma_y}{2} \pm \sqrt{(\frac{\sigma_x - \sigma_y}{2})^2 + \tau_{xy}^2} |
STRESS_VON_MISES | Von Mises equivalent stress combining principal stresses into a single scalar for predicting yielding under multiaxial loading conditions. | \sigma_{vm} = \sqrt{\sigma_1^2 - \sigma_1\sigma_2 + \sigma_2^2} |
Compute with one of these
curl -sS -X POST https://zeqsdk.com/api/zeq/compute \
-H "Authorization: Bearer $ZEQ_KEY" \
-H "Content-Type: application/json" \
-d '{"operators":["BEAM_DEFLECTION"],"inputs":{}}'
The response carries the bare physics value, its unit and uncertainty, the generated master equation, and a signed envelope you can verify on any node.
See also
- The solvers — how an operator becomes a physical answer
- Operator selection — how a query picks operators
- All categories — the full reference index