ForHosting KIT · Developer Utilities

Coaxial cable impedance calculator

This coaxial cable impedance calculator finds the ideal characteristic impedance from the inside diameter of the outer conductor, the outside diameter of the inner conductor, and the dielectric material's relative permittivity.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter both diameters in any shared unit, such as millimetres or inches, because only their ratio affects the result. The calculator returns impedance in ohms using the standard lossless coaxial-line relationship, making it useful for early cable design, geometry checks, and comparisons between dielectric materials.

Enter the conductor geometry correctly

Use the inside diameter of the outer conductor for outer_diameter and the outside diameter of the centre conductor for inner_diameter. These are the two conductive surfaces facing the dielectric, so jacket thickness and the outside size of the shield do not belong in the calculation. Both diameter values must use the same unit. Millimetres, inches, or any other linear unit work equally well because the formula uses the ratio between them, not their absolute scale. The outer diameter must be strictly greater than the inner diameter; otherwise there is no annular dielectric region and the proposed coaxial geometry is invalid. Enter diameter rather than radius unless you consistently convert both values. Using both radii would produce the same ratio, but mixing one radius with one diameter would give a misleading result. Measurements should describe a concentric cable. Significant eccentricity, deformation, braid structure, or manufacturing tolerance can make a physical cable differ from this ideal estimate.

Understand the dielectric constant and formula

The dielectric_constant input is relative permittivity, often written as epsilon r. It is dimensionless and must be positive. Use the effective value for the material and construction between conductors rather than an unrelated bulk-material figure when accurate design work matters. The calculator evaluates 60 times the natural logarithm of the outer-to-inner diameter ratio, divided by the square root of relative permittivity. This is the standard closed-form expression for the characteristic impedance of an ideal, uniform, lossless coaxial transmission line with nonmagnetic materials. A larger diameter ratio raises impedance, while a higher dielectric constant lowers it. The result is rounded to six decimal places for stable machine-readable output. The calculation does not model conductor resistance, dielectric loss tangent, surface roughness, frequency-dependent dispersion, connectors, or discontinuities. Those effects influence real insertion loss and impedance behaviour, but they are separate from the ideal geometric characteristic impedance calculated here.

Use the result in cable and RF design

Compare the returned impedance with the target impedance of the source, load, connector, and surrounding transmission system. Common systems are designed around a consistent nominal impedance, and an unintended mismatch can create reflections, standing waves, and reduced power transfer. During preliminary design, vary one input at a time to see whether changing the centre conductor, shield spacing, or dielectric brings the geometry closer to the target. Keep realistic production tolerances in mind: a mathematically exact result does not guarantee every manufactured length will have that exact impedance. For an existing cable, use dimensions taken at the conductor boundaries and the best available effective permittivity, then treat the answer as an engineering estimate. Precision verification still calls for appropriate measurement, such as a time-domain reflectometer or vector network analyser, especially across a required frequency band. The API uses the same deterministic calculation as the browser tool and costs $0.002 per request, which makes repeated design sweeps and automated validation straightforward.

Size a custom coaxial geometry

Check whether a proposed centre conductor, shield spacing, and dielectric produce the target characteristic impedance.

Compare dielectric materials

Hold conductor dimensions constant and compare how candidate dielectric constants change the predicted impedance.

Validate cable design data

Recalculate impedance from documented dimensions and permittivity to catch inconsistent specifications early.

What units should I use for the diameters?

Use any linear unit, provided both diameters use the same one. Their ratio is dimensionless, and the result is always returned in ohms.

Which outer diameter does the formula require?

Use the inside diameter of the outer conductor, measured at the conductive surface facing the dielectric, not the cable jacket diameter.

What should I enter for dielectric constant?

Enter the positive relative permittivity of the dielectric between the conductors. For precision work, use an effective value appropriate to the actual construction and frequency.

Why must the outer diameter exceed the inner diameter?

A coaxial geometry needs space between the centre conductor and the surrounding conductor. Equal or reversed diameters cannot describe that physical arrangement.

Does this include cable loss and frequency effects?

No. It calculates ideal characteristic impedance from geometry and relative permittivity; it does not model resistance, dielectric loss, roughness, connectors, or dispersion.

What does an API request cost?

Each API request costs $0.002. The browser calculation is available without an API request.

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/cable-impedance

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/cable-impedance \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"outer_diameter":10,"inner_diameter":2.3,"dielectric_constant":2.1}'
{
  "outer_diameter": 10,
  "inner_diameter": 2.3,
  "dielectric_constant": 2.1
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "elec.cable_impedance",
  "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 →