Coulomb's law calculates the exact electrostatic force of attraction or repulsion between two stationary, electrically charged particles based on their charge magnitude and the distance separating them. If you have ever wondered why a tiny, barely perceptible static shock from your finger can instantly brick a $6 ESP32-S3 dev board or blow the gate oxide on a power MOSFET, this fundamental equation is the culprit. In a real circuit or installation, Coulomb's law dictates the physical limits of insulation breakdown, the invisible crosstalk between high-speed PCB traces, and the destructive power of electrostatic discharge (ESD). It is the bedrock of electrostatics, governing how charges behave when they aren't moving.

The Core Equation and a Bench-Top Numeric Example

The formula is deceptively simple: F = k(|q₁q₂| / r²). Here, F is the force in Newtons, q₁ and q₂ are the charges in Coulombs, r is the distance in meters, and k is Coulomb's constant (approximately 8.99 × 10⁹ N·m²/C²). The critical takeaway for bench work is the inverse-square relationship with distance: as r shrinks, the force explodes exponentially.

Let's run a worked numeric example with real values you might encounter when measuring static buildup. Imagine two point charges on a workbench: q₁ = 1 µC (microcoulomb) and q₂ = -1 µC, separated by a distance r = 10 mm (0.01 m).

  • Step 1: Convert to base units. q = 1 × 10⁻⁶ C, r = 0.01 m.
  • Step 2: Square the distance. r² = 0.0001 m² (or 10⁻⁴ m²).
  • Step 3: Multiply the charges. |q₁q₂| = 10⁻¹² C².
  • Step 4: Apply the constant. F = (8.99 × 10⁹) × (10⁻¹² / 10⁻⁴).
  • Result: F = 89.9 Newtons.

That is roughly 20 pounds of physical pulling force generated by just 1 microcoulomb of charge—a fraction of the static charge you accumulate by walking across a carpeted room in winter—acting across a mere 1 centimeter. According to Georgia State University's HyperPhysics, this inverse-square scaling is why microscopic distances in semiconductor die structures are so vulnerable to macroscopic static charges.

What People Commonly Confuse It With

When makers and trade students first encounter this topic, they frequently mix up three distinct concepts. Clearing this up prevents major debugging headaches later.

1. Coulomb Counting (Battery SoC): In lithium-ion Battery Management Systems (BMS), 'Coulomb counting' refers to integrating current over time (Q = ∫I dt) to estimate State of Charge. This is a measurement technique for moving charges, entirely unrelated to the electrostatic force law.

2. Ohm's Law: Ohm's Law (V = IR) governs moving charges (current) flowing through a conductor with resistance. Coulomb's law governs stationary charges (electrostatics) and the forces they exert on each other through space or a dielectric.

3. Coulomb's Constant vs. Permittivity: The constant k is often rewritten as 1/(4πε₀), where ε₀ is the vacuum permittivity. When you add a physical insulator (like FR4 fiberglass or silicon dioxide) between charges, ε₀ becomes ε (the material's specific permittivity), which reduces the electrostatic force. This is why dielectric materials are used in capacitors.

Where You Meet This in Practice: PCB Traces and Parasitics

You might think electrostatics only matters when you get shocked by a doorknob, but Coulomb's law is actively working inside your running circuits. The most common place you meet this in practice is parasitic capacitance and crosstalk on printed circuit boards.

When you route two parallel 50-ohm signal traces on a PCB, they act as two charged bodies separated by a dielectric (the FR4 substrate). As high-speed digital signals (like a 100 MHz SPI clock from a Raspberry Pi) toggle the voltage on one trace, the charge magnitude (q) changes rapidly. According to Coulomb's law, this changing charge exerts a varying electrostatic force on the electrons in the adjacent trace. This force couples energy from the aggressor trace into the victim trace, manifesting as mutual capacitance and crosstalk. If the distance (r) between the traces is too small, the inverse-square law ensures the coupled noise will easily corrupt your logic levels, causing phantom button presses or I2C bus lockups.

Similarly, in high-voltage wiring, the physical repulsion between parallel busbars carrying massive fault currents is driven by magnetic forces, but the electrostatic attraction between the live conductors and the grounded enclosure is pure Coulomb physics, dictating the required creepage and clearance distances to prevent arcing.

Real-World Scenario Walkthrough: The Breadboard MOSFET Failure

To understand how this theory destroys hardware, let's look at a classic bench failure involving an unprotected gate.

The Setup: You are wiring an IRF540N N-channel power MOSFET on a solderless breadboard to switch a 12V, 5A LED strip using an Arduino Uno. The environment is a dry, climate-controlled workshop in January. You are not wearing an ESD wrist strap, and there is no gate pull-down resistor or Zener diode installed. You pick up the MOSFET and push it into the breadboard.

The Numbers: The Human Body Model (HBM) for ESD approximates a person as a 100pF capacitor. In dry winter air, shuffling to your workbench can charge your body to 3,000V. Your stored charge is Q = CV = (100 × 10⁻¹² F) × 3000V = 0.3 µC. The IRF540N gate is insulated from the channel by a silicon dioxide (SiO₂) layer only about 50 nanometers thick (5 × 10⁻⁸ m).

The Outcome: As your finger brushes the gate pin to align it with the breadboard hole, the 3,000V potential equalizes. The electrostatic force, governed by Coulomb's law at that microscopic 50nm distance, generates an electric field exceeding 60 MV/m (megavolts per meter). This vastly exceeds the ~10 MV/m dielectric breakdown strength of SiO₂. The force physically rips electrons through the gate oxide, puncturing it. The MOSFET fails into a dead short. When you power the circuit, 12V back-feeds through the destroyed gate into the Arduino's 5V GPIO pin, instantly frying the ATmega328P microcontroller.

What Went Wrong: You ignored the denominator. While 0.3 µC of charge spread across your body is harmless, concentrating that same charge across a 50nm gap creates an insurmountable electrostatic force. The datasheet for the IRF540N explicitly warns about this, noting that MOSFET gates are highly sensitive to ESD due to their high input impedance and microscopic dielectric layers.

Practical Protection Strategies

To prevent Coulomb's law from turning your static charge into a semiconductor-destroying weapon, implement these hardware defenses:

  1. Install a Gate Pull-Down Resistor: Always place a 10kΩ to 100kΩ resistor between the MOSFET gate and source. This provides a safe, controlled path for static charge to bleed off to ground before it can build up the voltage necessary to puncture the oxide.
  2. Add a Zener Diode Clamp: Place a Zener diode (e.g., a 12V BZX55C12 for a logic-level MOSFET) between the gate and source, with the cathode facing the gate. If an ESD spike tries to push the gate voltage above 12V, the Zener avalanches, clamping the voltage and safely shunting the Coulomb force away from the delicate oxide layer.
  3. Use Gate Driver ICs: For high-speed switching, replace direct GPIO connections with a dedicated gate driver like the TC4420. These ICs include internal ESD protection structures and robust output stages that isolate your microcontroller from the MOSFET's parasitic capacitance.
  4. Bleed Your Own Charge: Before handling bare ICs or MOSFETs, touch a grounded metal surface (like the unpainted chassis of your bench power supply) to equalize your body's potential with the earth, neutralizing the q variable in the equation.

Frequently Asked Questions

Q: Does Coulomb's law apply to AC circuits?
A: Yes, but indirectly. In AC circuits, charges are moving, so we primarily use Maxwell's equations and Ohm's law. However, Coulomb's law still governs the parasitic capacitance between AC conductors, the dielectric stress inside AC filter capacitors, and the electrostatic fields that cause corona discharge on high-voltage transmission lines.

Q: Why is the inverse-square part so critical in electronics?
A: The inverse-square relationship means that doubling the distance between two charges reduces the force to one-quarter (25%). In PCB design, simply increasing the spacing (creepage/clearance) between a high-voltage trace and a low-voltage logic trace by a few millimeters drastically reduces the capacitive coupling and electrostatic stress between them, often solving noise issues without needing extra shielding.

Q: How does this relate to the ESD Association standards?
A: The ESD Association bases its Human Body Model (HBM) and Charged Device Model (CDM) test standards directly on the physics of Coulomb's law. They define the exact capacitance, resistance, and discharge waveforms used to test whether a component can survive the electrostatic forces generated by specific charge magnitudes at microscopic distances.