{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.rlc_resonance/1.0.0/input.json",
  "title": "RLC resonance — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "series",
        "parallel"
      ],
      "description": "series = series RLC; parallel = ideal parallel RLC"
    },
    "L": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Inductance (H)"
    },
    "C": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Capacitance (F)"
    },
    "R": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Resistance (Ω)"
    }
  },
  "required": [
    "L",
    "C",
    "R"
  ],
  "description": "Compute ideal series or parallel RLC resonant frequency, Q, bandwidth, and reactance at resonance from L, C, and R. (calculation_version 1.0.0)"
}
