Electrical induction is the process where a changing magnetic field creates a voltage (electromotive force) across a conductor without any direct physical contact. In a real circuit, induction changes everything: it allows us to step 120V mains down to 5V USB via transformers and enables non-contact metal sensing, but it also generates massive, destructive voltage spikes when magnetic fields collapse. Makers frequently confuse electromagnetic induction (driven by changing magnetic fields) with electrostatic induction (where a static electric field redistributes surface charges on a nearby object) or simple conduction (direct electron flow through a physical wire connection).
The Core Mechanism of Electromagnetic Induction
At the bench level, induction relies on Faraday’s Law. If you move a magnet through a coil of wire—or change the strength of an electromagnet near a secondary coil—you induce a voltage. The critical requirement is change. A static magnetic field sitting next to a wire does absolutely nothing. The magnetic flux must be expanding, collapsing, or moving relative to the conductor.
The magnitude of this induced voltage depends strictly on three factors: the strength of the magnetic field, the number of turns in your wire coil, and—most importantly—how fast the magnetic field changes. According to Georgia State University's HyperPhysics, the faster the flux changes, the higher the induced voltage, which is why high-frequency switching circuits are so susceptible to induced noise.
Worked Numeric Example: Inductive Kickback in a Relay Coil
To understand why induction matters when you are wiring up a microcontroller to a mechanical relay, let’s look at the math of inductive kickback. When you de-energize an inductor (like a relay coil), the collapsing magnetic field induces a voltage that tries to keep current flowing in the same direction.
The formula for induced voltage across an inductor is:
V = L × (di / dt)
- V = Induced voltage (Volts)
- L = Inductance (Henrys)
- di = Change in current (Amps)
- dt = Change in time (Seconds)
The Scenario
You are driving a standard 12V automotive relay coil using an Arduino and a 2N2222 NPN transistor.
- The relay coil has an inductance (L) of 0.8 Henrys.
- It draws a steady state current of 150 mA (0.15 A).
- When the Arduino pulls the transistor base LOW, the transistor switches off in roughly 0.5 milliseconds (0.0005 seconds).
The Calculation
V = 0.8 × (0.15 / 0.0005)
V = 0.8 × 300
V = 240 Volts
Where You Meet Electrical Induction in Practice
You interact with induction constantly in both power and signal circuits. Here is where it physically manifests in your workshop:
- Transformers: AC current in the primary winding creates an expanding/collapsing magnetic field, which induces a proportional voltage in the secondary winding based on the turns ratio.
- AC Motors and Generators: Rotating magnetic fields induce currents in rotor bars (induction motors) or spinning magnets induce current in stator coils (alternators).
- Inductive Proximity Sensors: An internal oscillator creates a high-frequency magnetic field. When metal enters this field, eddy currents are induced in the metal, draining energy from the oscillator and triggering a solid-state switch.
- Parasitic Crosstalk: Running a 120V AC extension cord parallel to a low-voltage RS-485 or I2C data cable will induce 60Hz noise onto the data lines, causing packet drops and sensor ghosting.
Decision Path: Selecting an Inductive Proximity Sensor
Because inductive sensors rely on the principles outlined above, they only detect metals—and they are highly sensitive to the type of metal and the distance. If you are building a CNC router, a 3D printer auto-leveling system, or an automated conveyor, use this decision matrix to pick the exact part number you need.
| If Your Application Requires... | And Your Target Material Is... | Then Choose This Sensor Type | Specific Part Number (NPN, Normally Open) |
|---|---|---|---|
| High-precision Z-axis bed leveling (Gap < 2mm) | Spring steel or thick aluminum tooling plate | 12mm barrel, 4mm sensing distance | LJ12A3-4-Z/BX |
| Standard limit switches on extrusions (Gap 3mm - 6mm) | Mild steel brackets or aluminum V-slot | 18mm barrel, 8mm sensing distance | LJ18A3-8-Z/BX |
| Detecting non-ferrous metals only (Copper/Brass) | Copper busbars or brass gears | Capacitive sensor (Inductive will fail here) | LJC18A3-H-Z/BX (Capacitive alternative) |
| Sinking input to a PLC (Industrial standard) | Any ferrous metal | 18mm barrel, PNP output (Sources voltage) | LJ18A3-8-Z/AX (PNP variant) |
Mitigating Unwanted Induction in Low-Voltage Wiring
While we utilize induction in sensors and transformers, parasitic induction is the enemy of clean signal wiring. If you are wiring up thermocouples, load cells, or I2C sensors in an environment with AC motors or VFDs (Variable Frequency Drives), induced noise will corrupt your ADC readings.
To defeat unwanted induction, apply these three physical rules:
- Twisted Pair Wiring: Twist your signal and ground wires tightly (at least 4 twists per inch). The induced voltage on one half of the twist cancels out the induced voltage on the other half, effectively zeroing out the noise.
- Shielded Cable: Use foil-shielded cable (like Belden 8760) for analog signals. The shield acts as a Faraday cage, intercepting the magnetic/electric fields before they reach the inner conductors.
- Single-Point Shield Grounding: Connect the drain wire of your shielded cable to ground at one end only (usually the controller/PLC end). If you ground both ends, you create a ground loop. Changing magnetic fields will induce a current to flow through the shield itself, turning your protective shield into an noise-generating antenna.
Frequently Asked Questions
Can electrical induction occur through non-metallic materials like wood or plastic?
Yes. Magnetic fields pass through non-magnetic, non-conductive materials (wood, plastic, glass, air) with virtually zero attenuation. This is why an inductive sensor can detect a steel bracket through a 3mm plastic enclosure wall, and why a transformer's core doesn't need to physically touch the copper windings to induce a voltage.
Why does my ESP32 brownout when my 12V solenoid turns off?
This is inductive kickback in action. When the solenoid's magnetic field collapses, it induces a high-voltage spike back into your shared 12V power rail. If your buck converter (stepping 12V down to 5V/3.3V for the ESP32) lacks sufficient input capacitance or transient suppression, that spike causes the buck converter's voltage to momentarily sag or spike, triggering the ESP32's internal brownout detector and forcing a reboot. Fix it by adding a 1N4007 flyback diode across the solenoid coil and a 470µF electrolytic capacitor on the 12V input of your buck converter.
Is electromagnetic induction the same as wireless charging?
Yes, Qi wireless charging is purely electromagnetic induction. The charging pad contains a primary coil driven by a high-frequency AC oscillator. Your phone contains a secondary coil. The changing magnetic field from the pad induces an AC voltage in the phone's coil, which is then rectified to DC to charge the lithium cell. For a deeper look at how these circuits manage power transfer, All About Circuits provides excellent primers on inductive load behaviors.






