Inductance is the property of an electrical conductor that opposes a change in the current flowing through it by generating a self-induced electromotive force (EMF) via a magnetic field. When you run current through a wire, it creates a magnetic field around it; when that current changes, the collapsing or expanding field induces a voltage that actively fights the change. Measured in Henrys (H), inductance is the reason your power supply needs massive filter capacitors, why relay coils require flyback diodes, and why high-speed PCB traces ring with destructive voltage spikes if laid out poorly.
The Core Mechanism: How Inductors Oppose Current Change
To understand inductance without getting bogged down in Maxwell's equations, think of it as electrical inertia. Imagine a heavy mechanical flywheel connected to a motor. If you apply torque (voltage), the flywheel (current) doesn't instantly reach top speed; it ramps up gradually because its mass resists the change in velocity. If you suddenly cut the power, the flywheel doesn't just stop—it keeps spinning, violently driving the motor backward as a generator until friction dissipates the energy.
In an electronic circuit, an inductor is that flywheel. Current is the velocity, and voltage is the torque. When you close a switch to apply DC voltage across an inductor, the current ramps up linearly rather than instantly. When you open the switch, the inductor's collapsing magnetic field forces the current to keep flowing, generating whatever voltage is necessary to push that current across the newly opened gap. This is what inductance changes in a real circuit: it delays current rise and fall times, shifts phase angles in AC systems, and generates massive transient voltage spikes during DC switching events.
Standard Inductance Values and Component Selection
Inductors are not one-size-fits-all. The physical construction—specifically the core material and the air gap—dictates how much energy the component can store before the core saturates (loses its inductance and acts like a plain wire). Below is a reference table of real-world inductance ranges you will encounter on the bench.
| Application / Component | Typical Inductance | Core Material | Saturation Current (Isat) | Primary Function |
|---|---|---|---|---|
| RF Chokes & EMI Beads | 10 µH - 100 µH | Ferrite / Air | < 100 mA | Block high-frequency noise while passing DC |
| Buck Converter Output | 2.2 µH - 47 µH | Powdered Iron / Ferrite | 2A - 15A | Smooth high-frequency PWM into stable DC |
| Relay & Contactor Coils | 10 mH - 500 mH | Soft Iron / Laminated Steel | 50 mA - 500 mA | Generate magnetic force to actuate mechanical contacts |
| Audio Crossovers | 1 mH - 10 mH | Air / Laminated Iron | 1A - 5A | Filter low frequencies to woofers (low-pass) |
When selecting an inductor for a switching regulator (like a TI LM2596 or an MP2359), the inductance value sets your ripple current, but the saturation current (Isat) is the hard limit. If your peak current exceeds Isat, the core saturates, inductance drops to near zero, and your switching MOSFET will likely explode from overcurrent. Always select an inductor where Isat is at least 20% higher than your peak calculated current.
Worked Numeric Example: The Relay Flyback Spike
Let's look at exactly what happens when you interrupt an inductive load, a scenario that has destroyed countless microcontrollers and MOSFETs. The governing formula for the voltage generated by an inductor is:
V = L × (di / dt)
Where V is the induced voltage, L is inductance in Henrys, di is the change in current, and dt is the time it takes for that change to occur.
When the Arduino pulls the MOSFET gate LOW, the MOSFET turns off in roughly 1 microsecond (1 µs, or 0.000001 seconds). The current drops from 0.1 A to 0 A. Let's calculate the voltage spike:
- di = 0.1 A
- dt = 0.000001 s
- di/dt = 100,000 A/s
- V = 0.050 H × 100,000 A/s = 5,000 Volts
Most standard logic-level MOSFETs (like the IRLZ44N) have a maximum drain-source breakdown voltage (Vdss) of 55V. That 5kV spike will instantly avalanche the silicon, permanently shorting the MOSFET and potentially sending 12V straight back into your Arduino's GPIO pin, frying the microcontroller.
The Fix: You must provide a safe path for that stored magnetic energy to dissipate. We do this by placing a flyback diode in reverse-parallel across the relay coil. When the spike occurs, the diode becomes forward-biased, clamping the voltage to roughly 0.7V above the supply rail and allowing the current to recirculate until it decays. For small signal relays, a 1N4148 is perfect due to its fast switching speed. For higher-current contactors, use a UF4007 (Ultra-Fast recovery). Avoid the standard 1N4007 for high-frequency PWM circuits; its slow reverse recovery time will cause severe switching losses and EMI.
Where You Meet Inductance in Practice
Inductance isn't just a component you buy; it's a physical reality of any wire carrying current. Here is where it dictates your design choices:
Switch-Mode Power Supplies (SMPS)
In buck, boost, and buck-boost converters, the inductor is the primary energy transfer element. The switching IC chops the input voltage into high-frequency pulses (often 500 kHz to 2 MHz). The inductor resists the sudden current changes, effectively averaging the pulses into a smooth DC output. According to SparkFun's Inductor Tutorial, selecting the wrong inductance value here results in either excessive output ripple (too low) or a sluggish transient response where the power supply fails to react to sudden load changes (too high).
Parasitic Inductance in PCB Traces
Every piece of copper on your PCB has parasitic inductance. A 10mm length of 1mm-wide PCB trace carries roughly 10nH of inductance. In a low-speed LED circuit, this is irrelevant. But in a 3A buck converter switching at 1MHz, the di/dt is massive. That tiny 10nH of trace inductance in your 'hot loop' (the path from the input capacitor, through the MOSFET, to the inductor) will generate destructive voltage ringing on the switch node. This is why SMPS layout guides demand that the input capacitor be placed physically millimeters away from the switching IC—to minimize parasitic trace inductance.
Common Mode Chokes for EMI
If you look at a USB cable or an Ethernet jack, you will often see a small component with four windings. This is a common mode choke. It uses mutual inductance to block high-frequency noise (which travels in the same direction on both data lines) while allowing the differential data signal (which travels in opposite directions) to pass unimpeded because the magnetic fields cancel out.
Common Confusions: Inductance vs. Reactance vs. Capacitance
Makers frequently mix up three related but distinct concepts. As noted in All About Circuits, keeping these straight is vital for AC and filter design:
- Inductance (L, Henrys): The physical, fixed property of the component based on its geometry and core material. It does not change with frequency.
- Inductive Reactance (XL, Ohms): The actual AC 'resistance' the inductor presents at a specific frequency. Calculated as XL = 2πfL. A 10µH inductor has low reactance at 60Hz (blocking almost nothing) but massive reactance at 2.4GHz (acting like an open circuit to WiFi signals).
- Capacitance (C, Farads): The dual of inductance. While inductors oppose changes in current by storing energy in a magnetic field, capacitors oppose changes in voltage by storing energy in an electric field. In filter design, they are often used together to create LC resonant tanks.
Understanding inductance moves you from simply copying schematics to actually debugging why your MOSFETs are running hot, why your switching regulator is whining, and why your sensor readings are full of high-frequency noise. Treat every wire as a potential inductor, and your designs will be vastly more robust.






