A changing magnetic field passing through a conductive loop forces electrons to move, creating an induced current proportional to the rate of change of the magnetic flux. This is the fundamental principle of electromagnetic induction, and it dictates everything from how your utility meter spins to why a relay coil can fry your microcontroller if left unprotected.
In a real circuit or installation, this phenomenon changes how we must route data cables, how we size protective diodes across inductive loads, and how we safely measure high-voltage AC mains without making direct electrical contact. Below, we break down the physics, run a real-world calculation for an energy monitoring project, and clear up the most common misconceptions.
The Core Mechanism: Flux, Motion, and Faraday's Law
To understand the interaction between a magnetic field and induced current, you have to look at magnetic flux ($\Phi$). Think of magnetic flux lines like rain falling through a hula-hoop. The total 'rain' passing through the hoop is your flux. Faraday's Law of Induction states that it is not the amount of rain that matters, but how fast the amount of rain passing through the hoop is changing.
The formula for induced electromotive force (EMF, or voltage) is:
Where N is the number of coil turns, ΔΦ is the change in magnetic flux, and Δt is the time it takes for that change to occur.
The negative sign represents Lenz's Law: the induced current will always flow in a direction that creates its own magnetic field to oppose the change that caused it. This opposition is why inductors resist changes in AC current and why generators require mechanical torque to keep spinning under an electrical load. For a deeper mathematical breakdown of these field interactions, the Electronics Tutorials guide on electromagnetic induction provides excellent step-by-step derivations.
Worked Example: Sizing a Burden Resistor for a CT Clamp
Let's apply this to a common DIY project: building an AC energy monitor using an ESP32-WROOM-32 and a split-core current transformer (CT), specifically the YHDC SCT-013-000. This sensor uses a changing magnetic field to induce a proportional current in a secondary coil, allowing you to measure mains AC safely.
The Scenario: You want to measure a 20A RMS space heater running on a 120V AC branch circuit. The ESP32's ADC (Analog-to-Digital Converter) reads voltages between 0V and 3.3V, centered around a 1.65V DC bias.
- Identify the Turns Ratio: The SCT-013-000 has a ratio of 100A to 50mA. This means the secondary coil has 2000 turns (100 / 0.050 = 2000).
- Calculate Secondary Induced Current: With 20A RMS on the primary wire, the changing magnetic field induces a secondary current ($I_{sec}$) of:
20A / 2000 = 0.010A (10mA RMS). - Find the Peak Current: AC is a sine wave. The peak current is RMS × √2.
10mA × 1.414 = 14.14mA peak. - Determine Target Peak Voltage: The ESP32 ADC swings 1.65V above and below the center bias. To maximize resolution without clipping, we want a peak voltage ($V_{peak}$) of about 1.4V (leaving a 0.25V safety margin).
- Calculate the Burden Resistor: Ohm's law ($R = V / I$) gives us the physical resistor needed to convert the induced current into a readable voltage.
R = 1.4V / 0.01414A = 99.0 Ω.
You would install a standard 100 Ω burden resistor across the CT's output wires. The changing magnetic field from the heater's AC current induces exactly the right amount of current to develop a 1.4V peak signal across this resistor, which the ESP32 oneshot ADC API can safely sample.
Where You Meet This In Practice
Electromagnetic induction isn't just for generators; it dictates layout and protection rules on the workbench and in the panel.
- Inductive Kickback (Flyback Diodes): When you de-energize a 12V relay coil, the magnetic field collapses rapidly ($\Delta t$ is near zero). According to Faraday's Law, this massive rate of change induces a huge voltage spike (often 100V+). If you don't install a 1N4007 flyback diode in reverse bias across the coil, this spike will travel back into your driver transistor or microcontroller GPIO, destroying the silicon.
- Data Cable Routing (EMI/RFI): If you run a low-voltage RS-485 or Ethernet cable parallel to a 240V AC feeder, the changing magnetic field from the AC current will induce parasitic currents in the data wires. This is why we use twisted-pair cables; the twists constantly invert the loop area, causing the induced currents in adjacent half-twists to cancel each other out.
- Wireless Charging and Transformers: Qi wireless chargers and switch-mode power supply (SMPS) transformers rely entirely on driving a primary coil with high-frequency AC to create a rapidly changing magnetic field, which induces a usable current in the secondary coil.
Common Confusions: Static Fields vs. Changing Flux
The most frequent mistake hobbyists make is confusing static magnetic fields with changing magnetic fields. If you tape a powerful N52 neodymium magnet to a copper wire, absolutely zero current is induced. The magnetic flux is high, but the change in flux ($\Delta \Phi / \Delta t$) is zero. The wire must move through the field, or the field itself must fluctuate (as with AC current), to push the electrons.
Another common mix-up is confusing induced voltage (EMF) with induced current. A changing magnetic field will always induce a voltage across an open loop of wire. However, current will only flow if that loop is closed, completing a circuit. If you wave a magnet through a disconnected coil, you have induced voltage, but zero induced current.
FAQ: Magnetic Field and Induced Current
How does a changing magnetic field induce current in a stationary wire?
Even if the wire is perfectly still, a fluctuating magnetic field (like the one surrounding an AC-carrying wire) causes the magnetic flux passing through the wire's cross-sectional area to continuously expand and collapse. This changing flux exerts an electromotive force on the free electrons in the conductor, pushing them back and forth and creating an alternating induced current.
Why does a static magnetic field not induce current in a conductor?
Electrons in a conductor require a force to move. A static magnetic field only exerts a force on charges that are already moving (the Lorentz force). If the wire and the magnet are both stationary, there is no relative motion and no change in flux, meaning no electromotive force is generated to push the stationary electrons. For more on the physics of stationary vs. moving charges in fields, refer to the Georgia State University HyperPhysics database.
What is the difference between induced voltage and induced current?
Induced voltage (EMF) is the electrical pressure created by the changing magnetic field, measured in Volts. It exists the moment the flux changes, regardless of the circuit's state. Induced current, measured in Amps, is the actual flow of electrons that results only if the circuit is closed and a path is provided. The amount of induced current is strictly limited by the induced voltage divided by the total resistance of the closed loop (Ohm's Law).
Can a magnetic field induce current in a DC circuit?
Yes, but only during the transient moments when the DC circuit is switched on or off. When you close a switch on a DC relay, the current ramps up from 0 to its maximum, creating a rapidly expanding magnetic field. This changing field induces a temporary current (back-EMF) that opposes the incoming DC voltage. Once the DC current stabilizes, the magnetic field becomes static, and the induced current drops to zero.






