ZeqRadiation — Space Radiation
Space radiation exposure calculation using particle physics operators. GCR, SPE, and trapped radiation belt dose estimation for crew and electronics.
| Endpoint | POST /api/space/radiation/calculate |
| Auth | api-key |
| Rate limit | 20/min |
| Category | space |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
altitudeKm | number | Yes | Orbital altitude. |
inclination | number | No | Orbital inclination (degrees). |
shieldingGcm2 | number | No | Aluminum-equivalent shielding (g/cm²). |
missionDays | number | Yes | Mission duration in days. |
Returns
{ totalDoseMsv, gcrDose, speDose, trappedDose, annualLimit, shieldingEffectiveness }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"altitudeKm": 0,
"inclination": 28.5,
"shieldingGcm2": 10,
"missionDays": 0
}' \
"https://zeqsdk.com/api/space/radiation/calculate"
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-radiation.