import matplotlib.pyplot as plt
# Provided definitions
def calculate_current(power, voltage):
return power / voltage
def calculate_power_lost(current, resistance):
return (current**2) * resistance
# Initialization
= 1000000
power_in_watts = 10
resistance_in_ohms = 10000
low_voltage = low_voltage * 10
high_voltage
# Example 1 - power lost when using low_voltage
= calculate_current(power_in_watts, low_voltage)
low_voltage_current = calculate_power_lost(low_voltage_current, resistance_in_ohms)
power_lost_to_low_voltage
# Example 2 - power lost when using high_voltage
= calculate_current(power_in_watts, high_voltage)
high_voltage_current = calculate_power_lost(high_voltage_current, resistance_in_ohms)
power_lost_to_high_voltage
# Data for plotting
= [low_voltage, high_voltage]
voltages = [low_voltage_current, high_voltage_current]
currents = [power_lost_to_low_voltage, power_lost_to_high_voltage]
power_losses
# Plotting the results
= plt.subplots()
fig, ax1
= ax1.twinx()
ax2 'g-', marker='o', label="Current (A)")
ax1.plot(voltages, currents, 'b-', marker='o', label="Power Loss (W)")
ax2.plot(voltages, power_losses,
'Voltage (V)')
ax1.set_xlabel('Current (A)', color='g')
ax1.set_ylabel('Power Loss (W)', color='b')
ax2.set_ylabel(
# Adjusting the scale of the power loss axis to show quadratic relationship
'log')
ax2.set_yscale(
# Adding an index to the side to show exact values
for i, (v, c, p) in enumerate(zip(voltages, currents, power_losses)):
f'V: {v}\nI: {c:.2f} A\nP_loss: {p:.2e} W',
ax1.annotate(=(v, c), xytext=(5, -10 - 30 * i),
xy='offset points', ha='center', va='center',
textcoords=9, color='black', bbox=dict(boxstyle="round,pad=0.3", edgecolor="black", facecolor="lightgray"))
fontsize
# Centering the figure title
'Quadratic Relationship between Voltage, Current, and Power Loss', pad=20)
plt.title(
plt.show()
How the Heck Do We Transmit Energy: [PART 3]
Article Summary
Understand how energy transmission works from a fundamental perspective
At a high level, electrical energy in the form of electromagnetic waves zips through the vacuum of space at the speed of light. But here on Earth, we have to shuffle energy along conductive materials such as copper wire. This physical route slows things down by a hefty amount!
TLDR we gotta push it real good!
To effectively discuss and explain energy transfer processes, it’s crucial to grasp these key concepts:
- voltage (
V = I x R
): similar to pressure in a water pipe, voltage can represent how much “push” an electrical charge will have with higher amounts of voltage corresponding to faster traveling times.- current (
I
): the current rate of travel energy will move through a conductive material at, with higher currents representing a higher rate of “electrical flow” - resistance (
R
): the forces acting against the “electrical flow”, similar to friction - Note: typically as voltage increases, current increases as well because in most contexts the physical conduit that energy travel along will remain the same unless the material gets replaced (or worn down by long periods of time)
- current (
- watt (aka power,
P = V x I
): represents the rate of “pushing”, or work being done, will occur—with higher levels of power having more “push”, a higher rate of “push”, or both.- Note: the relationship of voltage and power can also be represented as:
P = (I × R) × I
P = I^2 × R
I = V / R
- current is directly proportionate to resistance (double one and the other halves)
- doubling the current quadruples the power (therefore power will always be sensitive to current)
- While
P = V x I
andP = I^2 × R
operate in an algebraically equivalently manner:P = V x I
represents the total power transmitted through a systemP = I^2 × R
represents the power lost as heat due to resistance, aka Joule heating
- Note: the relationship of voltage and power can also be represented as:
- joule (aka energy, E = integral of P over time): the total amount of energy that has flowed through the system, with higher joules representing more energy
Step to the left, now step to the right
To provide context for what qualifies as “high” vs. “low” voltage, the average American household uses 110-volt power outlets for most appliances.
Power generation facilities typically produce electricity between 10-25 kV (averging 127 times greater than what powers your toaster).
Newly generated energy often travels 50-300 miles after production, necessitating stepped-up voltage levels for efficient transmission.
Feelings of powerlessness
Transmission lines provide a conduit for energy to travel through, but also resistance. The majority of power loss will be caused by this resistance.
Here’s the fancy workaround trick engineers use to maximize energy transfer:
- Since
power = voltage * current (I)
, increasing thevoltage
will result in a lowercurrent
ifpower
remains constant - Power loss responds to
current
quadratically inpower loss = current^2 × resistance
, so a decrease incurrent
leads to major efficiency improvement inpower loss
- example with
1,000,000 W
of power,10 Ω
of resistance, and10,000 V
:- using
I = P / V
to calculatecurrent
,1,000,000 W / 10,000 V = 100 A
- using
P = I^2 * R
to calculatepower loss
,(100 A)^2 * 10 Ω = 100,000 W
of power lost to resistance
- using
- example with
1,000,000 W
of power,10 Ω
of resistance, and100,000 V
:- using
I = P / V
to calculatecurrent
,1,000,000 W / 100,000 V = 10 A
- using
P = I^2 * R
to calculatepower loss
,(10 A)^2 * 10 Ω = 1,000 W
of power lost to resistance
- using
- example with
TLDR a 10x increase in voltage
results in a 100x less power lost because less current
means less power lost to heat!
Now step it up!
- Sustainable Sanitation and Water Management (SSWM). (n.d.). Hydropower (large-scale). SSWM. Retrieved August 21, 2024, from https://sswm.info/water-nutrient-cycle/water-use/hardwares/water-energy/hydropower-(large-scale)
Let’s follow the flow of energy as it moves from generator to home appliance:
- Generator: Produces energy, usually via induction (such as at a hydroelectric dam), converting mechanical energy into electrical energy at ~10-25 kV
- Step-up transformer: Increases voltage to ~250-500 kV, depending on the distance to the next step
- Circuit breaker: Protects the entire electrical system by ensuring interruptions in flow from one section don’t cause faults or overloads in another
- High voltage lines: Provide the conduit for electricity to travel over long distances
- Step-down transformer (local substation): Decreases voltage to ~5-50 kV range for transfer in local areas
- Step-down transformer (pole transformer): Further decreases voltage to the standard 120 or 240 volts used in residential outlets
Next up to read
Now that the fundamental mechanics of energy transmission has been covered, lets learn a bit more about how new energy sources get added to the grid—and whom wields the power!