The units of Ohm's law are the volt (V) for electrical potential, the ampere (A) for current flow, and the ohm (Ω) for resistance, which together dictate how much current will flow through a circuit for a given voltage. When you change the resistance in a real installation, you directly alter the current draw and the resulting heat dissipation, which is why misjudging these units is the leading cause of melted wires, blown fuses, and fried microcontrollers.

The Core Units of Ohm's Law: Volts, Amps, and Ohms

To design or troubleshoot any circuit, you need to treat these three units as an interconnected system rather than isolated numbers. The National Institute of Standards and Technology (NIST) defines the base SI units that govern these measurements, but on the workbench, we deal with practical derivatives. Below is the reference table for the primary units you will encounter when applying V = I × R.

Unit Symbol Measures Base SI Definition Typical Bench / Jobsite Value
Volt V Potential Difference (Electrical Pressure) Work done per unit charge (Joules/Coulomb) 5.0V (USB logic), 120V (US Mains), 24V (Industrial)
Ampere A Current Flow (Electron Volume) Coulombs of charge passing a point per second 20mA (Standard LED), 15A (Residential branch circuit)
Ohm Ω Resistance (Opposition to Flow) Volts required to push one Ampere of current 220Ω (LED resistor), 0.0015Ω (12 AWG wire per ft)
Siemens S Conductance (Inverse of Resistance) Reciprocal of the ohm (1/Ω) 0.05S (Conductance of a 20Ω power resistor)
Bench Tip: While Siemens (S) is the official unit for conductance, you will rarely see it on a multimeter. Most digital multimeters (DMMs) measure resistance in ohms and require you to do the mental math if you need conductance for parallel resistor calculations.

Prefix Multipliers: From Microamps to Kilo-ohms

In practical electronics, base units are often too large or too small. A standard microcontroller GPIO pin cannot source 1 Ampere, and a length of copper wire rarely has 1 full Ohm of resistance. This is where metric prefixes become critical. Misreading a prefix on a datasheet is the most common reason a prototype fails to power on or instantly burns out.

1 milliamp (mA) = 0.001 Amps. A standard 5mm LED draws about 20 mA, which is 0.02 A. If your calculator is set to base Amps, you must enter 0.02, not 20.

Here is how the prefixes scale across the units of Ohm's law:

  • Milli (m): One thousandth (10^-3). Used for current (mA) and low-value resistances (mΩ). A typical ESP32 active WiFi transmission draws roughly 160 mA.
  • Micro (µ): One millionth (10^-6). Used for tiny currents (µA). An ESP32 in deep sleep draws about 10 µA (0.00001 A).
  • Kilo (k): One thousand (10^3). Used for standard resistors (kΩ). I2C pull-up resistors are typically 4.7 kΩ.
  • Mega (M): One million (10^6). Used for insulation testing and high-impedance inputs (MΩ). A damaged motor winding might show a ground fault at 2 MΩ.

What people commonly confuse is the leap between milli and micro. Selecting a shunt resistor for current sensing based on a microamp specification but calculating with milliamps will result in a resistor value 1,000 times too small, effectively creating a short circuit.

Worked Numeric Example: Sizing an LED Current-Limiting Resistor

Let's apply the units of Ohm's law to a real-world scenario: powering a standard red 5mm indicator LED from a 12V DC power supply. If you connect the LED directly to 12V, the current will spike, the LED will fail catastrophically, and you might damage the power supply.

Step 1: Gather the known variables.

  • Source Voltage (Vs) = 12.0 V
  • LED Forward Voltage (Vf) = 2.0 V (from the component datasheet)
  • Desired LED Current (I) = 20 mA = 0.020 A (Always convert to base units for the formula)

Step 2: Calculate the required voltage drop across the resistor.

The resistor must absorb the excess voltage.
V_resistor = Vs - Vf
V_resistor = 12.0 V - 2.0 V = 10.0 V

Step 3: Apply Ohm's Law (R = V / I) to find the resistance.

R = 10.0 V / 0.020 A
R = 500 Ω

Step 4: Select a standard component and verify.

Resistors are manufactured in standard E-series values (E12 or E24). 500 Ω is not a standard E12 value. The closest standard values are 470 Ω and 560 Ω. We choose 560 Ω to keep the current slightly below the 20 mA maximum, extending the LED's lifespan.

Let's verify the new current:
I = 10.0 V / 560 Ω = 0.0178 A (17.8 mA). This is perfectly safe and will still be brightly lit.

Step 5: Calculate power dissipation to choose the physical resistor size.

Using Joule's law (P = I² × R):
P = (0.0178 A)² × 560 Ω
P = 0.000316 × 560 = 0.177 W

A standard 1/4 W (0.25 W) carbon film resistor is technically sufficient, but it will run warm. For long-term reliability in an enclosed panel, stepping up to a 1/2 W resistor provides a better thermal margin.

Where You Meet This in Practice (and Common Confusions)

Beyond component selection, the units of Ohm's law govern wire sizing, breaker selection, and sensor interfacing. Here is where these units dictate real-world installation decisions.

Voltage Drop in Branch Circuits

When wiring a 120V AC branch circuit, wire resistance matters. According to standard copper wire tables, 14 AWG THHN copper wire has a resistance of approximately 2.525 Ω per 1,000 feet at 20°C. If you run a 50-foot cable to a receptacle and plug in a 12A space heater, the current must travel 50 feet out and 50 feet back (100 feet total loop).

  • Total Loop Resistance (R) = (100 / 1000) × 2.525 Ω = 0.2525 Ω
  • Voltage Drop (V) = I × R = 12 A × 0.2525 Ω = 3.03 V

The heater will only see 116.97V instead of 120V. While a 3V drop is acceptable (under the NEC-recommended 3% threshold), if you extended that run to 150 feet using the same 14 AWG wire, the drop would exceed 9V, causing the heater to underperform and the wire to run hotter due to the motor/blower struggling at a lower voltage. This is why understanding milli-ohms per foot is critical for jobsite wire sizing.

Common Confusions to Avoid

Safety Warning: Never confuse nominal voltage with measured voltage. A '12V' lead-acid battery actually rests at 12.6V when fully charged and can drop to 10.5V under heavy load. Always use your multimeter to measure the actual source voltage (V) before calculating current or resistance in a DC system.

The most frequent error among beginners is confusing Ohm's Law (V = I × R) with the Power Equation (P = I² × R or P = V × I). Ohm's law tells you how much current will flow; the power equation tells you how much heat will be generated. A 1 Ω resistor connected to a 120V AC source will draw 120 Amps (Ohm's law), but it will also attempt to dissipate 14,400 Watts of heat (Power equation), resulting in an immediate explosion and tripped breaker.

Another common mix-up occurs when reading multimeter displays. When a DMM reads 'OL' in resistance mode, it does not mean 'Zero Ohms'. It means 'Over Limit' or 'Open Loop', indicating infinite resistance (a broken wire or an open switch). Conversely, a reading of 0.00 Ω indicates a dead short.

Quick Reference FAQ

Is the Watt (W) a unit of Ohm's law?
Strictly speaking, no. The Watt is the unit of electrical power, governed by Joule's Law. However, because power is calculated using voltage, current, and resistance (P = V × I), you will rarely use Ohm's law on the bench without immediately following it with a power calculation to size your components.

Why does my resistance reading change when I swap multimeter leads?
In a purely resistive DC circuit, resistance is non-polar; swapping the red and black leads should yield the exact same ohm value. If your reading changes significantly, you are likely measuring a circuit that still has power applied, or you are measuring a component with semiconductor junctions (like a diode or transistor) which have different forward and reverse resistances. Always de-energize and discharge capacitors before measuring ohms.

For deeper study on how these units apply to alternating current (AC) where impedance replaces simple resistance, refer to the All About Circuits AC Theory volume, which breaks down the phase-angle relationships that occur when inductors and capacitors enter the equation.