Electromagnetism

Static Electricity

Stationary charge buildup — why you get shocked, why lightning strikes, and how triboelectricity works

Static electricity is the buildup of electric charge on insulators or isolated conductors, separated from circuit ground. Created by friction (triboelectric effect), induction, or storage on capacitors. Causes: clinging clothes, sparks when touching doorknobs, hair standing on end, lightning. Discharges via sudden current — sparks, shocks, lightning bolts. Critical for understanding atmospheric physics, electrostatic precipitators, and ESD damage to electronics.

  • Charge unitCoulomb (C); typical static ~10⁻⁹ to 10⁻⁶ C
  • Triboelectric seriesOrder materials by tendency to gain/lose electrons
  • Air breakdown~3 MV/m (lightning forms above this)
  • Lightning peak voltage1-100 MV
  • Lightning peak current30-300 kA
  • Coulomb's lawF = k·q₁q₂/r² (governs static interactions)

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

How static charge builds

MechanismDescription
Friction (triboelectric)Contact + separation of two materials transfers electrons
InductionBring charged object near; charges in nearby object redistribute (no contact needed)
Capacitor storageVoltage source charges plates; held even after disconnection
PhotoionizationUV light strips electrons; X-rays, particle radiation
HeatingSome materials charge with thermal gradients

Triboelectric series (partial)

PositionMaterialsTendency
Top (lose electrons → +)Glass, mica, hair, nylon, woolBecome positive
Middle (neutral)Cotton, paper, steel, woodVariable
Bottom (gain electrons → −)PTFE, silicone, vinyl, polyesterBecome negative

When two materials contact and separate, the higher one in the series becomes positive (loses electrons to the lower one).

Lightning and air breakdown

QuantityTypical value
Air breakdown E field3 × 10⁶ V/m
Cloud-to-ground potential10⁸-10⁹ V
Lightning peak current30,000-300,000 A
Lightning duration~30 µs to a few ms
Charge transferred per strike1-10 C
Energy per strike~1-10 GJ
Air channel temperature~30,000 K (5× hotter than Sun's surface)
Strikes per day worldwide~9 million

JavaScript — static electricity

// Voltage on a person from triboelectric charging
function bodyVoltage(charge, capacitance = 100e-12) {
  // V = Q/C; body capacitance ~100 pF
  return charge / capacitance;
}

// Walking on carpet may generate ~10 nC
console.log(`10 nC body charge: ${bodyVoltage(10e-9).toFixed(0)} V`); // 100 V (felt)
console.log(`100 nC: ${bodyVoltage(100e-9).toFixed(0)} V`); // 1000 V (felt)
console.log(`1 µC: ${bodyVoltage(1e-6).toFixed(0)} V`); // 10000 V (definite shock)

// ESD damage threshold
function esdDamage(V) {
  if (V < 100) return 'Safe';
  if (V < 1000) return 'May damage sensitive ICs';
  if (V < 5000) return 'Damages most ICs (e.g., MOSFETs)';
  return 'Damages even less sensitive parts';
}

console.log(esdDamage(2000));  // Damages most ICs

// Force between charges
function staticForce(q1, q2, r) {
  return 8.99e9 * q1 * q2 / (r * r);
}

// 1 µC at 10 cm
console.log(`Two 1 µC at 10 cm: ${staticForce(1e-6, 1e-6, 0.1).toFixed(2)} N`);  // 0.9 N

// Coulomb breakdown distance
function breakdownDistance(V) {
  // V/d = 3e6 V/m for air
  return V / 3e6;
}

console.log(`10 kV needs ${(breakdownDistance(1e4) * 1000).toFixed(2)} mm gap`);
console.log(`100 kV needs ${(breakdownDistance(1e5) * 100).toFixed(2)} cm`);
console.log(`1 MV needs ${breakdownDistance(1e6).toFixed(2)} m`);

// Lightning energy estimate
function lightningEnergy(charge, voltage_V) {
  return 0.5 * charge * voltage_V;  // ½QV approximate
}

console.log(`5 C lightning at 100 MV: ${(lightningEnergy(5, 1e8) / 1e6).toFixed(0)} MJ`);
// 250 MJ = ~280 lbs of TNT equivalent

// Capacitor self-discharge
function capacitorDecay(V_initial, R_leak, C, t) {
  return V_initial * Math.exp(-t / (R_leak * C));
}

// 1 µF cap with 1 GΩ leakage
console.log(`After 1 hour: ${capacitorDecay(100, 1e9, 1e-6, 3600).toFixed(2)} V`);

Where static electricity matters

  • Electronics manufacturing. ESD protection essential — wrist straps, ionizers, conductive workstations.
  • Photocopiers and printers. Electrostatic image formation.
  • Air filtration. Electrostatic precipitators clean industrial smoke.
  • Food and chemical industry. Electrostatic powder coating, particle separation.
  • Atmospheric physics. Lightning, atmospheric electricity, ionosphere studies.
  • Painting. Electrostatic spray painting (charged paint attracts to grounded car body).
  • Demonstrations. Van de Graaff generator, Wimshurst machine, Leyden jars — historic and educational.

Common mistakes

  • Confusing static and current electricity. Static — accumulated, stationary. Current — flowing. Same charges, different states.
  • Treating insulators as charge-free. Insulators ARE where static charge accumulates (since they don't drain). Conductors lose static unless isolated.
  • Underestimating ESD damage. 50 V can damage CMOS chips. Below human-feel threshold (~3 kV).
  • Ignoring humidity. Higher humidity → moisture provides leakage paths → less static buildup. Dry winter air → bigger shocks.
  • Forgetting that air breakdown is local. 3 MV/m is bulk threshold. Sharp points (lightning rods) concentrate field, lower breakdown locally → preferential discharge.
  • Treating Coulomb's law as instantaneous. Information about charge changes propagates at light speed. For most static problems, "instantaneous" is fine; for fast transients, retardation matters.

Frequently asked questions

How is static charge generated?

Most commonly by triboelectric effect — friction between two materials transfers electrons. Walking on carpet, rubbing balloon on hair, etc. Some materials (like glass on silk) reliably charge in known directions. Charge separation in clouds → lightning. Storage in capacitors. Induction (no contact required).

What's the triboelectric series?

A list ordering materials by tendency to gain or lose electrons when contacted. Top: glass, hair, wool, nylon, fur (lose electrons → become positive). Bottom: PTFE (Teflon), silicone, vinyl (gain electrons → become negative). When you rub glass with silk, glass becomes +, silk becomes −. Useful for predicting which way charges flow.

How does lightning form?

Storms create charge separation in clouds — typically negative bottom, positive top (or vice versa). Electric field grows between cloud and ground. When E exceeds air breakdown (~3 MV/m), avalanche ionization creates a conductive plasma channel — lightning bolt. ~30 kA peak current; ~1 GV total potential. Strike heats air to ~30,000°C, creating thunder shockwave.

Why do you feel shocks more in winter?

Lower humidity. Water in air provides leakage paths for charges; dry air is a better insulator. Charges accumulate longer on you in winter without dissipating. Carpet + dry air + walking = high voltage potential between you and grounded objects (door knob, faucet). Touch → discharge → spark → shock.

How do electrostatic precipitators work?

Industrial air cleaners (smokestacks, cleanrooms). Dirty air passes through a region with high voltage between electrodes. Particles get charged. Charged particles attract to oppositely-charged collection plates. Removes 99%+ of particulates. Used in coal plants, refineries, semiconductor fabs.

What's ESD and why is it bad for electronics?

Electrostatic Discharge. Walking, sliding on chairs builds up kV potentials on your body. Touching an IC pin discharges through the chip — instantaneous high current can vaporize tiny circuit features. Sensitive ICs damaged by &lt; 100 V (you can't feel below ~3 kV). ESD-safe handling — wrist straps, mats, ionizers — essential in electronics manufacturing.

How do photocopiers and laser printers use static?

Photoconductor (drum) has selective conductivity. Laser writes image as charge pattern on drum (where light hits, conductivity rises, charge drains; dark areas stay charged). Toner particles charged opposite to drum; stick where charge remains. Drum transfers toner to paper; heat fuses it. Entire process is electrostatic.