Key Engineering Takeaways
- •Electricity is the flow of negatively charged subatomic particles called electrons through a conductive material (copper, aluminum).
- •Voltage (V in Volts) is the electrical pressure or potential difference pushing charges between two points.
- •Current (I in Amperes) is the rate of electron flow (1 Ampere = 1 Coulomb of charge per second = 6.242 × 10¹⁸ electrons/sec).
- •Resistance (R in Ohms Ω) is the opposition a material offers to the passage of electric current.
- •Ohm's Law (V = I · R) and Power (P = V · I = I² · R) form the bedrock foundation of all electronic design.
- • Basic arithmetic (multiplication and division)
- • Digital Multimeter
- • 9V or 5V DC Power Source
- • Breadboard
- • Assorted Resistors (330Ω, 1kΩ, 10kΩ)
- • LEDs
What is Electricity? Atoms & Free Electrons
Voltage, Current & Resistance: The Water Pipe Analogy
Conventional Current vs Actual Electron Flow
Ohm's Law: Mathematical Relationships & Triangle
# Python script to calculate Voltage, Current, or Resistance
def ohms_law(v=None, i=None, r=None):
if v is None and i is not None and r is not None:
return i * r # Voltage in Volts
elif i is None and v is not None and r is not None:
return v / r # Current in Amperes
elif r is None and v is not None and i is not None:
return v / i # Resistance in Ohms
else:
raise ValueError("Provide exactly two variables to solve for the third.")
# Example: 5V supply across 220 Ohm resistor
current_amps = ohms_law(v=5.0, r=220.0)
print(f"Current flowing: {current_amps * 1000:.2f} mA")Electrical Power: Calculating Watts (P = V · I)
Frequently Asked Questions
What is the difference between Voltage and Current?
Voltage is the electrical pressure (potential energy difference) between two points, while Current is the actual rate of physical charge moving through the wire. You can have voltage without current (like an unplugged battery), but you cannot have current without voltage pushing it.
What causes electrical resistance?
As electrons move through a material, they collide with atoms and crystal lattice impurities in the conductor. These collisions convert kinetic electrical energy into thermal heat energy, resisting current flow.