Magnetism is the physical force that attracts or repels magnetic materials and induces voltage in moving conductors, acting as the invisible bridge that converts electrical energy into mechanical work and vice versa. When you ask what magnetism does in a practical electrical context, the short answer is that it stores energy, opposes changes in current, and generates physical motion. It is the underlying mechanism that allows a tiny 5V microcontroller signal to switch a 50A motor via a relay, and it is the reason your switch-mode power supply doesn't melt down at high frequencies.
The Core Mechanics: What Magnetism Actually Changes in a Circuit
In a purely resistive DC circuit, current flows exactly as Ohm’s law dictates. But the moment you coil that wire or run it near a magnetic core, magnetism fundamentally changes the circuit's behavior by introducing inductance.
Here is exactly what magnetism changes in a real installation or PCB layout:
- It resists AC and current changes: A magnetic field takes time to build up and collapse. This property (inductance) chokes high-frequency AC while passing DC, which is the entire basis of EMI filtering and buck converters.
- It creates back-EMF: When you abruptly cut power to an inductive load (like a solenoid or motor), the collapsing magnetic field induces a massive voltage spike in the opposite direction. Without a flyback diode or snubber circuit, this spike will instantly punch through the dielectric layer of your driving MOSFET and destroy it.
- It enables transformer action: A changing magnetic field in a primary coil induces a proportional voltage in a secondary coil, allowing power to cross an isolation gap without a direct electrical connection.
People frequently confuse magnetic flux with electric fields (voltage). An electric field exists between two points of different potential and will push a stationary electron. A magnetic field, however, only exerts force on moving charges and magnetic dipoles. You can have a massive 10,000V static electric field sitting harmlessly on a doorknob, but a relatively weak 0.5 Tesla magnetic field ripping through a conductor will induce a current that can stop a human heart. Magnetism requires motion or change; static voltage does not.
Magnetic Material Properties: Choosing the Right Core
The strength and behavior of a magnetic field in a component depend heavily on the core material. The core's relative permeability ($\mu_r$) dictates how easily it supports magnetic flux, while its saturation flux density ($B_{sat}$) defines the absolute ceiling of how much magnetic energy it can hold before it acts like air. Selecting the wrong core material is the most common reason hobbyist SMPS (Switch-Mode Power Supply) builds fail.
| Core Material | Relative Permeability ($\mu_r$) | Saturation ($B_{sat}$) | High-Freq Loss | Primary Application |
|---|---|---|---|---|
| Air / Vacuum | 1 | N/A (No saturation) | None | RF coils, high-gap audio inductors |
| Silicon Steel | 4,000 - 10,000 | 1.8 - 2.1 T | High (Eddy currents) | 50/60Hz Mains transformers, motor stators |
| MnZn Ferrite | 1,000 - 15,000 | 0.3 - 0.5 T | Very Low | High-frequency SMPS transformers (10kHz - 1MHz) |
| Powdered Iron | 10 - 100 | 1.0 - 1.5 T | Moderate | DC-DC buck converter output chokes, PFC inductors |
| Neodymium (NdFeB) | ~1.05 (Hard) | 1.0 - 1.4 T (Remanence) | N/A | Permanent rotor magnets in BLDC motors and generators |
If you try to use a 50Hz silicon steel transformer core in a 100kHz flyback converter, the massive eddy currents will cause the core to overheat and fail in minutes. Conversely, if you use a high-permeability MnZn ferrite core for a 60Hz mains transformer, it will hit its low 0.4 T saturation limit almost instantly, drawing a dead short and tripping your breaker. For deeper design parameters, engineers rely on TDK's magnetics design tools to match core geometry to specific flux requirements.
Worked Example: Sizing a Contactor Coil and the Saturation Trap
To understand how magnetism translates into physical work, let us calculate the magnetic pull of a standard 24V DC industrial contactor. We need to find the Magnetomotive Force (MMF), the Magnetic Field Strength (H), and the resulting Flux Density (B).
Given Parameters:
- Coil turns ($N$): 2,000
- Coil current ($I$): 20 mA (0.02 A)
- Magnetic path length of the steel core ($l$): 0.1 meters (10 cm)
- Core material: Silicon steel with a relative permeability ($\mu_r$) of 5,000
Step 1: Calculate Magnetomotive Force (MMF)
MMF is the magnetic equivalent of voltage (Electromotive Force).
$MMF = N \times I = 2,000 \times 0.02 = \mathbf{40 \text{ Ampere-turns (At)}}$
Step 2: Calculate Magnetic Field Strength (H)
This is the MMF spread over the length of the magnetic path.
$H = MMF / l = 40 / 0.1 = \mathbf{400 \text{ A/m}}$
Step 3: Calculate Flux Density (B)
This is the actual magnetic field doing the pulling, measured in Teslas. We multiply $H$ by the permeability of free space ($\mu_0 \approx 1.2566 \times 10^{-6}$) and the relative permeability of the core.
$B = \mu_0 \times \mu_r \times H$
$B = (1.2566 \times 10^{-6}) \times 5,000 \times 400 = \mathbf{2.51 \text{ Tesla}}$
If you plug these numbers into a basic online calculator, it will tell you your core produces 2.51 T of flux. But look back at our material table: silicon steel saturates at roughly 2.0 T. In reality, the core cannot physically support 2.51 T. The flux density will clamp at ~2.0 T, and the remaining MMF will simply drive the core into deep saturation, generating waste heat without adding any proportional pulling force to the armature. This is why engineers add physical air gaps to magnetic circuits or carefully limit coil current—to keep the operating point on the linear part of the B-H curve.
Where You Meet This in Practice
Magnetism is not just an abstract physics concept; it dictates the physical layout and safety mechanisms of real-world electrical systems. Here is where you will directly interact with magnetic forces on the bench or jobsite:
1. Thermal-Magnetic Circuit Breakers
Every standard miniature circuit breaker (MCB) in your panel uses magnetism for short-circuit protection. While a bimetallic strip handles slow overloads thermally, a short circuit creates a massive, instantaneous current spike. This spike energizes a small solenoid inside the breaker. The resulting magnetic field violently pulls a steel latch, tripping the mechanical contacts open in milliseconds—long before the wires can melt. This is known as the "magnetic trip" threshold (usually 5x to 10x the breaker's rated current).
2. Back-EMF in Motor Drives and Relays
When you de-energize a relay coil or an AC motor, the collapsing magnetic field induces a reverse voltage. In a 12V automotive relay, this spike can easily exceed 60V. If an ESP32 or Arduino GPIO is driving that relay via a transistor without a reverse-biased flyback diode, that 60V spike will travel backward through the transistor and fry the microcontroller's silicon. Always respect the collapsing magnetic field.
3. Eddy Current Braking and Induction Heating
When a solid block of conductive metal moves through a magnetic field (or sits in a changing AC magnetic field), the magnetism induces circular currents—eddy currents—inside the metal. In induction cooktops, this is exploited to heat the steel pan directly. In electric utility meters and roller coaster brakes, eddy currents create a magnetic drag force that slows the rotation or the cart without any physical friction.
Understanding what magnetism does allows you to predict component failure, design effective filters, and safely interface high-power loads with low-voltage logic. For foundational reading on how these fields interact with conductors, the All About Circuits textbook chapter on inductance provides excellent visual diagrams of magnetic flux lines, while the NIST guide to SI units ensures your calculations for Teslas and Amperes remain strictly standardized.






