Electricity theory is the mathematical and physical framework describing how electrical charge moves through conductive materials, driven by potential difference and opposed by resistance. In a real circuit or installation, mastering these variables dictates your wire gauge, breaker sizing, component thermal limits, and overall system efficiency. The most common mistake hobbyists and apprentices make is confusing voltage (the electromotive force) with current (the actual electron flow), leading to the false assumption that a high-voltage, low-current source like a static shock is inherently lethal, while ignoring the high-current arc-flash danger of a low-voltage 12V car battery short.
The Core Variables: A Reference Matrix
To apply Ohm's Law and circuit theory effectively, you need to internalize the base SI units and how they interact. The table below maps the theoretical definitions to the physical realities you will measure on the bench or jobsite.
| Quantity | Symbol | Unit | SI Definition | Real-World Benchmark |
|---|---|---|---|---|
| Voltage | V (or E) | Volts (V) | Joules per Coulomb | Water pressure in a pipe. A standard US wall outlet measures 120V RMS (170V peak). |
| Current | I | Amperes (A) | Coulombs per second | Water flow rate. A typical USB-C PD charger delivers up to 3A at 20V. |
| Resistance | R | Ohms (Ω) | Volts per Ampere | Pipe friction. 1000 ft of 12 AWG copper wire has ~1.93 Ω resistance at 75°C. |
| Power | P | Watts (W) | Joules per second | Work done over time. A 1500W space heater pulls 12.5A on a 120V circuit. |
| Charge | Q | Coulombs (C) | Ampere-seconds | Total water volume. A 100Ah 12V LiFePO4 battery holds ~3,600,000 Coulombs. |
Worked Example: Voltage Drop and Power Dissipation
Theory becomes critical when wire length introduces unintended resistance. Let us calculate the voltage drop and power dissipation for a 120V AC branch circuit feeding a continuous 15A load located 100 feet from the panel. We will use 12 AWG THHN copper wire in conduit.
Step 1: Determine Total Wire Length
Current must travel to the load and return to the source.
Total Length = 100 ft (out) + 100 ft (back) = 200 feet.
Step 2: Calculate Wire Resistance
According to NEC Chapter 9, Table 8, the DC resistance of 12 AWG copper is roughly 1.93 ohms per 1000 feet at 75°C.
R = (200 ft / 1000 ft) × 1.93 Ω = 0.386 Ω.
Step 3: Calculate Voltage Drop (V = I × R)
V_drop = 15A × 0.386 Ω = 5.79V.
Step 4: Evaluate Against Standards
Percentage Drop = (5.79V / 120V) × 100 = 4.825%.
NEC-style guidance (Article 210.19 Informational Note) recommends a maximum 3% voltage drop for branch circuits. At 4.8%, the load will only see 114.2V, which can cause motors to overheat and draw even more current. Furthermore, the wire itself is dissipating power as heat: P = I²R = (15)² × 0.386 = 86.85 Watts lost in the conduit.
The Fix: Step up to 10 AWG wire (1.21 Ω/kft). The new resistance is 0.242 Ω, dropping the voltage loss to 3.63V (3.02%), safely within acceptable limits.
Where You Meet Electricity Theory in Practice
Abstract formulas manifest as physical constraints in every build. Here is where fundamental electrical principles dictate your component choices:
- LED Current Limiting (DC Circuits): An LED is a non-ohmic device; its voltage drop remains relatively constant while current spikes exponentially. If you power a standard 5mm red LED (Vf = 2.0V, If = 20mA) from a 5V Arduino GPIO pin, you must calculate the series resistor: R = (5V - 2.0V) / 0.020A = 150Ω. Without this resistor, the theoretical current approaches infinity, instantly destroying the LED and potentially the microcontroller's GPIO trace.
- Solar Array String Sizing (MPPT Inputs): When wiring 100W solar panels (Vmp = 18V, Imp = 5.5A) to a Victron SmartSolar MPPT 100/20 charge controller, you must respect the controller's maximum open-circuit voltage (Voc) limit of 100V. In freezing temperatures, panel voltage rises. Using the temperature coefficient from the panel datasheet, you calculate the cold-weather Voc to ensure your series string does not exceed 95V, leaving a 5V safety margin to prevent bricking the controller's internal MOSFETs.
- MOSFET Gate Drive (Switching Theory): When using an IRFZ44N N-channel MOSFET to switch a 12V DC motor, theory dictates that the gate-to-source voltage (Vgs) must exceed the threshold. While the datasheet lists a Vgs(th) of 2-4V, this is only the point where it barely begins to conduct. To achieve the rated low Rds(on) and minimize I²R heating, you must drive the gate with 10V to 12V, requiring a dedicated gate driver IC if your microcontroller only outputs 3.3V.
Frequently Asked Questions
Why does AC theory use RMS voltage instead of peak voltage?
Root Mean Square (RMS) voltage is used because it represents the equivalent DC voltage that would deliver the exact same average power to a resistive load. A 120V RMS sine wave actually peaks at roughly 170V (120 × √2). If we rated components by peak voltage, a 120V toaster would appear to be a 170V device, making power calculations (P = V × I) mathematically messy. RMS normalizes AC theory so that standard DC power formulas work flawlessly for resistive AC loads.
Does higher resistance always mean less power dissipation?
This is a classic theory trap. The answer depends on which variable is held constant. In a series circuit where current is constant, power increases with resistance (P = I²R); this is why a high-resistance heating element gets hot while the low-resistance copper supply wires stay cool. However, in a parallel circuit connected to a fixed voltage source (like your home outlets), voltage is constant, and power decreases as resistance increases (P = V²/R). Always identify the constant variable before applying the power formula.
For deeper study on SI unit standardization and measurement tolerances, refer to the NIST guide on SI units. Understanding these baseline theories prevents catastrophic component failures and ensures your installations operate safely within their thermal and electrical limits.






