Catalog/elec-capacitance-network

Electrical

Series/parallel capacitance API

Computes total capacitance of N capacitors in series or parallel (the reciprocal rule is opposite to resistors, a common slip). Answers 'What is the total capacitance of these caps in series?', 'How do parallel capacitors add?'.

Price$0.02per request
MethodPOST
Route/v1/electrical/capacitance-network
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
electricalcapacitancecapacitorseriesparallelfaradnetworkcircuit
API URLhttps://x402.hexl.dev/v1/electrical/capacitance-network
Integration docs
Example request
{
  "capacitancesF": [
    0.000001,
    0.000002
  ],
  "mode": "series"
}
Example response
{
  "mode": "series",
  "count": 2,
  "capacitancesF": [
    0.000001,
    0.000002
  ],
  "totalF": 6.66666667e-7,
  "totalUF": 0.666666667,
  "formula": "1/C = 1/C1 + 1/C2 + ... (series)"
}
Input schema
{
  "type": "object",
  "required": [
    "capacitancesF",
    "mode"
  ],
  "properties": {
    "capacitancesF": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "examples": [
        [
          0.000001,
          0.000002
        ]
      ]
    },
    "mode": {
      "type": "string",
      "enum": [
        "series",
        "parallel"
      ],
      "examples": [
        "series"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}