Electricity is the directed flow of electrical charge (electrons) through a conductive medium, driven by a difference in electrical potential.

The Core Physics: What It Is and What It Changes

When you close a switch, you aren't just 'turning on power'; you are establishing an electromagnetic field that forces free electrons in a conductor to drift in a unified direction. What electricity actually changes in a real circuit is the energy state of the system. It converts stored potential energy (from a battery's chemical reaction or a generator's magnetic induction) into thermal energy (heat in a resistor), kinetic energy (rotation in a motor), or photon emission (light in an LED).

A massive point of confusion for beginners is the speed of electricity. People commonly confuse the speed of the signal with the speed of the electrons. The electromagnetic wave propagates through the wire's dielectric at 50% to 99% the speed of light. However, the actual electrons move at a 'drift velocity' that is agonizingly slow. In a standard 12 AWG copper wire carrying 10 amps of DC current, the electrons are physically drifting at roughly 0.1 millimeters per second. The energy arrives instantly; the physical particles barely crawl. For a deeper look at electron drift versus signal propagation, All About Circuits provides an excellent breakdown of charge carrier mechanics.

Where You Meet This in Practice

The fundamental physics of electricity remain identical whether you are wiring a subpanel or debugging an ESP32, but the practical priorities shift dramatically based on the voltage domain.

Mains AC (120V/240V): High voltage pushes low current. Your primary concern here is insulation breakdown, arc faults, and human safety. Wire sizing is driven by thermal limits (ampacity) to prevent fires.

Low Voltage DC (12V/24V/48V): Low voltage requires massive current to deliver the same power. Your primary concern is voltage drop. A 2V drop on a 120V line is invisible; a 2V drop on a 12V system will cause your inverter to fault and your LEDs to flicker.

Logic/Signal (3.3V/5V): Microamp currents. We no longer care about power delivery; we care about voltage thresholds. Electricity here is just a physical representation of 1s and 0s, and your main enemies are capacitance, crosstalk, and noise.

Worked Numeric Example: Sizing Wire for a 12V LED Strip

Let's look at what the electricity is doing when we push it through undersized wire on a low-voltage DC project.

The Setup: You are powering a 5-meter run of WS2815 addressable LEDs. The strip draws roughly 15 watts per meter at full white. You are feeding it from a 12V DC power supply using 20 feet of 18 AWG copper wire (meaning 40 feet total round-trip for positive and negative).

  1. Calculate Total Current: 5 meters × 15W = 75W total. Using Ohm's Law (I = P/V), 75W / 12V = 6.25 Amps.
  2. Calculate Wire Resistance: 18 AWG copper has a resistance of roughly 6.385 ohms per 1,000 feet. For a 40-foot round trip, the resistance is (40 / 1000) × 6.385 = 0.255 ohms.
  3. Calculate Voltage Drop: V = I × R. 6.25A × 0.255Ω = 1.59 Volts dropped across the wire.
  4. The Outcome: The voltage arriving at the start of your LED strip is 12V - 1.59V = 10.41V. Because WS2815 chips require a minimum of 11V to maintain full color accuracy, the first few LEDs will look slightly dim, and by the end of the 5-meter strip, the voltage will sag further, turning your 'white' LEDs a sickly pink/yellow.

The electricity didn't disappear; the energy was simply converted into waste heat inside your 18 AWG wire instead of light inside your LEDs. To fix this, you must step up to 14 AWG or 12 AWG wire to lower the resistance.

Real-World Scenario Walkthrough: The Melted Inverter Feed

Understanding what electricity does when transitioning between AC and DC domains is critical for off-grid and solar builds. Here is a real-world failure scenario.

Setup: A hobbyist is building a 12V LiFePO4 battery bank to power a 1200W pure sine wave inverter for an off-grid cabin. To connect the battery to the inverter (a 3-foot run), they use leftover 10 AWG automotive wire because it 'handled 1200W just fine on the AC output side'.

The Numbers: On the 120V AC output side, 1200W draws exactly 10 Amps (1200W / 120V). 10 AWG wire is rated for roughly 30A in chassis wiring, so the AC side is perfectly safe. However, on the 12V DC input side, the inverter must pull 1200W from the battery. Accounting for 85% inverter efficiency, the DC load is roughly 1400W. 1400W / 12V = 116 Amps continuous. When the microwave's compressor kicks on, the surge demand spikes to over 200 Amps.

The Outcome: The moment the microwave starts, the 10 AWG wire (rated for ~30A-40A depending on insulation temp) acts as a massive resistor. The wire insulation softens, begins to smoke, and the severe voltage drop pulls the battery terminal voltage down to 9.5V. The inverter's internal low-voltage protection trips, shutting off the microwave instantly.

What Went Wrong: The builder confused the AC domain with the DC domain. They sized the wire for the high-voltage/low-current output, entirely forgetting that in a low-voltage DC system, the current is multiplied by a factor of 10. For a 1200W 12V inverter, the NEC-style guidance (and basic physics) demands at least 2/0 AWG pure copper wire for the DC feed to safely handle the 150A+ surge without catastrophic voltage drop or fire.

Frequently Asked Questions

Does electricity get 'used up' in a circuit?

No. Charge is strictly conserved. The exact same number of electrons that leave the negative terminal of your battery return to the positive terminal. What gets 'used up' is the electrical potential energy (voltage). The electrons give up their energy to the load (like a motor or resistor) and return to the source 'empty' to be re-energized.

Why does low voltage require thicker wires than high voltage?

To use the standard water analogy exactly once: if voltage is water pressure and current is the flow rate, a low-pressure system (12V) needs a massive, wide pipe (thick wire) to deliver the same total volume of water (watts) as a high-pressure system (120V) pushing through a narrow pipe. Power (Watts) = Voltage × Current. If Voltage drops, Current must spike to deliver the same Power, and high current generates exponential heat (I²R losses) in thin wires.

Is AC 'stronger' or more dangerous than DC?

Both are lethal at high voltages, but they interact with the human body and electrical contacts differently. AC crosses zero volts 120 times a second (in a 60Hz system), which naturally helps extinguish electrical arcs when a switch is opened. DC never crosses zero, meaning a DC arc can sustain itself and burn through contacts if not properly managed. Furthermore, AC at 50/60Hz is particularly efficient at causing ventricular fibrillation in humans, while DC tends to cause a single violent muscle contraction. For detailed safety thresholds, refer to the Khan Academy circuits and safety modules.