HULYAS ODE Solver
Numerically integrates the full HULYAS master equation using RK4. Parses prompt for object/location/medium, applies operator weights.
| Endpoint | POST /api/framework/solve |
| Auth | none |
| Rate limit | 20/min |
| Category | compute |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Natural language experiment (e.g. 'Drop a feather on Mars in vacuum'). |
alpha | number | No | KO42.1 auto modulation. Default: 1.0 |
beta | number | No | KO42.2 manual modulation. Default: 0.0 |
koSettings | object | No | Operator ID → weight map. |
tMax | number | No | Simulation duration (0.1–30s). Default: 5.0 |
dt | number | No | Time step (0.001–0.1s). Default: 0.01 |
Returns
{ ckoId, errorPct, energy, tEval, solution, koSettings, mode, object, location, mass, masterEquationTerms }
Example
curl -sS -X POST \
-H "Content-Type: application/json" \
-d '{
"prompt": "<prompt>",
"alpha": 1,
"beta": 0,
"koSettings": {},
"tMax": 5,
"dt": 0.01
}' \
"https://zeqsdk.com/api/framework/solve"
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-solve.