The relation between electric field and magnetic field is the fundamental physical coupling where a changing electric field generates a magnetic field, and a changing magnetic field induces an electric field, allowing energy to transfer through space without physical wires. When you are debugging a noisy sensor, routing high-voltage AC lines, or designing a switch-mode power supply, this isn't just abstract physics; it is the exact mechanism causing your crosstalk, ghost voltages, and EMI failures.
The Core Mechanism: How E-Fields and B-Fields Interact
To understand this coupling on the bench, we look at two foundational principles: Faraday's Law of Induction and the Ampere-Maxwell Law. Faraday's Law dictates that a changing magnetic field (B-field) creates an electromotive force (an electric field, or E-field) in a conductor. Conversely, the Ampere-Maxwell Law shows that a changing electric field generates a magnetic field. They are two sides of the same electromagnetic coin, continuously regenerating each other when in motion, which is how radio waves and AC power propagate.
What people commonly confuse this with is the behavior of static fields. A permanent magnet sitting on your workbench has a strong, static B-field, but it generates zero E-field in the wire next to it. Similarly, a charged capacitor holds a static E-field but generates no B-field. The relation between electric field and magnetic field only activates when there is a change over time (a non-zero $dV/dt$ or $di/dt$). In AC circuits and switching DC circuits, voltages and currents are constantly changing, meaning both fields are continuously generating each other and coupling into nearby conductors.
Worked Numeric Example: Calculating Induced Crosstalk
Let's put real numbers to this to see how a changing B-field induces an E-field (voltage) in a nearby circuit. We will use the mutual inductance formula: V = M × (di/dt).
Scenario A: Standard 60Hz AC Power Line
- Setup: A 120V AC, 60Hz power cable carrying 15A RMS runs parallel to a low-voltage sensor wire. The physical geometry of the cables gives them a mutual inductance (M) of 5 µH (microhenries).
- Numbers: The peak current is $15A \times 1.414 = 21.2A$. The angular frequency ($\omega$) is $2\pi \times 60 = 377$ rad/s. The maximum rate of current change ($di/dt$) is $21.2 \times 377 = 7,992$ A/s.
- Outcome: Induced Voltage = $5 \times 10^{-6} H \times 7,992 A/s = 0.0399V$.
You get roughly 40 mV of induced noise. On a 0-10V analog signal, a 40mV spike is barely noticeable.
Scenario B: VFD Output Switching at 4 kHz
- Setup: Same physical cables, but the power cable is now a Variable Frequency Drive (VFD) output feeding a motor using Pulse Width Modulation (PWM).
- Numbers: Modern IGBTs in VFDs switch incredibly fast. The current transitions in about 100 nanoseconds. If the current step is 100A, the $di/dt$ is $100A / 100ns$, which equals $1,000,000,000$ A/s ($10^9$ A/s).
- Outcome: Induced Voltage = $5 \times 10^{-6} H \times 10^9 A/s = 5,000V$.
The induced voltage spikes to 5000 V. This massive, nanosecond-wide voltage spike will instantly destroy an unshielded sensor input or cause a microcontroller to brownout and reset. The physical geometry didn't change; only the rate of change of the magnetic field changed, radically altering the induced electric field.
Where You Meet This in Practice
You interact with the relation between electric field and magnetic field every time you work with alternating current or high-frequency switching. Here is where it shows up on the jobsite and the workbench:
- Transformers and Inductors: The primary coil creates a changing B-field, which induces an E-field (voltage) in the secondary coil. The iron core simply concentrates the magnetic flux to maximize this coupling.
- PCB Layout and Switch-Mode Power Supplies: The 'switching node' on a buck converter has a massive $dV/dt$ (changing electric field), which capacitively couples noise into nearby high-impedance traces. The inductor has a high $di/dt$ (changing magnetic field), which inductively couples noise into nearby loops. Good layout minimizes the physical area of these nodes to reduce field radiation.
- Induction Cooktops and Heating: A high-frequency AC coil generates a rapidly changing B-field. This induces massive E-fields (eddy currents) directly inside the ferrous metal of the cooking pot, heating it via electrical resistance without any physical contact.
- Ghost Voltages in Home Wiring: When you measure a disconnected wire running in the same conduit as a live 120V AC circuit, your high-impedance digital multimeter will often read 40V to 90V. This is purely capacitive coupling—the changing E-field from the live wire inducing a phantom voltage on the dead wire.
Real-World Scenario Walkthrough: The Ghost Voltage Troubleshooting
Setup: A facility upgrades a 480V 3-phase pump motor with a new VFD. The installer runs the 4-20mA analog pressure transducer cable in the same cable tray as the 480V VFD power feed to save time and conduit. The sensor cable is standard unshielded 18 AWG twisted pair.
Numbers: The VFD operates at a carrier frequency of 8 kHz, pushing 50A to the motor. The $dV/dt$ on the VFD output phases is approximately $10,000 V/\mu s$, creating an intense, rapidly changing electric field. The $di/dt$ creates an equally intense changing magnetic field.
Outcome: When the pump starts, the PLC analog input card faults out. Instead of a steady 4-20mA signal, the PLC reads erratic spikes jumping between 15mA and 28mA. The PLC logic interprets the 28mA spike as an 'over-range' sensor failure and immediately trips the motor offline to protect the pump from dry-running.
What Went Wrong: The unshielded sensor wire acted as an antenna. The changing E-field from the VFD's high $dV/dt$ coupled capacitively into the sensor wire, while the changing B-field from the high $di/dt$ coupled inductively. Because the sensor wire was unshielded, the induced E-field drove displacement currents directly into the high-impedance analog input of the PLC, corrupting the voltage reading across the shunt resistor.
The Fix: We pulled the sensor cable out of the power tray. We rerouted it in a separate, grounded steel conduit (which acts as a Faraday cage to block the E-field and provides a low-reluctance path to shunt the B-field). We also replaced the cable with a Shielded Twisted Pair (STP) cable, grounding the drain wire at the PLC cabinet only. The signal stabilized to a clean 12.4mA.
What It Changes in a Real Circuit or Installation
Understanding that changing fields generate each other fundamentally changes how you design and install electrical systems. It dictates three critical installation rules:
- Physical Separation: The strength of both E-fields and B-fields drops off with distance (roughly $1/r^2$ for near-field radiation). Maintaining a 12-inch to 24-inch separation between 480V AC lines and 24V DC control lines reduces induced noise by orders of magnitude.
- Shielding Selection: Copper foil or braided shields are excellent at blocking changing electric fields (capacitive coupling) by providing a low-impedance path to ground for displacement currents. However, copper is practically transparent to low-frequency changing magnetic fields. To block 60Hz B-fields, you need high-permeability materials like steel conduit or mu-metal.
- Loop Area Minimization: Faraday's law states that induced voltage is proportional to the rate of change of magnetic flux through a loop area. By twisting your signal wires (Twisted Pair), you create a series of tiny, alternating loops. The changing B-field induces a positive voltage in one twist, and an equal negative voltage in the next twist, effectively canceling the induced E-field out to near zero. This is why Ethernet and RS-485 rely entirely on twisted pairs.
Frequently Asked Questions
Can a static magnetic field create an electric field?
No. According to Faraday's Law of Induction, the magnetic flux must be changing over time to induce an electromotive force. A wire moving through a static magnetic field will experience an induced voltage (because the flux relative to the wire is changing), but a stationary wire next to a stationary magnet will read exactly 0V.
Why do coaxial cables prevent both E-field and B-field interference?
Coaxial cables feature a center conductor completely surrounded by a cylindrical shield. The shield acts as a Faraday cage, intercepting external changing E-fields and routing them to ground. For B-fields, the geometry of the coax ensures that the signal current flows down the center, and the exact return current flows back through the shield. Because the currents are equal and opposite, their generated magnetic fields perfectly cancel each other out in the space outside the cable, preventing the cable from radiating, while also rejecting external magnetic interference.
Does higher frequency always mean worse EMI?
Generally, yes. The induced voltage is directly proportional to the frequency (or the switching edge speed, $dV/dt$ and $di/dt$). A 60Hz sine wave has a relatively slow rate of change. A 100 kHz square wave from a switching power supply has near-vertical edges, generating massive high-frequency harmonic fields that easily couple into adjacent traces and cables. For deeper insights into mitigating high-frequency EMI in modern designs, refer to industry guidelines on magnetic fields and induction.






