If you need the direct answer: the reactance formula for inductor components is XL = 2πfL. It tells you how much opposition an inductor presents to alternating current at a specific frequency. On the bench, realistic magnitudes range from fractions of an ohm in high-frequency RF tanks to hundreds of ohms in 60Hz mains chokes. If your calculation yields mega-ohms for a small signal inductor, you have fallen victim to a unit-prefix trap.

Understanding this formula is mandatory for designing filters, sizing chokes, and tuning resonant circuits. Below, we break down the derivation, track units through two distinct solved problems, and examine a real-world scenario where relying solely on this formula resulted in a melted component.

The Core Reactance Formula for Inductor Components

The formula originates from Faraday’s Law of Induction. When a sinusoidal current i(t) = Ipeaksin(2πft) flows through an inductor, the voltage across it is defined by v(t) = L(di/dt). Taking the derivative yields a cosine wave, and the ratio of the peak voltage to the peak current gives us the magnitude of the opposition, which we call inductive reactance.

XL = 2 π f L

Every variable in this equation carries strict dimensional requirements. According to All About Circuits, mixing up base units is the most common reason hobbyists and junior engineers miscalculate filter cutoff frequencies.

Symbol Parameter Required SI Unit Typical Bench Range
XL Inductive Reactance Ohms (Ω) 0.1Ω to 10kΩ
Angular velocity constant Dimensionless (radians/cycle) ≈ 6.283185
f Frequency Hertz (Hz) 50Hz to 100MHz
L Inductance Henries (H) 1μH to 10H

Rearranged Forms and Fatal Unit Traps

On the bench, you rarely solve for XL in isolation. More often, you know the reactance you need and must find the required inductance or the operating frequency. Here are the rearranged forms:

  • Solving for Inductance: L = XL / (2πf)
  • Solving for Frequency: f = XL / (2πL)

Which Unit Mistakes Break the Formula?

The formula demands base SI units (Hertz and Henries). Component datasheets almost never use base units. They use milli (10-3), micro (10-6), and nano (10-9).

⚠ The Multiplier Trap: If you plug 4.7μH into the formula as 4.7 instead of 0.0000047, your calculated reactance will be one million times too large. Conversely, if you input 14.1 MHz as 14.1 instead of 14,100,000, your result will be a million times too small. Always convert prefixes to base scientific notation before multiplying.

Worked Problem 1: 60Hz Mains Filter Choke

Scenario: You are building a passive EMI filter for a 120V AC, 60Hz mains supply. You need a choke that limits the 60Hz fundamental current to roughly 2A, while allowing higher-frequency noise to be shunted by parallel capacitors. You have a heavy iron-core inductor rated at 150mH on your shelf. Is it suitable?

Step 1: Identify and convert variables to base units.

  • f = 60 Hz (already in base units)
  • L = 150 mH = 150 × 10-3 H = 0.150 H

Step 2: Apply the formula.

  • XL = 2 × π × 60 × 0.150
  • XL = 376.99 × 0.150
  • XL = 56.55 Ω

Step 3: Verify against the circuit requirements.

Using Ohm’s Law (I = V / XL), the current limited by this reactance at 120V is 120 / 56.55 = 2.12 A. This perfectly matches our ~2A target. The iron core provides high inductance at low frequencies, yielding a realistic mains-level reactance magnitude.

Worked Problem 2: 20-Meter RF Tank Circuit

Scenario: You are designing an impedance matching network for a 14.1 MHz (20-meter ham band) antenna. The matching network requires an inductive reactance of exactly 45Ω to cancel out the capacitive reactance of the antenna feedpoint. What inductance value do you need to order?

Step 1: Rearrange the formula to solve for L.

  • L = XL / (2πf)

Step 2: Identify and convert variables.

  • XL = 45 Ω
  • f = 14.1 MHz = 14.1 × 106 Hz = 14,100,000 Hz

Step 3: Execute the math with unit tracking.

  • L = 45 / (2 × 3.14159 × 14,100,000)
  • L = 45 / 88,592,912
  • L = 5.079 × 10-7 H

Step 4: Convert back to standard component prefixes.

  • 5.079 × 10-7 H = 507.9 × 10-9 H
  • L ≈ 508 nH (or 0.508 μH)

At RF frequencies, realistic inductance values drop into the nano-Henry range, and air-core or powdered-iron components are used to avoid core losses.

Real-World Scenario: The Melted Buck Converter Inductor

Formulas on paper do not account for physical limitations. Here is a teardown of a common bench failure involving modern wide-bandgap power supplies.

The Setup

An engineer was designing a 12V-to-5V, 3A buck converter switching at 500 kHz using a GaN FET. To limit the inductor ripple current to 30% (0.9A peak-to-peak), the required inductance was calculated to be roughly 15μH. The engineer selected a cheap, unshielded 15μH drum-core inductor from a bulk kit.

The Numbers

Before powering on, the engineer calculated the reactance at the switching frequency to ensure it was sufficiently high:

  • XL = 2 × π × 500,000 Hz × 0.000015 H
  • XL = 47.12 Ω

Seeing 47Ω of impedance, the engineer assumed the component was robust enough to handle the circuit.

The Outcome

Upon applying the 12V input and a 3A load, the inductor emitted a high-pitched whine, the case temperature spiked past 140°C, and the high-side GaN MOSFET shorted out, destroying the PCB trace.

What Went Wrong

The reactance formula for an inductor only describes the AC impedance to the switching ripple. It completely ignores the DC load current. The cheap 15μH inductor had a Saturation Current (Isat) rating of only 1.5A. When the 3A DC load passed through it, the magnetic core saturated.

When a core saturates, its permeability drops to that of air, and the actual inductance (L) collapses from 15μH down to perhaps 0.5μH. Consequently, XL collapsed from 47Ω to 1.5Ω. The inductor effectively became a piece of wire, allowing massive current spikes to flow directly from the 12V rail through the MOSFET to ground during the on-cycle. As noted in Coilcraft's technical documentation, you must always verify both the thermal current rating (Irms) and the saturation current (Isat) independently of the reactance calculation.

When the Formula Applies (and When It Fails)

The equation XL = 2πfL is a powerful tool, but it relies on strict physical assumptions. Knowing its boundaries prevents catastrophic design errors.

Assumptions Built into the Formula

  1. Steady-State Sinusoidal AC: The formula assumes a pure sine wave. If you are driving the inductor with a square wave (like a PWM motor drive or a switching power supply), the square wave contains odd harmonics (3f, 5f, 7f). The reactance at the 3rd harmonic is three times higher than at the fundamental frequency. You must use Fourier analysis to determine the true impedance profile.
  2. Linear Magnetic Core: The formula assumes L is a constant. As demonstrated in the buck converter scenario, if the DC bias current pushes the core into saturation, L becomes a non-linear variable, and the formula yields dangerously optimistic results.
  3. Negligible Parasitic Capacitance: Every physical inductor has parasitic parallel capacitance between its wire windings. This creates a parallel LC tank.

The Self-Resonant Frequency (SRF) Limit

As frequency increases, XL increases linearly. However, the capacitive reactance (XC) of the parasitic winding capacitance decreases. At a specific point called the Self-Resonant Frequency (SRF), XL and XC cancel out, and the component looks like a pure resistor (its DCR).

Above the SRF, the component is no longer an inductor; it acts as a capacitor. If you use the formula XL = 2πfL to calculate the impedance of a 10μH inductor at 50 MHz, the math might tell you it has 3,141Ω of reactance. But if the inductor's SRF is 15 MHz, its actual impedance at 50 MHz will be capacitive and significantly lower. Always check the manufacturer's impedance vs. frequency graph (such as those provided by Electronics Tutorials and component vendors) to ensure your operating frequency is safely below the SRF.