Coulomb's Law calculates the exact electrostatic force of attraction or repulsion between two point charges based on their magnitude and the distance separating them. While it sounds like pure textbook physics, this inverse-square law directly dictates how closely you can route high-voltage traces on a PCB before arcing occurs, how sensitive your ESP32 capacitive touch pins will be, and the sheer mechanical violence of an electrostatic discharge (ESD) event. Many makers confuse Coulomb's Law with Coulomb counting (the algorithm battery management systems use to track state-of-charge) or Ohm's Law (which governs continuous current flow, not static charge forces). Understanding the actual law is critical for designing robust, shock-proof electronics.
The Core Formula and a Bench-Scale Numeric Example
The mathematical relationship, derived from Georgia State University HyperPhysics, is expressed as:
F = k × (|q₁ × q₂|) / r²
- F = Electrostatic force (Newtons)
- k = Coulomb's constant (≈ 8.987 × 10⁹ N·m²/C² in a vacuum/air)
- q₁, q₂ = Magnitude of the two charges (Coulombs)
- r = Distance between the center of the charges (meters)
Worked Numeric Example: The Violence of a Microcoulomb
To understand why static electricity destroys silicon, let's calculate the repulsive force between two 1 µC (microcoulomb) charges separated by just 10 mm (0.01 m) in ambient air.
- q₁ = 1 × 10⁻⁶ C
- q₂ = 1 × 10⁻⁶ C
- r = 0.01 m (r² = 0.0001 m²)
Plugging these into the formula:
F = (8.987 × 10⁹) × (1 × 10⁻¹²) / 0.0001
F = 8.987 × 10⁻³ / 10⁻⁴
F = 89.87 Newtons
89.87 Newtons is roughly 20.2 pounds of mechanical force. That is the sheer repulsive push generated by just one microcoulomb of charge at a distance of one centimeter. When you shuffle across a carpet and build up 100 nanocoulombs on your body, then touch a grounded chassis, that charge equalizes in nanoseconds. The resulting Coulombic force accelerates electrons into a microscopic plasma arc, which is exactly why an unprotected GPIO pin will instantly vaporize its internal gate oxide during an ESD strike.
Where You Meet Coulomb's Law in Practice
You won't use this formula to calculate resistor values, but the physical forces it describes govern three major areas of practical electronics design:
1. Electrostatic Discharge (ESD) and Silicon Destruction
ESD is the rapid, uncontrolled transfer of static charge. Because the force scales inversely with the square of the distance, as a charged finger approaches an ungrounded PCB trace, the electrostatic attraction/repulsion spikes exponentially. This pulls electrons across the dielectric barrier of a MOSFET, punching a permanent hole through the silicon. This is why handling bare ESP32-WROOM-32 modules outside of an anti-static bag requires an ESD wrist strap.
2. Capacitive Touch Sensors (ESP32 and Arduino)
When you wire a copper pad to an ESP32 touch pin (e.g., T0/GPIO4), the microcontroller measures the RC time constant of that pad. Your finger acts as a dielectric mass with its own inherent electrostatic charge profile. As your finger nears the pad, Coulombic field coupling alters the parasitic capacitance of the trace. If you coat your PCB in thick conformal coating (increasing 'r' in the formula), the electrostatic coupling drops off by the square of that added thickness, rendering the touch sensor entirely dead.
3. High-Voltage PCB Clearance and Creepage
When routing mains voltage (120V/230V AC) or designing flyback transformers for tube amplifiers, the electrostatic stress between adjacent copper traces is governed by Coulomb's principles. Doubling the physical gap between a 400V DC bus trace and a low-voltage logic trace doesn't just halve the electric field stress—it quarters it. Adhering to IPC-2221 clearance tables is essentially applied Coulombic risk management to prevent destructive arcing.
Common Confusions: Force vs. Flow vs. Capacity
Because the word 'Coulomb' appears everywhere in electrical engineering, it is heavily abused in forum posts. Here is how to separate the concepts:
| Concept | What It Actually Measures | Where You Use It |
|---|---|---|
| Coulomb's Law | Mechanical force between static, stationary charges. | ESD protection, HV spacing, capacitive sensor physics. |
| Coulomb Counting | Integrating current over time (Q = ∫I dt) to track total charge moved. | BMS fuel gauges (e.g., BQ27441) calculating LiFePO4 State of Charge. |
| Ohm's Law | The relationship between voltage, current, and resistance in a continuous circuit. | Sizing current-limiting resistors, calculating voltage drop. |
Decision Path: Sizing ESD Protection for Your Next PCB
Because Coulomb's Law dictates the immense forces involved in static charge buildup, you must shunt that energy away from sensitive I/O pins before it arcs internally. You do this with a Transient Voltage Suppression (TVS) diode. However, TVS diodes introduce parasitic capacitance, which ruins high-speed data lines. Use this decision matrix to select the right part based on your signal speed and the Coulombic threat level.
| Application Scenario | Signal Speed / Bandwidth | Max Allowable Diode Capacitance | Concrete Part Pick |
|---|---|---|---|
| Basic GPIO, Buttons, Relays | < 1 MHz | > 50 pF | PESD5V0S1BA (Nexperia) |
| I2C, SPI, UART, USB 2.0 | 1 MHz to 480 Mbps | < 3 pF | USBLC6-2SC6 (STMicro) |
| USB 3.0, HDMI, Ethernet | 5 Gbps+ | < 0.5 pF | TPD4E05U06 (Texas Instruments) |
Frequently Asked Questions
Does the material between the charges change the Coulombic force?
Yes. The formula assumes a vacuum (or air, which is nearly identical). If you pot your PCB in silicone or epoxy, the dielectric constant (relative permittivity) of that material increases the denominator of the equation, effectively reducing the electrostatic force and field stress between the traces. This is why high-voltage transformers are potted in dielectric resins.
Why don't we use Coulomb's Law for standard circuit analysis?
In a copper wire, you have roughly 8.5 × 10²⁸ free electrons per cubic meter moving in bulk. The macroscopic electrostatic forces cancel out almost perfectly due to the equal presence of positive copper ions. Because the net static charge is zero, we abandon Coulomb's Law for circuit analysis and rely on Kirchhoff's and Ohm's Laws, which describe the flow of those charges rather than their static repulsion.
Can I use Coulomb's Law to calculate the force between two PCB traces?
Not directly. Coulomb's Law strictly applies to 'point charges'. PCB traces are extended geometric planes and lines. To calculate the exact force or electric field between parallel traces, you must use Gauss's Law and integrate the charge distribution over the surface area of the copper, or rely on a 2D field solver in software like KiCad's integrated simulation tools or ANSYS.






