The Core Formula of Capacitance with Dielectric
When you insert an insulating material between the conductive plates of a capacitor, you increase its ability to store electrical charge. The direct answer for the formula of capacitance with dielectric is:
C = (εr · ε0 · A) / d
This equation defines the capacitance of an ideal parallel-plate capacitor. Below is the spec-sheet breakdown of every symbol, its standard SI unit, and its physical meaning.
| Symbol | Parameter | SI Unit | Definition & Bench Context |
|---|---|---|---|
| C | Capacitance | Farads (F) | Total charge storage capacity. Usually measured in pF, nF, or µF on the bench. |
| εr (or k) | Relative Permittivity (Dielectric Constant) | Dimensionless | Ratio of the material's permittivity to a vacuum. Air is ~1.0; FR4 is ~4.5; Barium Titanate is >1000. |
| ε0 | Vacuum Permittivity | F/m | A physical constant: 8.854 × 10-12 F/m. |
| A | Plate Area | Square meters (m²) | The overlapping surface area of the two conductive plates. |
| d | Separation Distance | Meters (m) | The thickness of the dielectric layer between the plates. |
Rearranged Forms
On the bench, you rarely solve for C blindly; you usually have a target capacitance and need to figure out the physical dimensions. Here are the rearranged forms solving for each variable:
- Solve for Area (A):
A = (C · d) / (εr · ε0) - Solve for Distance (d):
d = (εr · ε0 · A) / C - Solve for Dielectric Constant (εr):
εr = (C · d) / (ε0 · A)
Assumptions, Unit Traps, and Realistic Magnitudes
Before plugging numbers into your calculator, you must understand the boundaries of this formula. According to Georgia State University's HyperPhysics, this formula assumes a uniform electric field. This holds true only when the plate dimensions are vastly larger than the separation distance ($d \ll \sqrt{A}$). If your plates are small and far apart, fringe fields at the edges distort the capacitance, and the formula will overestimate your actual measured value.
Unit Mistakes That Break the Math
The most common reason DIY capacitor builds fail on paper is unit mismanagement. Watch out for these specific traps:
- The Area Trap (cm² vs m²): If you measure your copper pour in square centimeters but forget to convert to square meters, your calculated capacitance will be off by a factor of 10,000. ($1 \text{ cm}^2 = 0.0001 \text{ m}^2$).
- The Thickness Trap (mils vs meters): Dielectric films are often sold in 'mils' (thousandths of an inch). If you plug '2' (for 2 mils) directly into the $d$ variable as meters, your math is ruined. Convert mils to meters first ($1 \text{ mil} = 2.54 \times 10^{-5} \text{ m}$).
- The Permittivity Confusion: Mixing up absolute permittivity ($\varepsilon = \varepsilon_r \cdot \varepsilon_0$) with relative permittivity ($\varepsilon_r$). The formula requires the dimensionless $\varepsilon_r$ multiplied by the vacuum constant.
What a Realistic Answer Magnitude Looks Like
If you are building a parallel-plate capacitor on your workbench using plastic films, glass, or PCB material, your result will almost always land in the picofarad (pF) to low nanofarad (nF) range. If your math tells you that a 10cm x 10cm capacitor with a plastic dielectric yields 5 Farads, you dropped a decimal. Supercapacitors achieve Farad-level storage using nanometer-thick electrochemical double layers and activated carbon, not macro-scale solid dielectrics.
Worked Problem 1: Sizing an FR4 PCB Parasitic Capacitor
Scenario: You are designing a high-frequency RF filter and need to account for the parasitic capacitance between two large copper ground pours on a standard 2-layer PCB. The top and bottom pours overlap perfectly.
Given:
- Overlapping Area ($A$) = 15 cm²
- PCB Thickness / Dielectric distance ($d$) = 1.6 mm
- FR4 Dielectric Constant ($\varepsilon_r$) = 4.5
Step-by-Step Solution:
- Convert to SI base units:
$A = 15 \text{ cm}^2 \times (10^{-4} \text{ m}^2 / 1 \text{ cm}^2) = 0.0015 \text{ m}^2$
$d = 1.6 \text{ mm} \times (10^{-3} \text{ m} / 1 \text{ mm}) = 0.0016 \text{ m}$ - Apply the formula:
$C = (4.5 \times 8.854 \times 10^{-12} \text{ F/m} \times 0.0015 \text{ m}^2) / 0.0016 \text{ m}$ - Calculate numerator:
$4.5 \times 8.854 \times 10^{-12} \times 0.0015 = 5.976 \times 10^{-14}$ - Divide by distance:
$C = 5.976 \times 10^{-14} / 0.0016 = 3.735 \times 10^{-11} \text{ F}$ - Convert to standard engineering units:
$3.735 \times 10^{-11} \text{ F} = 37.35 \text{ pF}$
Result: The parasitic capacitance is 37.35 pF. At 100 MHz, this presents an impedance of roughly 42 ohms, which will severely degrade your RF signal if not accounted for in the simulation.
Worked Problem 2: Calculating Dielectric Thickness for a Snubber
Scenario: You need to build a custom 2.2 nF snubber capacitor for a switching power supply using Polypropylene film. You have a constrained winding machine that limits the maximum overlapping foil area to 0.08 m².
Given:
- Target Capacitance ($C$) = 2.2 nF
- Area ($A$) = 0.08 m²
- Polypropylene Dielectric Constant ($\varepsilon_r$) = 2.2
Step-by-Step Solution:
- Convert to SI base units:
$C = 2.2 \text{ nF} = 2.2 \times 10^{-9} \text{ F}$ - Rearrange formula to solve for distance ($d$):
$d = (\varepsilon_r \cdot \varepsilon_0 \cdot A) / C$ - Plug in values:
$d = (2.2 \times 8.854 \times 10^{-12} \text{ F/m} \times 0.08 \text{ m}^2) / (2.2 \times 10^{-9} \text{ F})$ - Calculate:
Notice that the $2.2$ in the numerator and denominator cancel out beautifully.
$d = (8.854 \times 10^{-12} \times 0.08) / 10^{-9}$
$d = 7.083 \times 10^{-13} / 10^{-9} = 7.083 \times 10^{-4} \text{ m}$ - Convert to practical manufacturing units:
$7.083 \times 10^{-4} \text{ m} = 0.708 \text{ mm}$ (or roughly 27.9 mils).
Result: You need a Polypropylene film thickness of 0.71 mm to hit exactly 2.2 nF with that winding area.
Bench War Story: The HDPE Pulse Capacitor Failure
Theory is clean; the workbench is not. Here is a real-world scenario demonstrating what happens when you trust the formula but ignore the material physics.
The Setup: A hobbyist was building a pulse-forming network for a coilgun and needed a 100 nF capacitor rated for 3,000V. Commercial pulse caps were backordered and expensive. They decided to build a DIY parallel-plate capacitor using copper foil tape and 2mm thick High-Density Polyethylene (HDPE) cutting boards ($\varepsilon_r \approx 2.3$).
The Numbers:
Using the rearranged area formula: $A = (C \cdot d) / (\varepsilon_r \cdot \varepsilon_0)$
$A = (100 \times 10^{-9} \text{ F} \times 0.002 \text{ m}) / (2.3 \times 8.854 \times 10^{-12})$
$A = 9.78 \text{ m}^2$.
To achieve this, they cut ten 1m x 1m squares of copper foil and sandwiched them between eleven 1m x 1m sheets of 2mm HDPE, stacking them in parallel to sum the capacitance.
The Outcome:
They connected the stack to a high-voltage supply. At 1,800V, a loud crack echoed through the shop. The capacitor shorted internally, melting a hole through the HDPE and vaporizing a section of the copper foil. The capacitance dropped to zero.
What Went Wrong:
The formula of capacitance with dielectric only tells you how much charge the geometry will hold; it tells you absolutely nothing about dielectric breakdown strength. According to material data from the National Physical Laboratory (NPL), HDPE has a bulk dielectric strength of roughly 18 kV/mm. At 1,800V across 2mm, the bulk field was only 0.9 kV/mm—well within limits.
However, the builder ignored edge effects. The copper foil was cut with sharp, slightly burred scissors. At the sharp edges of the foil, the electric field concentrated massively (fringe fields), easily exceeding the local breakdown threshold of the plastic. Furthermore, microscopic air gaps ($\varepsilon_r = 1.0$) trapped between the foil and the rigid HDPE took a disproportionate share of the voltage gradient due to the series-capacitance effect of the air gap, leading to partial discharge (corona) that eventually carbonized the plastic and caused a dead short.
Quick Reference: Dielectric Constants and Breakdown Limits
When using the capacitance formula to design physical components, you must cross-reference your $\varepsilon_r$ choice with the material's dielectric strength. Here is a spec-sheet table of common bench materials to guide your design.
| Material | Dielectric Constant (εr) | Typical Breakdown Strength | Best Application |
|---|---|---|---|
| Air / Vacuum | 1.0006 | ~3 kV/mm | Variable tuning caps, high-voltage RF gaps. |
| Polypropylene (PP) | 2.2 | ~600 V/mil (23 kV/mm) | Audio crossovers, snubber circuits, high-Q resonant tanks. |
| FR4 (Glass Epoxy) | 4.2 - 4.8 | ~500 V/mil (19 kV/mm) | PCB parasitic capacitance, embedded decoupling. |
| HDPE | 2.3 | ~450 V/mil (18 kV/mm) | Diy high-voltage insulation (avoid sharp foil edges). |
| Barium Titanate (Ceramic) | 1,200 - 10,000+ | Variable (highly thickness dependent) | Surface mount MLCCs, high-density decoupling. |
For deeper reading on how dielectric polarization affects these constants at different frequencies, review the All About Circuits textbook chapter on capacitance factors. Remember: the formula gives you the ideal geometry, but the material's physical limits dictate whether your capacitor survives the first power-on test.






