The self inductance of a coil is the property by which a changing current within the coil induces an electromotive force (EMF) that opposes that exact change in current. In a real circuit, this property dictates how fast current can ramp up or down, stores energy in a magnetic field, and generates potentially destructive voltage spikes when a circuit is suddenly broken.
The Physics and Formula Behind Self Inductance
When direct current flows through a wire, it generates a static magnetic field. When that current changes—either ramping up during turn-on or collapsing during turn-off—the magnetic field expands or contracts. According to Faraday's Law of Induction, this changing magnetic flux cuts across the coil's own windings, inducing a voltage. Lenz's Law dictates that this induced voltage will always oppose the change in current that created it.
Think of inductance as the electrical equivalent of a mechanical flywheel. A heavy flywheel resists changes in rotational speed; it takes significant torque to spin it up, and it will violently resist being stopped suddenly. Similarly, an inductor resists changes in current flow, requiring higher voltage to force current to rise quickly, and generating high voltage spikes to keep current flowing when a switch opens.
The theoretical self inductance ($L$) of an ideal, long solenoid coil is calculated using the following formula:
L = (μ × N² × A) / l
- L = Inductance in Henries (H)
- μ = Permeability of the core material (μ₀ × μᵣ), measured in Henrys per meter (H/m)
- N = Total number of wire turns
- A = Cross-sectional area of the coil in square meters (m²)
- l = Length of the coil in meters (m)
What People Commonly Confuse It With
On the bench, I frequently see hobbyists and students confuse self inductance with mutual inductance. Self inductance is a single coil interacting with its own magnetic field. Mutual inductance occurs when the magnetic field of one coil induces a voltage in a second, adjacent coil—the foundational principle of transformers. Additionally, beginners often confuse inductance (which stores energy in a magnetic field and returns it to the circuit) with resistance (which dissipates energy as heat). A coil of thick copper wire might have near-zero DC resistance but massive inductance.
Worked Numeric Example: Calculating Coil Inductance
Let's calculate the inductance of a specific air-core coil you might wind for an RF filter or a DIY switch-mode power supply. We will use real physical dimensions.
Given Parameters:
- Core: Air (Permeability of free space μ₀ = 4π × 10⁻⁷ H/m, relative permeability μᵣ = 1)
- Turns (N): 150
- Coil Diameter: 10 mm (Radius r = 0.005 m)
- Coil Length (l): 25 mm (0.025 m)
Step 1: Calculate Cross-Sectional Area (A)
A = π × r² = π × (0.005)² = 7.854 × 10⁻⁵ m²
Step 2: Apply the Formula
L = [ (4π × 10⁻⁷) × (150)² × (7.854 × 10⁻⁵) ] / 0.025
L = [ (1.2566 × 10⁻⁶) × 22,500 × (7.854 × 10⁻⁵) ] / 0.025
L = (2.220 × 10⁻⁶) / 0.025
L = 8.88 × 10⁻⁵ Henries = 88.8 μH
If we were to replace the air core with a ferrite core (e.g., Fair-Rite type 43 material with an initial μᵣ of roughly 800), the inductance would theoretically multiply by 800, pushing it to ~60 mH. However, as noted in electronics-tutorials.ws, ferrite cores saturate; once the magnetic domains are fully aligned, the effective permeability drops back toward 1, and the inductance collapses.
Where You Meet This in Practice
Understanding the self inductance of a coil isn't just academic; it dictates component selection and failure modes in everyday electrical and electronic work.
1. Relays, Contactors, and Flyback Diodes
The coil inside a mechanical relay or an industrial contactor is a massive inductor. When your microcontroller or transistor switches off the 12V or 24V DC supply, the current attempts to drop to zero instantly ($dt$ approaches zero). Because induced voltage is $V = L(di/dt)$, the collapsing magnetic field generates a voltage spike that can easily exceed 400V. I have seen this exact spike punch through the gate oxide of an IRF540N MOSFET, destroying it instantly. This is why a flyback diode (like a 1N4007) wired in reverse-bias across the coil is mandatory; it provides a safe recirculation path for the inductive current to dissipate.
2. Switch-Mode Power Supplies (Buck/Boost Converters)
In an ESP32 or Arduino project powered by a buck converter, the inductor is the primary energy transfer element. The self inductance of the coil determines the ripple current. If the inductance is too low, the ripple current is high, causing excessive heat in the output capacitors and poor voltage regulation. If the inductance is too high, the converter's transient response becomes sluggish, and the ESP32 may brownout when the WiFi radio suddenly transmits and draws a 300mA spike. As detailed in SparkFun's inductor guide, selecting the exact μH rating specified in the regulator's datasheet is non-negotiable.
3. AC Motor and Stepper Motor Windings
Every motor winding has self inductance. In stepper motors and BLDC (brushless DC) motors, this inductance limits the maximum usable RPM. At high step rates, the time between commutation pulses is so short that the coil's inductance prevents the current from reaching its target value before the next step occurs. This results in a severe drop in holding torque at high speeds. This is why high-speed CNC routers use high-voltage drivers (like the DM542); the higher supply voltage forces the current to ramp up faster against the coil's inductive reactance.
Frequently Asked Questions About Coil Inductance
How does the self inductance of a coil change if I double the number of turns?
It quadruples. Because the number of turns ($N$) is squared in the inductance formula, doubling the turns results in $2^2 = 4$ times the inductance. However, keep in mind that doubling the turns also doubles the DC resistance (DCR) of the wire, and if you are using a magnetic core, the increased amp-turns might push the core into magnetic saturation earlier.
Does the self inductance of a coil change with frequency?
The theoretical inductance ($L$) is a physical property based on geometry and core material, so it does not change with frequency. However, the inductive reactance ($X_L = 2\pi fL$), which is the opposition to AC current, increases linearly with frequency. Furthermore, at very high frequencies, the parasitic capacitance between adjacent wire turns creates a parallel resonant circuit. At this Self-Resonant Frequency (SRF), the coil stops behaving like an inductor and acts like a capacitor.
Can I measure the self inductance of a coil with a standard multimeter?
No. A standard digital multimeter (DMM) only measures DC resistance (DCR) by applying a small DC voltage. To measure inductance, you need an LCR meter, which applies an AC test signal (usually at 1 kHz or 100 kHz) to measure the phase shift between voltage and current. If you don't own an LCR meter, you can build a simple LC oscillator circuit with a known capacitor and measure the output frequency with an oscilloscope to calculate the unknown inductance.
What happens to the inductance if I stretch out an existing spring-like coil?
The inductance will decrease. Looking at the formula, length ($l$) is in the denominator. By stretching the coil, you increase $l$, which spreads the magnetic field lines further apart, reducing the magnetic flux density and the mutual coupling between adjacent turns. This is the exact principle behind old variable inductors used in vintage radio tuning circuits.






