When engineers and makers refer to a unit of magnetism, they are usually talking about the Tesla (T) or Gauss (G), which measure magnetic flux density—meaning how concentrated the magnetic field lines are in a specific area. But "magnetism" isn't just one monolithic property. Depending on whether you are sizing a transformer core, picking a Hall-effect sensor, or debugging a noisy analog signal on a custom PCB, you need to know exactly which magnetic property you're measuring and which unit applies to your design.

The Direct Answer: Which Unit of Magnetism Are We Actually Measuring?

The phrase "unit of magnetism" is a catch-all that usually points to four distinct measurable properties in physics and electrical engineering. If you ask a physicist, they will point to the SI (International System of Units) standards maintained by organizations like NIST. If you ask a motor designer, they might still use the older CGS (Centimeter-Gram-Second) system. Here is how they break down:

Magnetic Property SI Unit CGS Unit What It Actually Means
Flux Density (B) Tesla (T) Gauss (G) Concentration of field lines at a specific point.
Magnetic Flux (Φ) Weber (Wb) Maxwell (Mx) Total number of field lines passing through a given area.
Field Strength (H) Amperes/meter (A/m) Oersted (Oe) The magnetizing force applied by an electrical current.
Inductance (L) Henry (H) A component's ability to store energy in a magnetic field.
Inline Data Highlight: 1 Tesla = 10,000 Gauss. To give you a bench-level frame of reference, the Earth's magnetic field is about 0.5 Gauss (50 µT). A typical N52 neodymium magnet surfaces at roughly 1.2 to 1.4 Tesla (12,000 to 14,000 Gauss), while the ferrite core in a typical switch-mode power supply saturates around 0.3 to 0.4 Tesla.

The Bench Example: Calculating Flux Density in a Custom Solenoid

Let’s move from abstract definitions to a real bench scenario. Suppose you are winding a custom air-core solenoid to actuate a small mechanical latch for a DIY project, and you need to know the magnetic flux density (in Gauss) at the center of the coil to see if it will generate enough pull force.

The formula for the magnetic flux density ($B$) inside a long, air-core solenoid is:

$B = \mu_0 \cdot n \cdot I$

  • $\mu_0$ (permeability of free space) = $4\pi \times 10^{-7}$ T·m/A (approx. $1.256 \times 10^{-6}$)
  • $n$ (turn density) = Number of turns / length in meters
  • $I$ (current) = Amperes

The Setup: You wind 500 turns of 24 AWG magnet wire tightly over a 10 cm (0.1 m) PVC tube form. You plan to drive it with 2 Amps from a bench power supply.

  1. Calculate turn density ($n$): 500 turns / 0.1 m = 5,000 turns/meter.
  2. Plug in the current ($I$): 2 Amps.
  3. Calculate $B$: $(1.256 \times 10^{-6}) \times 5,000 \times 2 = 0.01256$ Tesla.
  4. Convert to Gauss: $0.01256 \text{ T} \times 10,000 = \mathbf{125.6 \text{ Gauss}}$.

At 125.6 Gauss, this air-core coil will barely pick up a paperclip. However, if you slide a mild steel core (with a relative permeability, $\mu_r$, of roughly 1,000) into that same PVC tube, the theoretical flux density multiplies by 1,000 to 125,600 Gauss (12.56 T). In reality, the steel will hit magnetic saturation around 1.6 T to 2.0 T (16,000 to 20,000 Gauss), meaning the core maxes out and any additional current just generates heat without adding magnetic pull. This is why understanding the difference between applied field strength (Amps) and resulting flux density (Tesla) is critical when sizing magnetic cores.

Where You Meet This in Practice

What does the unit of magnetism actually change in a real circuit or installation? It dictates component selection, physical layout, and failure thresholds.

  • Hall Effect Current Sensors (e.g., ACS712): These ICs output an analog voltage proportional to the magnetic flux density (measured in milliTesla) generated by the current-carrying trace passing through them. If you route a high-current motor trace too close to the sensor without proper physical spacing, the stray Gauss readings from the motor's field will skew your ADC values, causing your microcontroller to misread the current.
  • Transformer Core Saturation in SMPS: In switch-mode power supplies, if the volt-seconds applied to the primary winding exceed the core's capacity, the flux density (Tesla) hits the ferrite's saturation limit (usually ~0.3 T). When this happens, the core's permeability drops to that of air, inductance collapses to near zero, current spikes violently, and your switching MOSFET explodes. Electronics Tutorials provides excellent deep-dives on how B-H curves dictate these limits.
  • VFDs and Motor Cables: Variable frequency drives generate massive, rapidly changing magnetic fields. If motor cables aren't symmetrically routed or shielded, the induced magnetic flux can couple into adjacent 4-20mA sensor loops, causing phantom readings and tripping PLC faults.

War Story: When 50 Gauss Bricked a Prototyping Board

To understand how stray magnetic flux density impacts embedded systems, let’s look at a real-world failure from the bench.

The Setup: I was designing a smart window blind controller using an ESP32-WROOM-32 module and a small 12V DC gear motor. The motor featured a permanent magnet encoder on the rear shaft for position tracking. To keep the enclosure compact, I mounted the motor just 15mm away from the ESP32 module, directly adjacent to the board's external SPI NOR flash memory chip.

The Numbers: The encoder's neodymium magnet was rated at 4,000 Gauss at its surface. Because magnetic field strength from a dipole drops off at the inverse-cube of the distance, I assumed 15mm of clearance was plenty. However, a quick sweep with a WT10A digital gaussmeter revealed a residual static field of 45 to 50 Gauss (4.5 to 5.0 mT) hovering right over the ESP32's flash pins when the motor was stationary.

The Outcome: The prototype worked flawlessly on the test bench. But when installed in the window frame, the motor occasionally stalled under the heavy load of the blinds. During a stall, the magnetic field locked in a static position over the PCB. Minutes later, the ESP32 threw a Guru Meditation Error: Core 1 panic'ed (Cache disabled but cache accessed) and permanently corrupted the firmware partition, effectively bricking the board.

What Went Wrong: Flash memory uses floating-gate transistors that are highly sensitive to strong magnetic fields during write/erase cycles. While 50 Gauss won't instantly erase a modern hard drive, the localized field—combined with the thermal stress from the stalled motor—altered the threshold voltages of the flash cells during a background garbage-collection cycle. This flipped bits in the partition table. Espressif's hardware design guidelines warn about RF interference, but magnetic immunity is often overlooked by hobbyists.

The Fix: I added a 1mm thick Mu-metal shield between the motor and the PCB, dropping the field at the flash chip to < 2 Gauss, and physically moved the motor to a 30mm standoff.

How to Measure Stray Magnetic Flux on a PCB

If you suspect magnetic interference on your board, follow these numbered steps to map the flux density accurately:

  1. Establish the Worst-Case State: Power the board and force the highest current state (e.g., stall a motor, fire all relays, or max out a heating element).
  2. Zero Your Meter: Move your gaussmeter probe at least 1 meter away from the board and any ferrous tools on your bench, then press the zero/tare button.
  3. Sweep the Probe: Slowly move the probe parallel to the PCB surface. Keep the probe tip exactly 2mm above the components to maintain a consistent Z-axis distance.
  4. Map the Hotspots: Note the X/Y coordinates where the reading exceeds 10 Gauss (1 mT). These are your keep-out zones for sensitive analog traces and Hall sensors.

Common Confusions: Flux, Flux Density, and Field Strength

What do people commonly confuse the unit of magnetism with? The most frequent error on forums and datasheets is conflating flux with flux density. You will often see makers say, "This magnet has 5,000 Gauss of flux." This is physically incorrect. Gauss is a measure of density (lines per square centimeter). Flux (Webers or Maxwells) is the total count of lines.

Think of it like water in a pipe. Magnetic flux (Webers) is the total gallons per minute flowing through the pipe. Magnetic flux density (Tesla/Gauss) is the water pressure or velocity at a specific cross-section. A wide pipe can have high total flux but low density, just as a large, weak ceramic fridge magnet can have high total flux but very low surface Gauss compared to a tiny N52 neodymium disc.

Similarly, people confuse Field Strength ($H$, Ampere-turns/meter) with Flux Density ($B$, Tesla). Field strength is the effort you put in (the current in your coil), while Flux Density is the result you get out in the core material, linked by the material's permeability ($B = \mu \cdot H$).

Frequently Asked Questions

Can my smartphone measure the unit of magnetism accurately?

Yes, but with strict limits. Your phone contains a 3-axis magnetometer (a micro-Hall sensor) used for the compass app. Using tools like the Physics Toolbox Sensor Suite, you can read ambient magnetic fields in microTesla (µT). However, these sensors typically saturate and max out around 50 mT (500 Gauss). Do not use your phone to measure raw neodymium magnets; you will get clipped, inaccurate data and risk magnetizing the phone's internal speaker components.

How do I convert milliTesla (mT) to Gauss?

Multiply by 10. Because 1 Tesla equals 10,000 Gauss, 1 milliTesla (1/1000th of a Tesla) equals exactly 10 Gauss. If a datasheet lists a Hall sensor's trip point as 3.5 mT, that is 35 Gauss.

What unit of magnetism do electrical codes (NEC/IEC) care about?

Residential wiring codes like the NEC do not regulate static magnetic fields (Gauss/Tesla) directly. However, industrial standards like IEC 61000-4-8 test equipment immunity to power-frequency magnetic fields, and they measure this applied field strength in Amperes per meter (A/m), not Tesla, because they are testing the environment's magnetizing force rather than the resulting flux density inside the device's core.