Catalog/elec-inductor-energy

Electrical

Inductor stored energy API

Computes stored magnetic energy E = 1/2 L I^2 and flux linkage psi = L I for an inductor. Answers 'How much energy is stored in this inductor?', 'What is the flux linkage at this current?'.

Price$0.02per request
MethodPOST
Route/v1/electrical/inductor-energy
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
electricalinductorenergymagneticjoulesfluxcoilstorage
API URLhttps://x402.hexl.dev/v1/electrical/inductor-energy
Integration docs
Example request
{
  "inductanceH": 0.1,
  "currentA": 5
}
Example response
{
  "inductanceH": 0.1,
  "currentA": 5,
  "energyJ": 1.25,
  "energyMJ": 1250,
  "fluxLinkageWb": 0.5,
  "formula": "E = 0.5*L*I^2; psi = L*I"
}
Input schema
{
  "type": "object",
  "required": [
    "inductanceH",
    "currentA"
  ],
  "properties": {
    "inductanceH": {
      "type": "number",
      "examples": [
        0.1
      ]
    },
    "currentA": {
      "type": "number",
      "examples": [
        5
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}