Voltage is the difference in electric potential energy per unit charge between two points, acting as the "pressure" that pushes current through a circuit. When you are reading a datasheet, sizing a sensor, or troubleshooting a variable frequency drive (VFD), understanding the exact scale of your measurement is critical. A misread decimal point between millivolts (mV) and volts (V) doesn't just skew your data—it can lead you to misdiagnose a fault, misconfigure a PLC, or fry a microcontroller's ADC pin. This voltage units breakdown maps out the exact scales you will encounter on the bench and in the field, showing exactly what each unit changes in a real installation.
The Standard Voltage Units Breakdown Table
Before we get into circuit behavior, you need a reliable reference for the SI prefixes applied to the volt (V). The NIST metric SI prefixes define these scales, but seeing them mapped to actual bench and jobsite equipment makes them useful. Here is the data-dense reference table you need to bookmark.
| Unit Name | Symbol | Multiplier (Volts) | Typical Real-World Source | Measurement Tool Required |
|---|---|---|---|---|
| Microvolt | µV | 0.000001 V (10-6) | Type K Thermocouple (~41 µV/°C) | 6.5-digit bench DMM or dedicated TC amplifier |
| Millivolt | mV | 0.001 V (10-3) | Current loop shunt resistor, LiFePO4 cell delta | 4.5-digit handheld DMM (e.g., Fluke 87V) |
| Volt | V | 1 V (100) | MCU logic (3.3V/5V), 24V DC control bus | Standard 3.5-digit multimeter |
| Kilovolt | kV | 1,000 V (103) | EV battery packs (800V nominal), utility distribution | CAT III/IV high-voltage probe, HiPot tester |
| Megavolt | MV | 1,000,000 V (106) | High-voltage DC transmission lines, lightning strikes | Specialized utility potential transformers (PTs) |
Worked Numeric Example: Scaling Millivolts to Volts in a 4-20mA Loop
To see what changing voltage units actually changes in a real circuit, let's look at an industrial 4-20mA current loop. This is the standard for analog sensors in manufacturing. Because PLCs (Programmable Logic Controllers) usually read voltage, not current, we drop a precision shunt resistor across the input terminals to convert the current into a voltage drop, following Ohm's Law (V = I × R).
Scenario A: The Standard 250Ω Shunt
Most PLC analog input cards expect a 1V to 5V DC signal. To get this from a 4-20mA loop, we use a 250Ω resistor.
- At 4mA (Zero/Live Zero): V = 0.004A × 250Ω = 1.000 V (or 1000 mV)
- At 20mA (Full Scale): V = 0.020A × 250Ω = 5.000 V (or 5000 mV)
Scenario B: The 10Ω Shunt (Millivolt Range)
Suppose you are feeding this signal into an ESP32 or Arduino ADC, which maxes out at 3.3V. A 5V signal will destroy the pin. You swap the 250Ω resistor for a 10Ω precision shunt.
- At 4mA: V = 0.004A × 10Ω = 0.040 V (or 40 mV)
- At 20mA: V = 0.020A × 10Ω = 0.200 V (or 200 mV)
What this changes in the installation:
By shifting our measurement from the Volt scale to the Millivolt scale, we changed the physical hardware requirements. A 5V signal can easily travel 50 feet over standard 22 AWG unshielded wire without significant degradation. A 200mV signal, however, is highly susceptible to electromagnetic interference (EMI) from nearby VFDs or contactors. Switching to the millivolt domain forces you to use shielded twisted-pair (STP) cable, route the wire away from AC mains, and implement software oversampling in your microcontroller code to filter out the noise floor. For a deeper look at configuring these loops, the All About Circuits guide to 4-20mA loops covers the wiring topologies in detail.
Where You Meet These Voltage Units in Practice
Understanding the scale dictates your safety gear, your test equipment, and your PCB layout. Here is where each unit dominates in the real world.
Microvolts (µV): Thermocouples and Strain Gauges
A Type K thermocouple generates roughly 41 µV per degree Celsius. At 100°C, your signal is only 4.1 mV (4100 µV). At this scale, the Seebeck effect at your copper wire junctions can introduce more error than the sensor itself. You must use proper thermocouple extension wire and cold-junction compensation (CJC) ICs like the MAX6675.
Millivolts (mV): Battery Management Systems (BMS)
In a 16-series LiFePO4 battery bank, the BMS monitors individual cell voltages. The cells sit around 3.3V, but the BMS triggers a balancing FET when the difference (delta) between the highest and lowest cell hits a specific millivolt threshold—typically 30mV to 50mV. If your BMS measurement circuit has a 10mV offset error, your battery pack will perpetually imbalance.
Volts (V): Logic, Control, and Branch Circuits
This is the daily driver for 90% of electrical work. 3.3V and 5V for logic, 12V/24V for automotive and industrial control, and 120V/240V for AC mains branch circuits. At 120V AC, the primary concern shifts from signal integrity to thermal management and arc flash boundaries.
Kilovolts (kV): Clearance and Creepage
When designing or inspecting equipment in the kilovolt range (like an 800V EV charger or a 4kV utility transformer), the unit change dictates physical spacing. According to PCB and panel design standards, as voltage crosses into the kV range, you must strictly enforce clearance (shortest air path) and creepage (shortest surface path). A 1kV potential requires significantly wider physical gaps to prevent surface tracking and dielectric breakdown. The IPC-2221 clearance guidelines provide the exact spacing matrices for these high-voltage designs.
Common Confusions: mV vs. mA and RMS vs. Peak
When discussing a voltage units breakdown, we must address the mistakes that blow fuses and destroy components. People commonly confuse voltage units with current units on their test gear, and they confuse AC voltage measurement types.
RMS Volts vs. Peak Volts in AC Circuits
Another massive point of confusion is assuming the "Volts" listed on an AC source is the maximum voltage the insulation will see. When we say a standard US outlet is 120V AC, we are referring to the RMS (Root Mean Square) voltage. RMS is the equivalent DC voltage that would deliver the same heating power to a resistive load.
However, the actual sine wave peaks much higher. To find the peak voltage, you multiply the RMS value by the square root of 2 (≈1.414).
- 120V RMS × 1.414 = 169.7V Peak
- 240V RMS × 1.414 = 339.4V Peak
The Real-World Consequence: If you are building a rectifier circuit and you select a filter capacitor rated for 150V DC because your multimeter reads "120V AC" on the secondary of your transformer, that capacitor will violently vent or explode when it hits the 169.7V peak. Always size DC bus capacitors for the peak AC voltage, not the RMS voltage.
Frequently Asked Questions
Why do we use millivolts instead of just writing 0.001 Volts?
In engineering and field work, using whole numbers reduces cognitive load and prevents fatal decimal errors. Writing "50 mV" on a schematic is instantly recognizable as a low-level sensor signal, whereas "0.050 V" can easily be misread as "0.50 V" if a speck of dust or a smudge obscures the first zero. Standardizing on the unit that keeps the integer between 1 and 999 is a core industry practice.
Can a standard multimeter measure microvolts accurately?
No. A standard handheld multimeter lacks the internal shielding, low-thermal-EMF input jacks, and amplifier resolution to measure microvolts. The thermal noise generated simply by the temperature difference between your copper test leads and the brass input jack of the meter will swamp a microvolt signal. You need a dedicated nanovoltmeter or a precision instrumentation amplifier for µV work.
Is "kV" the same as "kW"?
No, and confusing them is a hallmark of non-technical marketing. kV (kilovolts) measures electrical pressure (potential difference). kW (kilowatts) measures actual power consumed or delivered (Voltage × Current × Power Factor). An 11kV transmission line might be carrying 50 MW of power, while a 120V household outlet might only deliver 1.5 kW. Voltage is just one half of the power equation.






