ForHosting KIT · Developer Utilities

Conductor ampacity derating calculator

This conductor ampacity derating calculator applies a standard adjustment factor to a wire's base allowable ampacity when multiple current-carrying conductors share a raceway or cable.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter the ampacity established before bundling and the conductor count, and the calculator returns the applicable percentage, adjusted ampacity, and reduction in amperes. It is a focused planning and checking tool: it does not select wire size, determine which conductors count, or replace the temperature, terminal, ambient, and installation rules required by the electrical code used for a project.

Start with the correct base ampacity and conductor count

The calculation begins with the allowable ampacity that applies before the bundling adjustment. That value should already reflect the conductor material, insulation temperature rating, wire size, and any terminal-temperature limitation that governs the installation. Do not enter a breaker rating merely because it is convenient; the input is the conductor's applicable starting ampacity. Next, count the current-carrying conductors sharing the raceway or cable. Grounding and bonding conductors normally do not carry load current and are not automatically part of that count, while neutrals require closer attention because their treatment depends on the circuit and the governing rules. This calculator deliberately asks for the final count instead of guessing from a circuit description. That keeps the arithmetic transparent and lets a qualified user apply the correct local interpretation. When conductors pass through a short nipple, are spaced rather than bundled, or fall under a specific exception, the governing code may change whether adjustment is needed. Resolve those facts before relying on the result.

Understand how the adjustment factor is applied

The calculator selects one factor from the conductor-count table: one through three conductors use 100 percent, four through six use 80 percent, seven through nine use 70 percent, ten through twenty use 50 percent, twenty-one through thirty use 45 percent, thirty-one through forty use 40 percent, and forty-one or more use 35 percent. It multiplies the base ampacity by that percentage and reports both the adjusted ampacity and the reduction. For example, a 75 ampere starting value with eight current-carrying conductors uses the 70 percent band, producing 52.5 amperes. The boundaries matter: six conductors remain in the 80 percent band, but the seventh moves the bundle into the 70 percent band. The output preserves up to six decimal places so fractional starting values remain useful without introducing unstable floating-point noise. No hidden rounding to a preferred breaker size or conductor size occurs. That separation is intentional because equipment protection and conductor selection involve additional rules that a simple multiplication cannot safely decide.

Use the result as one step in an installation review

Treat the adjusted ampacity as an intermediate limit, not as automatic approval of a design. Ambient-temperature correction may also apply, and the order or combination of correction and adjustment factors must follow the governing electrical code. Terminal ratings, conductor insulation limits, rooftop exposure, cable construction, continuous-load sizing, motor rules, and overcurrent-device provisions can all impose a lower usable value or affect the final selection. A practical workflow is to document the base ampacity source, record exactly which conductors were counted, run this calculation, apply any other required corrections, and compare the resulting allowable ampacity with the calculated load and protective device. Save those assumptions with the result so another reviewer can reproduce the decision. This tool is especially useful for quickly comparing routing options: splitting a crowded raceway into two may move each group into a less severe factor band. Because requirements vary by adopted code edition and jurisdiction, confirm the final design with the authority having jurisdiction or a qualified electrical professional before installation.

Check a crowded conduit

Apply the conductor-count factor to the established ampacity before comparing the circuit with its design load.

Compare routing alternatives

See how dividing conductors between raceways changes the adjustment band and the resulting allowable ampacity.

Document a design review

Record the starting ampacity, current-carrying conductor count, selected percentage, and calculated reduction for review.

What does the calculation cost?

It costs $0.002 per API request and can also run free in the browser.

Does the equipment grounding conductor count?

Grounding and bonding conductors normally are not current-carrying conductors, but confirm the classification under the code governing the installation.

Does a neutral conductor count?

Sometimes. Neutral treatment depends on circuit configuration and harmonic loading, so determine the applicable count before entering it.

Does this calculator include ambient-temperature correction?

No. It applies only the conductor-count adjustment factor to the base ampacity you provide.

Can I use the result to choose a breaker?

Not by itself. Overcurrent protection, load type, terminal ratings, and other code provisions must also be evaluated.

Which adjustment bands are used?

The bands are 1–3 at 100%, 4–6 at 80%, 7–9 at 70%, 10–20 at 50%, 21–30 at 45%, 31–40 at 40%, and 41 or more at 35%.

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/home/ampacity-derate

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/home/ampacity-derate \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ampacity":75,"current_carrying_conductors":8}'
{
  "ampacity": 75,
  "current_carrying_conductors": 8
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "home.ampacity_derate",
  "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 →