An amperage unit measures the rate of electrical charge flow through a conductor, defined fundamentally as one coulomb of charge passing a specific point per second. In a real installation or circuit build, the specific amperage value dictates your wire gauge (AWG), breaker trip threshold, PCB trace width, and battery management system (BMS) rating. Makers and DIYers most commonly confuse amperage (the instantaneous flow rate) with amp-hours (the total fuel tank capacity), or mix up milliamps (mA) with milliamperes-hour (mAh) when sizing battery packs.
The Amperage Unit Scale: From Microamps to Kiloamps
Current spans several orders of magnitude. A microcontroller in deep sleep draws microamps, while a residential service entrance handles hundreds of amps. Selecting the right unit for your measurement tool or design schematic prevents catastrophic decimal errors.
| Unit Name | Symbol | Multiplier | Typical Application |
|---|---|---|---|
| Microampere | µA | 0.000001 A (10^-6) | ESP32 deep sleep current, CMOS logic leakage |
| Milliampere | mA | 0.001 A (10^-3) | LED forward current, sensor outputs, Arduino GPIO limits |
| Ampere | A | 1 A (Base Unit) | Branch circuit wiring, motor run current, LiFePO4 cell discharge |
| Kiloampere | kA | 1000 A (10^3) | Short-circuit fault currents, breaker interrupting ratings (AIC) |
Worked Numeric Example: Sizing a Branch Circuit
Let us translate amperage units into physical hardware. Suppose you are installing a dedicated circuit for a 1800W portable space heater in a US residential workshop (120V nominal).
- Calculate Base Amperage: Power (W) / Voltage (V) = Current (A).
1800W / 120V = 15 Amps. - Apply the Continuous Load Rule: Under NFPA 70 (NEC) Article 210.19, a load expected to run for 3 hours or more is considered continuous. You must multiply the base amperage by 125%.
15A × 1.25 = 18.75 Amps. - Select the Breaker: The next standard breaker size up from 18.75A is 20A.
- Select the Wire: A 20A breaker requires wire rated for at least 20A in the 60°C or 75°C ampacity column. 12 AWG THHN copper wire is rated for 25A at 75°C, making it the correct, safe choice. (Do not use 14 AWG, which is limited to 15A).
Where You Meet Amperage Units in Practice
You will encounter different amperage scales depending on your specific trade or hobby domain.
Mains Wiring and Subpanels
In residential and commercial wiring, you live entirely in the Ampere (A) and Kiloampere (kA) realm. You size feeders using Amps (e.g., 100A subpanel feeder using 2 AWG copper), but you must check the kA rating on your breakers. A standard breaker might have an interrupting rating of 10 kA (10,000 Amps). If a dead short occurs on the mains, the fault current could spike to 8 kA; if your breaker is only rated for 5 kA, it will fail to extinguish the arc and weld its contacts shut.
Embedded Systems and PCB Design
When routing traces on a custom PCB, amperage dictates copper width. According to IPC-2221 standards, carrying 5A on an external 1 oz copper layer with a 10°C temperature rise requires a trace width of roughly 110 mils (2.8 mm). If you confuse mA and A in your CAD software and input 5 instead of 5000 mA, your board will manufacture with a microscopic trace that vaporizes the moment you apply power.
Battery Packs and BMS Selection
When building 18650 or LiFePO4 packs, you must match the Battery Management System (BMS) to the peak amperage draw. A 48V e-bike motor pulling 25A continuous requires a BMS rated for at least 30A to 40A continuous, with nickel strip interconnects sized to handle 40A without acting as a toaster element.
Common Confusions: Amps, Amp-Hours, and Burden Voltage
The most dangerous mistake in electronics is confusing the rate of flow with the capacity of the source. Think of amperage as the number of cars passing a toll booth per minute, while amp-hours (Ah) is the total number of cars parked in the staging lot. A 12V 100Ah LiFePO4 battery can theoretically supply 1A for 100 hours, or 100A for 1 hour. However, if your BMS is only rated for 50A, attempting to pull 100A (the amperage) will trip the BMS, regardless of the 100Ah (the capacity).
Another critical concept is burden voltage. When you set your multimeter to the mA or µA amperage unit range, the meter inserts a relatively high-value shunt resistor into the circuit to measure the tiny voltage drop. This resistor 'steals' voltage from your circuit. If you are measuring the mA draw of a 3.3V sensor, the meter's burden voltage might drop the actual voltage reaching the sensor to 2.8V, causing it to brownout and reset. You will measure a wildly inaccurate amperage because the act of measuring it altered the circuit.
Decision Tree: Selecting Your Meter Range and Circuit Protection
Use this decision path to select the correct multimeter jack, fuse type, and wire size based on your expected amperage unit.
| Expected Current | Meter Jack / Range | Internal Fuse Type | Wire / Protection Action |
|---|---|---|---|
| < 400 mA | mA / µA Jack | Fast-blow glass (typically 446mA) | Use for logic/sensors. Watch for burden voltage drops. |
| 400 mA to 10 A | 10A High-Current Jack | High Rupture Capacity (HRC) Ceramic | Standard for appliance testing, motor run current, and LED strips. |
| > 10 A to 100 A | Clamp Meter (AC/DC Hall Effect) | N/A (Non-contact) | Required for EV charging, solar charge controller outputs, and subpanel feeders. |
| > 100 A (Fault) | Do not measure directly | N/A | Rely on breaker kA interrupting ratings and arc-flash PPE. |
FAQ: Amperage Unit Edge Cases
Why does my multimeter blow a fuse when measuring current?
You likely left the red probe in the 'Amps' jack but moved the dial to 'Voltage', then probed a live circuit. The amperage unit measurement path has near-zero resistance. Probing a voltage source with the amperage setting creates a dead short, instantly drawing hundreds of amps and blowing the internal fuse. Always move the red probe back to the V/Ω jack immediately after measuring current.
Can I measure AC and DC amperage with the same tool?
Standard multimeters use a shunt resistor for DC amperage and AC amperage, but true RMS AC current measurement requires specific internal circuitry. For high-power AC mains (like a 240V dryer circuit), do not break the circuit to insert your meter. Use an AC clamp meter that reads the magnetic field around the wire, keeping you safely isolated from lethal voltages.
What is the difference between Amps and VA (Volt-Amps)?
Amps measure real current flow, while Volt-Amps measure apparent power in AC circuits. Due to inductive loads like motors and transformers, current and voltage waveforms fall out of phase (power factor). A motor might draw 10 Amps, but if the power factor is 0.8, it only performs the real work of 8 Amps. You must size your wire and breakers for the full 10 Amps (the actual amperage heating the wire), not the 8 Amps doing the mechanical work.






