The magnetism effect is the physical phenomenon where an electric current flowing through a conductor generates a concentric magnetic field whose strength is directly proportional to the current magnitude. In a real circuit, this effect changes how we measure current without breaking the circuit (via Hall sensors) and how we protect wires from instantaneous short circuits (via magnetic trips in breakers). Beginners commonly confuse the magnetism effect with electromagnetic induction; the magnetism effect is current creating a static or pulsing magnetic field, while induction (Faraday's Law) is a changing magnetic field creating a voltage.
The Physics and the Math: Calculating Field Strength
To design around the magnetism effect, you need to know exactly how strong the generated field will be. We use Ampere's Law to calculate the magnetic flux density ($B$) at a specific distance from a current-carrying wire. The formula for a long, straight conductor is:
$B = \frac{\mu_0 \cdot I}{2 \pi \cdot r}$
Where $\mu_0$ is the permeability of free space ($4\pi \times 10^{-7}$ T·m/A), $I$ is current in Amps, and $r$ is the radial distance from the center of the wire in meters.
Let's calculate the magnetic field strength at the outer surface of the insulation of a standard 10 AWG copper wire carrying a continuous 30A DC load. The bare copper diameter is 2.588 mm, but with THHN insulation, the outer diameter is roughly 5.0 mm, giving us a radius ($r$) of 2.5 mm (0.0025 m).
- $B = \frac{4\pi \times 10^{-7} \cdot 30}{2 \pi \cdot 0.0025}$
- $B = \frac{120\pi \times 10^{-7}}{0.005\pi}$
- $B = 24,000 \times 10^{-7}$ Tesla
This yields 0.0024 Tesla, or 2.4 mT (24 Gauss). For context, the Earth's magnetic field is about 0.05 mT. This means the wire's local magnetic field is roughly 48 times stronger than the Earth's field at the insulation boundary—easily detectable by a silicon Hall IC placed directly against the jacket.
Where You Meet This in Practice
You interact with the magnetism effect every time you close a breaker or spin a motor. Here is where it physically alters your installation:
- Magnetic Trips in MCBs: A standard C-curve Miniature Circuit Breaker (like a C16) uses a bimetallic strip for slow thermal overloads, but relies on the magnetism effect for short circuits. When a dead short spikes current to 500A, the magnetic field inside the breaker's internal solenoid instantly pulls an iron plunger. This mechanically unlatches the contacts in under 10 milliseconds, long before the thermal strip can heat up.
- Contactors and Relays: The coil in a heavy-duty contactor relies entirely on the magnetism effect to generate the physical Lorentz force required to pull the high-current contacts closed against spring tension.
- Non-Contact Current Sensing: Hall effect ICs sit in a small air gap of a ferromagnetic toroid. The toroid concentrates the magnetic field generated by the primary conductor, allowing an ESP32 or Arduino to read high-side DC current without introducing resistive voltage drops into the power path.
Decision Path: Sizing a Magnetism-Based DC Current Sensor
When building a battery management system (BMS) or solar charge controller, you must measure DC current. While shunt resistors use Ohm's law (voltage drop), Hall effect sensors use the magnetism effect. Use this decision tree to select the right topology for your DC bus.
| System Condition | Sensor Topology | Example Part |
|---|---|---|
| Measuring <100mA with high precision; heat dissipation is not a concern. | Shunt Resistor (Not magnetism-based) | TI INA226 + 0.1Ω shunt |
| Measuring 10A to 50A DC on a budget; minor offset drift is acceptable. | Open-Loop Hall Effect | Allegro ACS724 |
| Measuring >100A DC; requires zero offset drift and high bandwidth for motor control. | Closed-Loop Hall / Fluxgate | TI DRV425 or LEM HTFS 200-P |
Pitfalls: Stray Fields and Magnetic Interference
The magnetism effect does not respect PCB boundaries. If you route a high-current AC trace or a PWM-switched DC motor line near a Hall sensor or an unshielded inductor, the generated magnetic field will couple directly into your sensing circuitry, causing massive reading offsets.
To mitigate this, keep high-current traces at least 15 mm away from open-loop Hall sensors. If space is constrained, you must use twisted-pair wiring for your high-current lines. Twisting the positive and negative supply wires ensures their concentric magnetic fields cancel each other out at any distance greater than the twist pitch. For high-noise environments, upgrade to a differential fluxgate sensor like the TI DRV425, which actively rejects common-mode external magnetic fields.
Another critical installation pitfall involves DC breakers. Many DIYers wire DC breakers backward and wonder why they fail catastrophically during a short circuit. DC breakers utilize 'magnetic blow-out' coils—small permanent magnets or coil arrangements that use the magnetism effect to stretch and extinguish the DC arc into an arc chute. If you reverse the polarity, the Lorentz force reverses direction, blowing the electrical arc into the breaker's mechanical contacts instead of away into the chute, melting the breaker from the inside out. Always observe the marked '+' and '-' terminals on DC-rated MCBs.
FAQ: Magnetism Effect in the Workshop
Q: Can the magnetism effect from a heavy wire trip a GFCI outlet?
A: No. GFCIs do not rely on the static magnetism effect of a single conductor. They rely on current imbalance detected by a toroidal current transformer. Both the hot and neutral wires pass through the toroid; their opposing magnetic fields cancel out perfectly under normal conditions. A ground fault creates an imbalance, resulting in a net changing magnetic field that induces a voltage to trip the relay. For a deep dive into these fundamentals, All About Circuits provides excellent foundational theory on magnetic field cancellation.
Q: Why does my multimeter's clamp meter attachment only read AC current?
A: Standard clamp meters use a current transformer, which requires a changing magnetic field (AC) to induce a measurable voltage in the secondary coil. A static DC magnetic field will just saturate the transformer core and read zero. To measure DC current with a clamp, the tool must contain a Hall effect sensor in the core's air gap to read the static magnetic flux density directly.
Q: Does wire insulation thickness affect the magnetic field strength?
A: The insulation itself does not alter the magnetic field, as plastics like PVC and XLPE have a magnetic permeability nearly identical to air ($\mu_r \approx 1$). However, thicker insulation forces your Hall sensor further away from the center of the conductor. Because the magnetic field strength decays inversely with distance ($1/r$), a thicker wire jacket will result in a weaker measurable field at the outer surface, requiring higher sensor gain.






