Induced voltage is the electromotive force (EMF) generated across a conductor when it is exposed to a changing magnetic field or when it moves through a static magnetic field. Whether you are designing a switch-mode power supply, wiring a 4-20mA sensor loop on a factory floor, or just switching a relay with an ESP32, understanding this phenomenon is the difference between a reliable circuit and a smoking microcontroller.
The Physics: How Changing Flux Creates EMF
At the heart of induced voltage is Faraday’s Law of Induction, which states that the induced EMF in a closed circuit is directly proportional to the rate of change of magnetic flux through the circuit. The governing equation is:
E = -N × (dΦ/dt)
- E = Induced electromotive force (Voltage)
- N = Number of turns in the coil
- dΦ/dt = Rate of change of magnetic flux over time
The negative sign represents Lenz’s Law: the induced voltage will always create a current whose magnetic field opposes the original change in flux that created it. According to Electronics Tutorials, this opposition is why inductors resist changes in alternating current, creating the inductive reactance that limits AC current flow in motor windings and transformers.
Worked Example: The Relay Coil Flyback Spike
The most common way hobbyists and technicians encounter destructive induced voltage is through inductive kickback (self-induced voltage) when switching off a relay or solenoid. Let’s look at the exact numbers to see why a flyback diode is non-negotiable.
The Scenario: You are using an NPN transistor to switch a standard 12V DC automotive relay.
- Coil Inductance (L): 80 mH (0.080 Henrys)
- Steady-State Current (I): 150 mA (0.15 Amps)
- Transistor Turn-Off Time (dt): 1 μs (0.000001 seconds)
When the transistor switches off, the current attempts to drop from 150 mA to 0 mA in one microsecond. The formula for self-induced voltage across an inductor is:
V = L × (di / dt)
Plugging in our real-world values:
V = 0.080 × (0.15 / 0.000001)
V = 0.080 × 150,000
V = 12,000 Volts
From a simple 12V circuit, the collapsing magnetic field induces a 12,000V spike. Without a path for this energy to dissipate, this voltage will arc across the transistor’s collector-emitter junction, instantly destroying the silicon and potentially backfeeding into your microcontroller's GPIO pins, frying the entire board.
The Fix: Place a standard 1N4007 rectifier diode in reverse bias across the relay coil. When the 12,000V spike occurs, the diode becomes forward-biased, creating a closed loop that safely recirculates the current until the magnetic field collapses harmlessly.
Where You Meet This in Practice
Induced voltage fundamentally changes signal integrity and component survival in real-world installations. Here is where it dictates your design and wiring choices:
1. VFDs and Motor Drives (Crosstalk)
Variable Frequency Drives (VFDs) use Pulse Width Modulation (PWM) to synthesize AC waveforms, switching at frequencies between 2 kHz and 16 kHz. These rapid current changes (di/dt) create intense, fluctuating magnetic fields. If you run an unshielded 4-20mA analog sensor cable parallel to the VFD’s motor leads, mutual inductance will induce an AC voltage directly into your sensor signal. This manifests as erratic PLC readings or false motor trips. The fix is physical separation (at least 12 inches) and using shielded twisted-pair cables like Belden 8761, with the shield grounded at exactly one end to prevent ground loops.
2. Contactors and Solenoids in Control Panels
In industrial 24VDC or 120VAC control panels, large contactor coils store significant magnetic energy. When the PLC relay output opens, the induced voltage can cause severe electromagnetic interference (EMI), resetting nearby HMIs or corrupting RS-485 Modbus communication. Proper panel design requires RC snubber networks or varistors (MOVs) across AC coils, and freewheeling diodes across DC coils.
3. Transformers and Generators
This is the intended, beneficial application of induced voltage. In a step-down transformer, AC current in the primary winding creates a constantly changing magnetic flux in the iron core. This changing flux cuts across the secondary winding, inducing a lower voltage proportional to the turns ratio. Without induced voltage, the modern AC power grid would not exist.
Induced Voltage vs. Ghost Voltage: Clearing the Confusion
A frequent point of confusion on the jobsite is mixing up magnetic induced voltage with ghost voltage (also known as stray or phantom voltage). They behave entirely differently and require different troubleshooting approaches.
Ghost voltage is primarily the result of capacitive coupling, not magnetic induction. When a dead, disconnected wire runs parallel to a live 120V AC wire inside a conduit, the two wires act as the plates of a capacitor, with the wire insulation and air acting as the dielectric. The AC electric field couples a small voltage onto the dead wire.
According to testing guidelines published by Fluke Corporation, a high-impedance digital multimeter (which typically has an input impedance of 10 MΩ) will read this coupled voltage, often displaying anywhere from 20V to 80V on a completely dead circuit. However, because this is capacitive coupling, it possesses virtually zero current capacity (microamps). If you attempt to use that voltage to power an LED or a relay, it will instantly collapse to zero.
FAQ: Common Questions About Induced Voltage
Can induced voltage damage my Arduino or ESP32 GPIO pins?
Yes, absolutely. If you wire a relay coil or a small DC motor directly to an ESP32-WROOM-32 or Arduino Nano GPIO pin (or even through a basic transistor without a flyback diode), the inductive kickback spike generated when the component turns off will exceed the 3.3V or 5V tolerance of the pin. The spike will blow the microcontroller's internal clamping diodes and permanently destroy the silicon. Always use a flyback diode for DC inductive loads, and drive them via an optocoupler or a dedicated gate driver to isolate the MCU.
How do I reduce induced voltage in long sensor cables?
To minimize magnetically induced voltage in long cable runs, apply three strategies: First, use twisted-pair cabling; the twisting ensures that the magnetic field induces equal and opposite voltages in adjacent half-twists, effectively canceling the noise out. Second, use a shielded cable and ground the shield at the panel end only. Third, increase the physical distance between your low-voltage signal cables and high-current AC power lines, as magnetic field strength drops off exponentially with distance.
Why does my multimeter read 40V on a disconnected, dead wire?
You are almost certainly reading capacitive ghost voltage, not magnetically induced voltage. The dead wire is running parallel to a live AC wire in the same conduit, acting as a capacitor. Your high-impedance digital multimeter is sensitive enough to read this coupled electric field. To verify, use a solenoid voltage tester (a 'Wiggy') or a multimeter with a Low-Z (Low Impedance) setting, which applies a small internal load to bleed off the phantom charge and reveal the true 0V state of the dead wire.






