// by seankriegler.com
Electrical Calculator
Ohm's Law, power calculations, and electrical unit conversions
V = I × R
Enter any two values to calculate the third
12
Voltage (V)
2
Current (A)
6
Resistance (Ω)
24
Power (W)
P = V × I
Calculate power, energy consumption, and cost
-
kWh Used
-
Cost
-
Amps @ 120V
-
Amps @ 240V
Calculate total resistance for series and parallel resistor configurations
-
Series Total (Ω)
-
Parallel Total (Ω)
// Ohm's Law
V = I × R. Voltage equals current times resistance. This is the fundamental relationship in electrical circuits. Know any two, calculate the third.
// Series vs Parallel
Series: R_total = R1 + R2 + ... (resistances add up). Parallel: 1/R_total = 1/R1 + 1/R2 + ... (total is always less than smallest).
// Power
P = V × I = I²R = V²/R. Power in watts tells you energy use per second. 1 kWh = 1000W running for 1 hour.