An induced magnetic field is a secondary magnetic force generated either by a changing electric current or by a conductor moving through an existing magnetic field, governed by Faraday's Law of Induction. When you close a switch on a 120V AC circuit, you aren't just pushing electrons; you are projecting an expanding and collapsing magnetic aura that fundamentally changes how nearby metals and wires behave. This phenomenon is the invisible engine behind transformers and inductors, but it is also the culprit behind melted conduit fittings, destroyed solid-state relays, and the phantom 'ghost voltages' that confuse DIYers with a multimeter. People commonly confuse induced magnetic effects with static magnetic fields (like a permanent fridge magnet) or capacitive coupling (electric field interference), but induction strictly requires change—either alternating current (AC) or a sudden DC switching event.

The Core Mechanism: What It Changes in a Circuit

In a real circuit or installation, an induced magnetic field changes voltage potential and generates physical heat in ferromagnetic materials. According to Lenz's Law, the induced magnetic field always opposes the change that created it. This opposition is what we measure as inductive reactance in AC circuits.

The Flywheel Analogy: Think of an inductor's magnetic field like a heavy mechanical flywheel. When you apply power, the flywheel resists spinning up (storing energy in the magnetic field). Once it is spinning, if you suddenly disconnect the power, the flywheel's momentum forces it to keep turning, generating a massive voltage spike to push current across the gap. This is why opening a switch on an inductive load causes an arc.

When dealing with AC wiring, the 60Hz (or 50Hz) sine wave means the magnetic field is constantly expanding, collapsing, and reversing 120 times a second. If a second conductor or a steel enclosure sits inside this shifting magnetic aura, the changing flux lines cut through the metal, inducing a voltage or circulating current. This is what changes a simple wire run into a parasitic transformer.

The Math: A Worked Numeric Example of Inductive Kickback

Let's look at what happens when we interrupt a DC circuit with high inductance, a scenario that routinely destroys microcontroller GPIO pins and solid-state relays on the workbench.

Component: Omron G7J 24V DC industrial relay coil
Inductance (L): 1.5 Henries
Steady-State Current (I): 0.8 Amps
Switching Time (dt): 0.5 milliseconds (0.0005 seconds)

The formula for the induced voltage ($V$) across an inductor when current changes is:

V = -L × (di / dt)

  1. Identify the change in current (di): The current drops from 0.8A to 0A, so di = 0.8A.
  2. Identify the time interval (dt): The solid-state switch cuts the power in 0.0005 seconds.
  3. Calculate the rate of change: 0.8A / 0.0005s = 1,600 Amps per second.
  4. Multiply by Inductance: 1.5H × 1,600 A/s = 2,400 Volts.

The Outcome: A 24V circuit just induced a 2,400V magnetic spike. If you are driving this relay directly from an ESP32 or Arduino via a MOSFET without a flyback diode to safely recirculate the collapsing magnetic energy, that 2,400V spike will instantly punch through the MOSFET's drain-source junction, permanently bricking the component.

Where You Meet This in Practice

You will encounter induced magnetic fields in three primary areas of electrical and electronics work:

Application How Induction is Used (or Causes Problems) Key Metric / Standard
Transformers & Inductors Mutual induction transfers power between isolated windings via a shared magnetic core. Coupling coefficient (k), typically >0.95 in iron cores.
Ghost Voltages De-energized wires running parallel to live AC wires act as the secondary winding of an air-core transformer, picking up induced voltage. High-impedance DMMs read 30V-90V; low-impedance testers read 0V. (Fluke)
Eddy Current Heating Shifting magnetic fields induce circular currents in steel panels and conduit, converting electrical energy into wasted heat. NEC 300.3(B) requires grouping to prevent this.

Real-World Scenario Walkthrough: The Melted Conduit Fitting

To understand how dangerous unmanaged induced magnetic fields can be in a physical installation, consider this common jobsite failure.

The Setup: An installer is running a 400A, 3-phase, 208V feeder to a detached workshop. The run is 150 feet through rigid steel conduit. To make the physical wire pulling easier, the installer decides to pull one phase (plus the neutral and ground) through three separate, parallel steel conduits rather than pulling all 400A conductors through one massive pipe.

The Numbers: 3x 500 kcmil THHN copper conductors per phase, carrying up to 400A at 60Hz. The steel conduit is ferromagnetic.

The Outcome: Within 45 minutes of applying the load, the steel conduit fittings at the junction boxes reached 190°F. The THHN insulation began to soften and melt, eventually causing a phase-to-ground fault that tripped the upstream 400A breaker and scorched the panel busbars.

What Went Wrong: This is a direct violation of NEC 300.3(B), which mandates that all conductors of the same circuit must be grouped in the same raceway. When a single AC phase runs through a steel conduit, the alternating 60Hz magnetic field from that single conductor induces massive eddy currents in the steel pipe itself. The steel conduit effectively becomes a shorted secondary winding of a transformer, heating up rapidly. When all three phases are routed in the same conduit, their magnetic vectors are 120 degrees out of phase and sum to zero (in a balanced load), canceling the induced magnetic field and keeping the pipe cool.

Troubleshooting and Mitigating Induced Effects

Why does my multimeter show 65V on a disconnected wire?

This is a ghost voltage caused by capacitive coupling and induced magnetic fields from adjacent live wires in the same cable or conduit. Because modern digital multimeters (like the Fluke 87V) have an input impedance of 10 Megohms, they draw almost zero current, allowing the weak induced voltage to register. The Fix: Use a low-impedance voltage tester (like a Fluke T5 or a Wiggy solenoid tester) which places a small load on the circuit, collapsing the weak induced field and reading a true 0V.

How do I stop inductive kickback from destroying my Arduino?

You must provide a path for the collapsing magnetic field to dissipate its stored energy. The Fix: Place a flyback diode (like a 1N4007) in reverse bias across the inductive load (relay coil, solenoid, or DC motor). When the switch opens and the voltage spikes, the diode becomes forward-biased, creating a closed loop for the induced current to circulate safely until the magnetic field collapses.

Can I run a single AC hot wire through a steel junction box knockout?

No. If a single AC conductor passes through the steel knockout of an enclosure without its corresponding neutral or other phases, the shifting magnetic field will induce eddy currents in the steel around the hole. This creates a localized hot spot that can melt wire insulation over time. The Fix: Always route all circuit conductors through the same knockout, or use a non-ferromagnetic (plastic or aluminum) plate if isolation is mechanically required.

Safety & Code Caveat: While the physics of electromagnetic induction (Physics Hypertextbook) are universal, local electrical codes dictate how you manage it. Always consult NEC Article 300 and your local Authority Having Jurisdiction (AHJ) before altering feeder routing or conduit configurations. Defeating grounding or bonding paths to 'stop' induced currents is highly dangerous and violates core safety principles.