Coulomb's Law states that the electrical force between two charged objects is directly proportional to the product of their charges and inversely proportional to the square of the distance between them. While most of our daily bench work revolves around moving electrons (current), understanding the static force between accumulated charges is what prevents your high-voltage designs from turning into expensive, smoldering paperweights. It dictates everything from minimum PCB trace spacing to the physical distance an electrostatic discharge (ESD) arc will jump to fry your ESP32's GPIO pins.
The Core Formula and What It Actually Changes
Coulomb's Law Formula: F = k * (|q1 * q2| / r^2)
- F = Electrostatic force in Newtons (N)
- k = Coulomb's constant (8.987 × 10^9 N·m²/C² in a vacuum/air)
- q1, q2 = Magnitude of the charges in Coulombs (C)
- r = Distance between the centers of the charges in meters (m)
What people commonly confuse this with is Ohm's Law or Ampere's Law. Ohm's Law governs current flow through a resistance, and Ampere's Law deals with the magnetic force between moving charges. Coulomb's Law is strictly about the electrostatic force between stationary (or relatively stationary) charges. In a real circuit or installation, this force changes your physical layout constraints: it determines the dielectric breakdown threshold of the air between your traces, the strike distance of an ESD event, and the mechanical stress on high-capacitance components.
Worked Numeric Example: Physical Force on a DC Busbar
Let's calculate the actual physical repulsion between two charged nodes in a high-voltage DC system to see why the inverse-square relationship matters. Imagine two adjacent copper busbars in a solar inverter that have accumulated a static charge of 1 µC (1 × 10^-6 C) each, spaced exactly 10 mm (0.01 m) apart.
- Identify the variables: q1 = 1 × 10^-6 C, q2 = 1 × 10^-6 C, r = 0.01 m, k = 8.987 × 10^9.
- Multiply the charges: (1 × 10^-6) × (1 × 10^-6) = 1 × 10^-12 C².
- Square the distance: (0.01)^2 = 0.0001 m².
- Apply the formula: F = (8.987 × 10^9) × (1 × 10^-12) / 0.0001.
- Calculate: F = 8.987 × 10^-3 / 0.0001 = 89.87 Newtons.
Bench Insight: 89.87 N is roughly 20.2 pounds of force. If those busbars weren't mechanically secured, the electrostatic repulsion alone would physically push them apart. If you halve the distance to 5 mm, the force doesn't double—it quadruples to ~359 N (80 lbs) because of the r^2 denominator.
Where You Meet Coulomb's Law in Practice
You rarely calculate raw Newtons on the bench, but the electric field (force per unit charge, derived directly from Coulomb's Law) governs several critical design rules:
- PCB Clearance and Creepage: The IPC-2221 standard for PCB design mandates specific spacing between high-voltage traces. Air has a dielectric strength of roughly 3 kV/mm. When the Coulomb force on free electrons in the air gap exceeds the binding energy of the gas molecules, the air ionizes and arcs. Wider traces reduce the electric field gradient, preventing breakdown.
- ESD Strike Distance: When you shuffle across a carpet, your body accumulates charge. The Coulomb force pulls those electrons toward the nearest grounded conductor. A 10 kV ESD charge can jump a 1 mm gap before you even touch the board, which is why sensitive ICs require physical keep-out zones and grounded guard rings.
- Ceramic Capacitor Microphonics: In high-voltage MLCCs (Multi-Layer Ceramic Capacitors), the Coulomb attraction between the alternating charges on adjacent internal plates physically compresses the dielectric. This mechanical stress translates into audible noise (piezoelectric effect) in audio circuits and switching power supplies.
Decision Tree: Selecting ESD Protection Based on Electrostatic Threats
Because Coulomb's Law dictates that electrostatic force will inevitably find the shortest path to discharge, you must provide a controlled path using a Transient Voltage Suppression (TVS) diode. Use this decision matrix to select the right part for your next board spin.
| Circuit Scenario | Electrostatic Threat Profile | Required TVS Characteristics | Concrete Part Pick |
|---|---|---|---|
| High-speed I2C/SPI (3.3V/5V logic) | Fast ESD transients; signal integrity is critical | Ultra-low junction capacitance (< 1pF), low clamping voltage | Nexperia PESD5V0S1BA |
| Automotive CAN Bus (12V/24V) | High-energy surges, inductive kicks, and human-body ESD | Bidirectional, high power dissipation (400W+), AEC-Q101 qualified | Littelfuse SM24CANB |
| Industrial PLC Inputs (24V DC) | Continuous electrostatic buildup, long cable runs | High standoff voltage, integrated current limiting (TBU) | Bourns TBU-CA065-100-WH |
Default Recommendation: If you are prototyping a standard 3.3V or 5V ESP32/Arduino project and need a generic, robust, and cheap ESD clamp for external connectors, default to the Nexperia PESD5V0S1BA. It handles up to 15 kV of contact discharge (IEC 61000-4-2) and won't distort your digital signals.
Common Confusions: Static vs. Dynamic Forces
Does Coulomb's Law apply to standard 120V AC home wiring?
Technically yes, but practically no. In AC wiring, the net charge on the conductor at any given macroscopic scale is zero; electrons are sloshing back and forth, but not accumulating. Therefore, the dominant forces are magnetic (governed by Ampere's Law and Lorentz force), which cause the physical hum in transformers and the repulsion between busbars during a short-circuit fault. Coulomb's Law is reserved for high-voltage DC, static buildup, and capacitive coupling.
Why do we use Farads and Volts instead of Coulombs in circuit design?
A Coulomb is a massive amount of static charge (roughly 6.24 × 10^18 electrons). In practical electronics, we deal with the rate of charge flow (Amperes, which is Coulombs per second) or the potential difference (Volts, which is Joules per Coulomb). We use TVS diodes and capacitors rated in Volts and Farads because those units map directly to the energy and current limits of our semiconductor junctions, rather than raw static charge counts.
Can Coulomb force cause a short circuit without physical contact?
Yes. This is called electrostatic discharge (ESD) or dielectric breakdown. If the Coulomb force per unit charge (the electric field) across an air gap exceeds ~3 × 10^6 V/m, it strips electrons from the air molecules, creating a conductive plasma channel. The static charge then flows dynamically through this plasma, shorting your circuit without any solid physical contact.






