lc resonance
lc_resonanceCalculates the resonant frequency of an LC circuit, along with optional Q factor and bandwidth when series resistance is provided. The resonant frequency f0 = 1/(2pisqrt(L*C)) is where inductive and capacitive reactances cancel. Used for designing tank circuits, oscillators, bandpass filters, and antenna matching networks. If resistance R is given, computes quality factor Q = (1/R)*sqrt(L/C) and 3 dB bandwidth = f0/Q. Chain into impedance_match to design matching networks at the resonant frequency.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inductance_h | Yes | Inductance in henries (H). The inductive element of the LC circuit. | |
| capacitance_f | Yes | Capacitance in farads (F). The capacitive element of the LC circuit. | |
| resistance_ohm | No | Optional series resistance in ohms for Q factor and bandwidth calculation. Omit for ideal LC analysis. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q_factor | Yes | Quality factor Q = (1/R)*sqrt(L/C). Null if no resistance provided. | |
| bandwidth_hz | Yes | 3 dB bandwidth in hertz (f0/Q). Null if no resistance provided. | |
| angular_freq_rad | Yes | Angular resonant frequency in radians per second (omega_0 = 2*pi*f0). | |
| resonant_freq_hz | Yes | Resonant frequency in hertz. | |
| resonant_freq_mhz | Yes | Resonant frequency in megahertz for convenience. | |
| impedance_at_resonance_ohm | Yes | Impedance at resonance in ohms. Equals the series resistance R if provided; null if ideal (no R). |