ZeqStressAnalysis
FEA stress analysis with R(t)-modulated loading. Von Mises, Tresca, principal stresses, safety factor computation. Linear and nonlinear static solvers.
| Endpoint | POST /api/materials/stress |
| Auth | api-key |
| Rate limit | 10/min |
| Category | materials |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
mesh | object | Yes | FE mesh with element types and nodes. |
material | object | Yes | { E_GPa, poisson, yieldStrength_MPa } |
loads | array | Yes | [{ nodeSet, force_N, direction }] |
constraints | array | Yes | [{ nodeSet, dof }] |
Returns
{ vonMises_MPa, displacement_mm, safetyFactor, criticalElement, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"mesh": {},
"material": {},
"loads": [],
"constraints": []
}' \
"https://zeqsdk.com/api/materials/stress"
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-stress-analysis.