Electric resistance units quantify how strongly a material or component opposes the flow of electric current, measured primarily in ohms (Ω) and its metric prefixes. In any real circuit or installation, this value directly dictates three things: the current draw (via Ohm's Law), the voltage drop across your conductors, and the power dissipation (heat) generated at connection points. While the concept is foundational, builders frequently confuse resistance (the measured opposition of a specific physical object, expressed in ohms) with resistivity (the inherent material property, expressed in ohm-meters). Even more dangerously, many hobbyists confuse the lowercase 'm' (milli) and uppercase 'M' (mega) prefixes on their multimeter displays, leading to catastrophic misdiagnoses in the field.

The Metric Prefix Minefield: From Microhms to Megohms

The base unit of resistance is the ohm (Ω), named after Georg Simon Ohm. However, in practical electrical and electronics work, a single ohm is rarely the right scale for the job. The NIST metric SI prefixes define the standard multipliers we use to scale this unit up and down. Misreading these prefixes on a digital multimeter (DMM) is one of the most common bench mistakes.

Unit Name Symbol Multiplier Typical Real-World Application
Microhm µΩ 0.000001 Ω (10^-6) Busbar joints, switch contact resistance, thick copper bus traces.
Milliohm 0.001 Ω (10^-3) Current shunt resistors, wire harness resistance, motor windings.
Ohm Ω 1 Ω (10^0) Heating elements, speaker voice coils, power resistors.
Kilohm 1,000 Ω (10^3) I2C pull-up resistors (e.g., 4.7 kΩ), voltage divider networks.
Megohm 1,000,000 Ω (10^6) Insulation resistance testing, bleed resistors on high-voltage caps.
The Case-Sensitivity Trap: On a DMM display, mΩ means milliohms (thousandths), while MΩ means megohms (millions). A reading of 2.0 mΩ is a near-perfect short circuit; a reading of 2.0 MΩ is an open circuit or high-impedance insulation. Swapping these in your head when selecting a replacement component or evaluating a ground fault will instantly destroy your circuit or trip your GFCI.

Where You Meet This in Practice

You don't just calculate resistance in textbooks; you fight it on the workbench and in the panel. Here is where specific electric resistance units dictate your hardware choices:

  1. Home Wiring Voltage Drop (Milliohms per foot): When running 12 AWG NM-B cable for a 20A branch circuit, the wire has a resistance of roughly 1.588 mΩ per foot. Over a 100-foot run (200 feet total for line and neutral), that's 0.317 Ω. At 16A continuous load, you drop 5.07 volts. If your utility is already delivering 114V at the panel, your outlet sits at 108.9V—dangerously close to the brownout threshold for motorized appliances.
  2. Embedded I2C Buses (Kilohms): When wiring an ESP32 to a BME280 sensor over I2C, the open-drain architecture requires pull-up resistors. Standard practice dictates 4.7 kΩ resistors on both SDA and SCL lines to 3.3V. If you mistakenly use 4.7 Ω resistors, you will pull excessive current through the ESP32's GPIO pins, potentially frying the microcontroller's internal silicon.
  3. Solar Battery Busbars (Microhms): In a 48V LiFePO4 battery bank, the bolted connections between cells must have virtually zero resistance. A properly torqued, clean busbar joint should measure in the 10 to 50 µΩ range. Anything higher indicates surface oxidation or insufficient clamping force.

Scenario Walkthrough: The 0.1 Ω Blind Spot That Melted a 4/0 AWG Lug

To understand why the correct unit and measurement tool matter, let's look at a real-world failure involving a DIY 48V off-grid solar installation.

The Setup

A builder assembled a 48V battery bank using four 100Ah LiFePO4 server-rack batteries in series. They used 4/0 AWG flexible copper welding cable to connect the batteries to a 3000W split-phase inverter. To verify their heavy-duty hydraulic crimps were solid, they used a standard, high-quality digital multimeter set to the lowest resistance range (which bottoms out at a 0.1 Ω resolution).

The Numbers and The Mistake

The builder touched the probes across the crimped lug and the busbar. The DMM displayed "0.0 Ω". Assuming the crimp was perfect, they powered up the system.

However, the crimp was actually poorly seated, leaving a microscopic air gap and reducing the contact area. The true resistance of that single joint was 0.08 Ω (80 mΩ). Because the standard DMM lacked the resolution to display milliohms, it rounded 0.08 down to 0.0.

The Outcome

That evening, the house load spiked, and the inverter pulled 150A DC from the battery bank. Using the power dissipation formula (P = I²R):

  • Current (I) = 150 A
  • Resistance (R) = 0.08 Ω
  • Power (P) = 150² × 0.08 = 1,800 Watts

That single bad crimp dissipated 1,800W of heat—equivalent to a large space heater concentrated into a two-inch copper lug. Within four minutes, the heat-shrink insulation melted, caught fire, and triggered the battery management system (BMS) over-temperature disconnect, killing power to the house.

What Went Wrong and The Fix

The builder used the wrong tool for the unit scale they needed to measure. Standard DMMs are designed for measuring component resistance (Ohms and Kilohms). They are entirely blind to milliohms and microhms due to the inherent resistance of the test leads themselves (which usually sit around 0.2 Ω to 0.5 Ω).

The Fix: To measure busbar and crimp resistance, you must use a dedicated micro-ohmmeter or milliohm meter that uses a 4-wire Kelvin measurement to eliminate lead resistance. Alternatively, perform a voltage drop test under load: measure the millivolt drop directly across the joint while the inverter is pulling 100A. If you read more than 5 mV across a single joint, the crimp is bad and must be redone.

Frequently Asked Questions About Resistance Measurement

Why does my multimeter show a resistance reading when I touch the probes together?

That reading represents the resistance of your test leads and the internal shunt of the meter, typically between 0.1 Ω and 0.5 Ω. When measuring low-resistance circuits (like motor windings or wire continuity), you must subtract this "lead resistance" from your final reading, or use a meter with a relative (REL) mode to zero it out.

What is the difference between resistance and impedance?

Resistance (measured in Ohms) is the opposition to direct current (DC) flow. Impedance (also measured in Ohms, but denoted as Z) is the total opposition to alternating current (AC) flow, which includes both resistance and reactance (the opposition from capacitors and inductors). A speaker might have a DC resistance of 6 Ω, but an AC impedance of 8 Ω at 1 kHz.

How do I measure the resistance of a wire that is still connected to a circuit?

You don't. You must de-energize the circuit, isolate the component, and discharge any capacitors before measuring resistance. If you attempt to measure resistance on a live circuit, the external voltage will skew the meter's internal test current, giving you a false reading and potentially blowing the meter's internal fuse or destroying the multimeter's ADC.