Rub your palms together hard — heat 🔥. A car’s brakes get hot after a long descent. A meteor burns bright as it enters the atmosphere. Last chapter we said friction “removes” mechanical energy — but where does it go? Energy can’t be destroyed! The answer is internal energy — the disordered energy of microscopic particles.

The core idea in one paragraph 📌

Friction does work on an object, but unlike gravity or a spring this work is irreversible. The ordered mechanical energy (motion of the whole object) is converted into disordered internal energy (vibration of the constituent atoms), which manifests as a rise in temperature. Quantitatively: $\Delta E_\text{internal} = |W_\text{friction}| = f_k \cdot d$. Total energy (mechanical + internal) is always conserved — the universal law of energy conservation.

Why is friction irreversible? 🎯

Gravity does positive work as you descend and negative work as you climb back up. In a closed loop, the net is exactly zero.

Friction, however, always opposes motion. Whether you go forward or reverse, it takes energy from you. Its net work over a closed loop is always negative — the mathematical definition of a non-conservative force.

What is internal energy — the microscopic view 🔬

Matter is made of billions upon trillions of particles in constant motion. Internal energy ($E_\text{int}$) is the sum of:

When an object slides against friction:
1. The organized, macroscopic motion of the whole object slows down
2. The disorganized vibration of surface particles on both objects speeds up
3. That increase in disordered motion = increase in temperature = heat 🌡️

The quantitative law 📐

If an object slides distance $d$ against kinetic friction $f_k$:

$$\boxed{\Delta E_\text{internal} = f_k \cdot d}$$

And total energy conservation:

$$\boxed{E_\text{mech}^i = E_\text{mech}^f + \Delta E_\text{internal}}$$

Example — brakes fully converting to heat 🚗

A 1500-kg car at 30 m/s brakes to a full stop. Initial mechanical energy:

$$K_i = \tfrac{1}{2}(1500)(30)^2 = 675{,}000\ \text{J}$$

All 675 kJ becomes heat in the brakes (plus a little sound and deformation). If the brake rotors weigh 20 kg of iron (specific heat $c = 450$ J/(kg·K)):

$$\Delta T = \frac{Q}{m c} = \frac{675{,}000}{20 \times 450} = 75\ °\text{C}$$

A 75°C rise on a single brake! This is why you’re warned against continuous braking on long descents — the discs can reach 500–700°C and “fade” (lose grip).

Cosmic example — a meteor 🌠

A meteor enters the atmosphere at $v = 20$ km/s. Almost all its $K$ turns to heat. For a 1-g fragment:

$$K = \tfrac{1}{2}(0.001)(20{,}000)^2 = 2 \times 10^5\ \text{J}$$

That 200 kJ is deposited in a few seconds — more than enough to vaporize 1 g of iron (needs ~1 kJ). That’s why small meteors burn up entirely before reaching the ground, appearing as “shooting stars.”

Regenerative braking — energy that isn’t wasted 🔋

Electric and hybrid cars use a clever trick called regenerative braking. Instead of dissipating the car’s kinetic energy as waste heat, they reverse the electric motor → the motor becomes a generator → the car’s $K$ → electrical energy → battery.

Practical efficiency 60–70% (the rest still becomes heat — because motors work poorly at very low speeds). This is why EVs are more efficient in city driving (frequent braking) than on highways — the exact opposite of gasoline cars.

Python analysis 🐍

1) Brake heating — temperature vs. speed

import numpy as np
import matplotlib.pyplot as plt

m_car = 1500
m_brake = 20        # kg of iron in the brake discs
c_iron = 450        # J/(kg·K)

v_kmh = np.linspace(30, 150, 100)
v_ms = v_kmh * 1000/3600

# Assume all K goes to the brakes (worst case)
Q = 0.5 * m_car * v_ms**2
dT = Q / (m_brake * c_iron)

plt.plot(v_kmh, dT)
plt.xlabel('Initial speed (km/h)'); plt.ylabel('ΔT of brakes (°C)')
plt.title('Brake heating from a full stop')
plt.grid(); plt.savefig('brake_heat.png', dpi=120)

for v in [50, 90, 120, 150]:
    v_ms = v * 1000/3600
    Q = 0.5 * m_car * v_ms**2
    dT = Q / (m_brake * c_iron)
    print(f"v={v:3d} km/h → ΔT = {dT:5.1f} °C")
# 90 → 69°C, 120 → 123°C — close to the boiling point of water!

2) Regenerative-braking efficiency

import numpy as np

m = 2000        # EVs are heavier
v = 25          # m/s (90 km/h)
efficiency_regen = 0.65

K_initial = 0.5 * m * v**2
recovered = efficiency_regen * K_initial
lost_to_heat = K_initial - recovered

print(f"Kinetic energy:    {K_initial/1000:.1f} kJ")
print(f"Recovered:         {recovered/1000:.1f} kJ")
print(f"Lost as heat:      {lost_to_heat/1000:.1f} kJ")

# How much extra range per brake?
E_per_km = 200_000  # J/km typical EV consumption
extra_range = recovered / E_per_km * 1000  # meters
print(f"Extra range per brake: {extra_range:.0f} m")
# ~2 km for a single 90-to-0 brake!

3) Sliding block with friction

import numpy as np

m, g = 5, 9.8
mu = 0.3
v0 = 10          # m/s on horizontal surface

# Distance to stop
d = v0**2 / (2*mu*g)
print(f"Sliding distance: {d:.2f} m")

# Heat generated
Q = 0.5 * m * v0**2
print(f"Heat generated: {Q:.1f} J")

# If the contact surface has, say, 200 g of iron heating up:
m_hot = 0.2
c_iron = 450
dT = Q / (m_hot * c_iron)
print(f"ΔT of contact zone (200g): {dT:.1f} °C")

Take-home summary 🎁

Mechanical energy “lost” to friction becomes internal energy (heat). Quantitatively: $\Delta E_\text{int} = f_k d$. Total energy is never lost. Friction is non-conservative because its net work over a closed loop is negative and irreversible. Regenerative braking is the smartest way to reclaim that energy — into a battery rather than into heat. Python shows brakes hitting boiling-water temperatures from a 120-km/h stop 😎.


“Nice to know” box: fire by rubbing 🪵

Prehistoric humans started fires by rapidly rubbing two pieces of wood together — friction work converted into enough heat to reach wood’s ignition temperature (~250°C). Modern experiments show that with the right technique (a bow drill), a flame can appear in 2–5 minutes. The physics is exactly $W_\text{friction} = f_k \cdot d$, concentrated in a tiny wooden tip → dramatic local temperature rise. A reminder that physics has been literally part of human survival for two million years.


Test yourself 📝


References and further exploration 📚

Articles and reference

Videos (YouTube)

External simulators

On this site 🔗


In the final section of the chapter: power ⚡ — not just how much work, but how fast it is done. See you there 👋

سوالی دارید؟ 🤔

اگه مفهومی نامشخص بود یا سوالی داشتید، اینجا بپرسید. جوابتون در اینجا منتشر می‌شه.

💬 جواب بهتری داری؟ یا یه سؤال جدید؟

اگه به سؤالای بالا پاسخی داری که فکر می‌کنی روشن‌تر یا کامل‌تر از مال منه، یا یه سؤال جدید برای دانش‌آموزای دیگه داری — تو بخش نظرات پایین صفحه ارسال کن. هر پیامی رو می‌خونم، تأیید می‌کنم و منتشر می‌شه. این‌جوری همه از تجربه‌ی همدیگه استفاده می‌کنیم. 🌱