To calculate the physical capacitance of a parallel-plate structure, use the fundamental formula C = (ε₀ · εᵣ · A) / d. For circuit-level bulk storage requirements, use C = (I · Δt) / ΔV. While circuit simulators handle the latter, understanding the physical formula is mandatory for designing custom capacitive sensors, calculating PCB parasitic trace capacitance, and understanding why high-voltage ceramic capacitors lose their rated value under DC bias. Below is the strict derivation, unit-tracked worked examples, and a hard decision tree to terminate your calculation into a specific, purchasable part number.
The Core Capacitance Formula and Symbol Definitions
The physical capacitance of a parallel-plate capacitor is determined by the surface area of the plates, the distance between them, and the insulating material (dielectric) separating them. The governing equation is:
C = (ε₀ · εᵣ · A) / d
| Symbol | Parameter | SI Unit | Constant / Notes |
|---|---|---|---|
| C | Capacitance | Farads (F) | The final calculated value. |
| ε₀ | Vacuum Permittivity | Farads per meter (F/m) | Constant: ≈ 8.854 × 10⁻¹² F/m |
| εᵣ | Relative Permittivity (Dielectric Constant) | Dimensionless | Material specific (e.g., FR4 ≈ 4.5, Air ≈ 1.0, X7R ≈ 2000+) |
| A | Overlapping Area of the Plates | Square meters (m²) | Must be converted from mm² or cm². |
| d | Separation Distance Between Plates | Meters (m) | Must be converted from mm or mils. |
- Uniform Electric Field: It assumes the electric field lines are perfectly straight and parallel between the plates.
- Dimensions vs. Spacing: The plate dimensions (length and width) must be significantly larger than the separation distance (d). If d is large relative to the plates, "fringing fields" at the edges become significant, and this formula will under-calculate the true capacitance.
- Homogeneous Dielectric: It assumes the material between the plates is uniform. A layered dielectric (like a PCB with both prepreg and core resin) requires a series-capacitance calculation for each layer.
Rearranged Forms for Physical Design
When designing custom capacitive touch sensors, liquid level probes, or high-voltage busbars, you rarely solve for C directly. You usually have a target capacitance and need to find the physical dimensions. Here are the rearranged forms:
- Solving for Area (A):
A = (C · d) / (ε₀ · εᵣ)
Use case: You have a fixed spacer thickness and dielectric, and need to know how large your copper pour must be to achieve a 10 pF touch pad. - Solving for Distance (d):
d = (ε₀ · εᵣ · A) / C
Use case: Designing a micrometer-adjustable air-gap capacitor for an RF tank circuit. - Solving for Dielectric Constant (εᵣ):
εᵣ = (C · d) / (ε₀ · A)
Use case: Characterizing an unknown 3D-printed resin by pressing it between known plates and measuring C with an LCR meter.
Worked Examples with Strict Unit Tracking
The most common point of failure in capacitance calculations is unit mismatch. The SI formula demands meters and square meters. Here are two real-world scenarios with explicit intermediate unit conversions.
Problem 1: Calculating PCB Parasitic Capacitance
Scenario: You are routing a high-impedance analog trace on a standard 2-layer PCB. The trace has a copper pour measuring 10 mm by 10 mm. It sits directly over a solid ground plane. The PCB core is 1.6 mm thick FR4 material (εᵣ = 4.5). What is the parasitic capacitance to ground?
- Convert Area (A): 10 mm × 10 mm = 100 mm².
Since 1 m = 1000 mm, 1 m² = 1,000,000 mm².
A = 100 / 1,000,000 = 1 × 10⁻⁴ m² - Convert Distance (d): 1.6 mm.
d = 1.6 / 1000 = 1.6 × 10⁻³ m - Apply Formula:
C = (8.854 × 10⁻¹² F/m · 4.5 · 1 × 10⁻⁴ m²) / (1.6 × 10⁻³ m) - Numerator Calculation:
8.854 × 4.5 × 1 = 39.843
10⁻¹² · 10⁻⁴ = 10⁻¹⁶
Numerator = 39.843 × 10⁻¹⁶ F·m - Final Division:
C = (39.843 × 10⁻¹⁶) / (1.6 × 10⁻³) = 24.90 × 10⁻¹³ F - Normalize to Standard Prefix:
24.90 × 10⁻¹³ F = 2.49 × 10⁻¹² F = 2.49 pF
Result: The parasitic capacitance is 2.49 pF. In a 10 MHz analog circuit, this creates a reactance of roughly 6.4 kΩ, which will heavily load a high-impedance op-amp output.
Problem 2: Custom Proximity Sensor Design
Scenario: You are building a capacitive proximity sensor using two 50 mm × 50 mm aluminum plates separated by a 2 mm thick sheet of cast acrylic (εᵣ = 3.2). Calculate the baseline capacitance.
- Convert Area (A): 50 mm × 50 mm = 2500 mm².
A = 2500 / 1,000,000 = 2.5 × 10⁻³ m² - Convert Distance (d): 2 mm = 2 × 10⁻³ m
- Apply Formula:
C = (8.854 × 10⁻¹² · 3.2 · 2.5 × 10⁻³) / (2 × 10⁻³) - Cancel Terms: The 10⁻³ in the numerator and denominator cancel out.
C = (8.854 × 10⁻¹² · 3.2 · 2.5) / 2 - Calculate:
C = (70.832 × 10⁻¹²) / 2 = 35.416 × 10⁻¹² F - Normalize:
C = 35.4 pF
Result: 35.4 pF. This is an ideal magnitude for reading with an Arduino using the CapSense library or a dedicated FDC2214 capacitance-to-digital converter. For deeper background on the physics of dielectric materials, refer to the Georgia State University HyperPhysics database.
Common Unit Traps and Realistic Magnitudes
If your calculated answer looks absurd, you likely fell into one of these unit traps. Always sanity-check your result against realistic magnitudes.
| The Mistake | The Consequence | The Fix |
|---|---|---|
| Using cm² instead of m² for Area | Result is off by a factor of 10,000 (10⁴) | Multiply cm² by 10⁻⁴ to get m² |
| Using mm instead of m for Distance | Result is off by a factor of 1,000 (10³) | Multiply mm by 10⁻³ to get m |
| Confusing ε₀ with εᵣ | Result is off by 12 orders of magnitude | ε₀ is always 8.854×10⁻¹²; εᵣ is a small integer (1 to 10,000) |
Realistic Magnitude Sanity Check:
- PCB Parasitics / RF Traces: 0.1 pF to 10 pF
- Custom Touch Sensors: 10 pF to 100 pF
- Ceramic Decoupling (MLCC): 1 nF to 100 µF
- Aluminum Electrolytic Bulk Storage: 10 µF to 10,000 µF
- Supercapacitors: 0.1 F to 3,000 F
Decision Path: From Calculated Value to Physical Part Number
Calculating the required capacitance is only half the battle. If your circuit math dictates you need a 4.7 µF capacitor for a buck converter output filter, you cannot just buy "any 4.7 µF capacitor." Dielectric physics drastically alter real-world behavior. Use this decision tree to terminate your calculation into a concrete part selection.
| Condition / Requirement | Dielectric / Topology | Why It Wins |
|---|---|---|
| High Frequency (>1 MHz), C < 1 µF, Standard Logic | X7R / X5R MLCC (Ceramic) | Ultra-low ESL/ESR, handles fast transient switching edges. |
| High Voltage (>50V DC), Audio Signal Path | Polypropylene Film (MKP) | Zero microphonics, linear voltage coefficient, no piezoelectric ringing. |
| Bulk Storage, Low Frequency, C > 47 µF | Aluminum Electrolytic | Highest energy density per dollar, handles large ripple currents. |
| High DC Bias Voltage on MLCC (>12V on a 16V rated part) | Class I (C0G/NP0) or Upsized Class II | X7R loses up to 50% capacitance under DC bias; C0G remains stable. |
The Concrete Default Recommendation
If your circuit calculations yield a requirement between 100 nF and 1 µF for general-purpose 5V logic decoupling, filtering, or timing, do not overthink the BOM. The industry-standard, default concrete pick is a 0603 X7R MLCC. Specifically, order the Murata GRM188R71H105KE14D (1 µF, 50V, 0603 package). The 50V rating ensures that even at 5V or 12V operating rails, the DC bias degradation is virtually zero, giving you the exact 1 µF your math demanded without requiring a larger, more expensive 1206 footprint.






