The unit of self-inductance is the henry (H), defined as the inductance of a circuit in which a current change of one ampere per second induces an electromotive force of one volt. In practical terms, self-inductance is a circuit's inherent property to oppose any change in the current flowing through it. While resistance opposes the flow of current, inductance opposes the change in current. This fundamental behavior dictates how energy is stored in magnetic fields, how long it takes for a coil to energize, and why switching off a motor or relay generates destructive voltage spikes.

Bench Rule of Thumb: Because 1 Henry is a massive amount of inductance for most modern electronics, you will almost exclusively work with millihenrys (mH, $10^{-3}$), microhenrys (µH, $10^{-6}$), and nanohenrys (nH, $10^{-9}$).

The Henry Explained: Real Values and Component Spec Sheet

To understand the unit of self inductance in context, you need to see how henry values map to physical components and real-world applications. Inductance doesn't exist in a vacuum; it is always paired with parasitic resistance (DCR) and a core saturation limit. Below is a spec-sheet table of common inductor classes you will encounter on the bench.

Application Domain Typical Inductance Value Real-World Component Example DC Resistance (DCR) Saturation Current ($I_{sat}$)
RF Tuning / Matching 10 nH (0.00000001 H) Coilcraft 0402HP-10N 0.08 Ω 1.2 A
Switch-Mode Power Supply (Buck) 10 µH (0.00001 H) Würth Elektronik 74477420 0.045 Ω 2.5 A
Audio Crossover Networks 2.5 mH (0.0025 H) Dayton Audio 2.5mH Air Core 0.35 Ω N/A (Air core)
Mains EMI / Common Mode Filter 10 mH (0.01 H) Schaffner RN202-1-02 0.50 Ω 1.0 A
High-Voltage Fluorescent Ballast 2.0 H Magnetic Ballast Choke 25.0 Ω 0.4 A

Notice the inverse relationship between inductance and saturation current. A 10 µH buck converter choke can handle several amps before its ferrite core saturates (loses its magnetic permeability, effectively dropping the inductance to near zero). A 2.0 H mains ballast, despite its massive inductance, will saturate and overheat if pushed past a fraction of an amp. When selecting a component, the henry value is only half the equation; the $I_{sat}$ rating is what keeps your power supply from shorting out under heavy load.

Worked Numeric Example: Calculating Flyback Voltage

The most critical way self-inductance changes a real circuit is by generating a flyback voltage spike when current is interrupted. The governing formula for induced voltage is:

V = L × (ΔI / Δt)
Where V is induced voltage (Volts), L is inductance (Henrys), ΔI is the change in current (Amps), and Δt is the time interval of the change (Seconds).

Let's look at a scenario that bricks microcontrollers every day: driving a 12V relay directly from a transistor without a flyback diode.

  • Inductance (L): The relay coil measures 50 mH (0.050 H).
  • Steady-State Current (I): The coil draws 100 mA (0.1 A) when energized.
  • Switching Event: Your microcontroller turns off the MOSFET. The current drops from 0.1 A to 0 A. The MOSFET turns off incredibly fast, in roughly 10 microseconds (0.00001 s).

Plugging these into the formula:

V = 0.050 H × (0.1 A / 0.00001 s)
V = 0.050 × 10,000
V = 500 Volts

Even though you are switching a 12V relay, the self-inductance of the coil generates a 500V spike to force the current to keep flowing across the opening switch gap. This spike will instantly punch through the drain-source junction of your MOSFET or arc across mechanical switch contacts. This is exactly why we place a reverse-biased freewheeling diode (like a 1N4007) across inductive loads—to provide a safe path for the collapsing magnetic field to dissipate its stored energy.

Where You Meet Self-Inductance in Practice

You interact with the henry constantly in both power and signal electronics, even if you aren't explicitly calculating it.

  • Buck and Boost Converters: In an ESP32 or Arduino power delivery network, the switching regulator relies on a microhenry-range inductor to store energy during the switch's 'on' time and release it to the load during the 'off' time. The inductance value directly sets the ripple current and the converter's transient response speed.
  • Motor Chokes and VFDs: When wiring long cable runs to a 3-phase AC motor driven by a Variable Frequency Drive (VFD), the parasitic self-inductance of the cable interacts with the VFD's high-frequency PWM edges, causing reflected wave voltage spikes at the motor terminals. Installing dV/dt filter chokes (measured in millihenrys) at the VFD output smooths these edges.
  • EMI and Ferrite Beads: The ferrite bead you snap onto a USB cable or HDMI cord is essentially a lossy inductor. At high frequencies, its self-inductance (combined with core losses) presents a high impedance to RF noise while passing DC power unimpeded.
Safety & Code Caveat: When working with large inductive loads on mains voltage (like industrial contactor coils or large transformers), the stored magnetic energy is substantial. Always de-energize, lock out/tag out, and verify dead with a tested CAT III/IV multimeter before touching terminals. Discharging a high-henry inductor through a human body can be lethal.

Common Confusions: Clearing Up the Terminology

When reading datasheets or troubleshooting, it is easy to mix up related magnetic concepts. Here is what people commonly confuse with the unit of self-inductance:

Self-Inductance vs. Mutual Inductance

Self-inductance (measured in henrys) refers to a single coil opposing its own changing current. Mutual inductance (also measured in henrys) describes how the changing magnetic field of one coil induces a voltage in a neighboring coil. Transformers rely on mutual inductance; chokes and single-coil inductors rely on self-inductance.

Inductance vs. Impedance

Inductance (L, in Henrys) is a fixed physical property of the component based on its core material, number of turns, and geometry. Impedance (Z, in Ohms) is how much that inductor resists alternating current at a specific frequency. The relationship is $X_L = 2\pi fL$. A 10 µH inductor always has 10 µH of self-inductance, but its impedance is 0 Ω at DC, 6.28 Ω at 100 kHz, and 6,280 Ω at 100 MHz. As noted in excellent foundational resources like the All About Circuits AC theory guide, confusing the physical property (henrys) with the frequency-dependent resistance (ohms) is a primary cause of filter design failures.

The Mechanical Flywheel Analogy

If you need a mental model, think of an inductor as a mechanical flywheel. A flywheel's mass (inductance) resists changes in rotational speed (current). It takes time and torque (voltage) to spin it up, but once spinning, it takes significant braking force to stop it. Just remember that this analogy only applies to the inertia of the current, not the friction (which maps to the wire's DC resistance).

Frequently Asked Questions

Can self-inductance be negative?
No. Self-inductance is a physical property representing stored magnetic energy, and like mass, it cannot be negative. However, in AC circuit analysis, the reactance of an inductor is plotted on the positive imaginary axis (+jX_L), while capacitive reactance is plotted on the negative imaginary axis (-jX_C).

How do I measure the self-inductance of an unknown coil?
You cannot measure it accurately with a standard multimeter (which only reads DCR). You need an LCR meter. Set the LCR meter to measure inductance (L) in series mode (Ls) for low-impedance coils like power inductors, or parallel mode (Lp) for high-impedance RF chokes. For more on component testing, the SparkFun inductor tutorial provides excellent baseline testing procedures.

Does wire gauge affect the henry value?
Only indirectly. The inductance formula depends on the number of turns, coil diameter, and core permeability. Thicker wire (lower AWG) takes up more physical space, meaning you can fit fewer turns on a given core bobbin, which reduces the total inductance. However, thicker wire lowers the DCR and increases the thermal current limit.