ForHosting KIT · Developer Utilities

Capacitor dielectric field strength calculator

This capacitor dielectric field strength calculator converts applied voltage and plate spacing into the ideal electric field inside a uniform dielectric, then compares that field with the material strength you provide.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

It reports breakdown utilization, safety factor, remaining field margin, maximum theoretical voltage, and voltage headroom. The calculation is useful for an early engineering check, but it does not replace derating rules, qualification testing, or analysis of geometry, temperature, defects, transients, aging, and manufacturing tolerances.

From voltage and spacing to dielectric electric field

For an ideal parallel-plate capacitor with a uniform dielectric, the average electric-field magnitude is applied voltage divided by the distance between plates: E = V/d. This calculator accepts voltage in volts and spacing in millimeters. It converts the result into both volts per meter and kilovolts per millimeter, making direct comparison with common dielectric-strength datasheets straightforward. For example, 1,200 V across 0.5 mm produces 2.4 kV/mm, which is also 2.4 million V/m. The calculation uses voltage magnitude, so enter a positive peak value appropriate to the condition being checked. For DC equipment that is normally the largest steady voltage including tolerance. For pulsed or AC equipment, the relevant peak—not merely an RMS label—may control insulation stress. Plate spacing should represent the actual dielectric thickness along the assumed field path. The simple V/d relationship describes a uniform field and deliberately does not estimate fringing around plate edges, concentration near sharp conductors, void enhancement, surface tracking paths, or fields in layered materials. Those effects can make the local maximum field substantially higher than the reported average. Use this result as a transparent first-pass calculation whose assumptions are easy to audit, then apply the geometry and material analysis required by the product and its governing standard.

Reading utilization, safety factor, and voltage headroom

The supplied dielectric strength is treated as the breakdown field for comparison. Utilization is calculated as electric field divided by dielectric strength, multiplied by one hundred. A result below 100 percent is labeled below_breakdown, exactly 100 percent is at_breakdown, and a result above 100 percent is breakdown_exceeded. Safety factor is the reciprocal comparison: dielectric strength divided by calculated field. A safety factor of 4 means the stated strength is four times the ideal average operating field; it does not automatically mean the design has an approved fourfold safety margin. The breakdown margin subtracts operating field from dielectric strength, while maximum voltage multiplies strength by spacing. Voltage headroom is that theoretical maximum voltage minus the applied voltage and becomes negative when the stated limit is exceeded. These related outputs expose the same comparison in forms useful for different reviews: utilization for dashboards, safety factor for design notes, field margin for materials work, and headroom for voltage budgeting. Do not interpret a positive headroom as certification. Published dielectric strength often depends on specimen thickness, electrode shape, test duration, temperature, humidity, frequency, material lot, and test method. Engineering rules commonly require a working-field limit well below short-duration laboratory breakdown. Compare the result with the derated allowable value required for your application, not with an optimistic headline value when a more representative rating exists.

Choosing inputs and applying the result responsibly

Use the worst credible voltage and the smallest credible dielectric thickness, because tolerances move both terms in the unfavorable direction. Include supply tolerance, switching overshoot, repetitive transients, imbalance, and any voltage redistribution that the circuit can sustain. For spacing, consider compression, coating variation, film thinning, assembly tolerance, and the minimum manufactured dimension rather than only the nominal drawing value. Enter dielectric strength in kV/mm from a source that matches the material grade and test conditions as closely as possible. If a datasheet reports V/mil, V/mm, or MV/m, convert it before calling this calculator; numerically, one kV/mm equals one MV/m. Layered dielectrics need special care because field does not necessarily divide in proportion to physical thickness: permittivity, interfaces, trapped charge, and defects affect the distribution, so a single total spacing can conceal overstress in one layer. Gas gaps, contaminated surfaces, and partial-discharge inception also require dedicated methods rather than a bulk-solid breakdown comparison. The API is deterministic and costs $0.002 per successful request, while the browser version can perform the same arithmetic locally. That makes it suitable for repeatable design-table generation and automated screening. A strong workflow records input sources and assumptions, checks the reported assessment, applies the organization’s required derating, and sends borderline or safety-critical designs to simulation, standards review, and physical testing before release.

Screen a capacitor insulation concept

Compare the ideal average field with a candidate film or ceramic dielectric strength before committing to detailed geometry and tolerance analysis.

Build a voltage derating worksheet

Generate consistent utilization, safety-factor, and voltage-headroom values for several nominal voltages and minimum dielectric thicknesses.

Review an insulation test condition

Translate a specified test voltage and specimen thickness into field stress so it can be compared with the relevant material data and test method.

What formula does the calculator use?

It uses the ideal uniform-field relationship E = V/d, then compares E with the dielectric strength you supply.

Should I enter AC RMS voltage or peak voltage?

Use the voltage magnitude appropriate to the breakdown criterion and material data. Peak voltage is commonly relevant for instantaneous field stress; follow the applicable standard for your design.

Does below_breakdown mean the capacitor is safe?

No. It only means the calculated ideal average field is below the supplied strength. Required derating, local field enhancement, tolerances, aging, transients, temperature, partial discharge, and qualification tests still apply.

Why can voltage headroom be negative?

Negative headroom means the applied voltage is greater than dielectric strength multiplied by spacing, so the ideal calculation already exceeds the stated breakdown field.

Can I use total thickness for a multilayer dielectric?

Not reliably. Different permittivities and interfaces can redistribute the field, so each layer may need a separate electrostatic analysis.

What does the API cost?

Each successful API request costs $0.002. The same deterministic calculation is available free in the browser.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/elec/dielectric-field-strength

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/elec/dielectric-field-strength \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"voltage_v":1200,"plate_spacing_mm":0.5,"dielectric_strength_kv_per_mm":10}'
{
  "voltage_v": 1200,
  "plate_spacing_mm": 0.5,
  "dielectric_strength_kv_per_mm": 10
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "elec.dielectric_field_strength",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →