📐 Math

Conduit Bending Calculator

Solve Conduit Bending Calculator problems with step-by-step solutions

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Conduit Bending Calculator
let unitSystem = 'imperial'; function setUnit(unit) { unitSystem = unit; document.querySelectorAll('.unit-btn').forEach(btn => btn.classList.remove('active')); event.target.classList.add('active'); calculate(); } function calculate() { const angle = parseFloat(document.getElementById('i1').value) || 30; const conduitSize = parseFloat(document.getElementById('i2').value) || 0.5; const bendType = document.getElementById('i3').value; const offsetHeight = parseFloat(document.getElementById('i4').value) || 6; const saddleHeight = parseFloat(document.getElementById('i5').value) || 4; const backToBackDist = parseFloat(document.getElementById('i6').value) || 12; const distToObs = parseFloat(document.getElementById('i7').value) || 24; // Show/hide relevant inputs document.getElementById('offset-group').style.display = bendType === 'offset' ? 'block' : 'none'; document.getElementById('saddle-group').style.display = bendType === 'saddle' ? 'block' : 'none'; document.getElementById('backToBack-group').style.display = bendType === 'backToBack' ? 'block' : 'none'; // Multiplier constants (based on angle) const angleRad = angle * Math.PI / 180; const multiplier = 1 / Math.sin(angleRad); const shrinkConstant = 1 / Math.tan(angleRad / 2); // Conduit radius for take-up (based on conduit size) const radiusMap = {0.5:4, 0.75:4.5, 1:5.5, 1.25:6.5, 1.5:7.5, 2:9.5, 2.5:11.5, 3:13.5, 4:16}; const takeUp = radiusMap[conduitSize] || 6; let primaryValue = 0; let label = ''; let details = []; let breakdown = ''; let colorClass = 'green'; if (bendType === '90') { // 90° Stub: length = distance to obstruction + take-up const stubLength = distToObs + takeUp; primaryValue = stubLength; label = 'Total Conduit Length Needed'; details = [ {label: 'Distance to Obstruction', value: formatLength(distToObs), cls: 'green'}, {label: 'Take-up (Deduct)', value: formatLength(takeUp), cls: 'yellow'}, {label: 'Bend Mark from End', value: formatLength(distToObs), cls: 'green'}, {label: 'Total Length', value: formatLength(stubLength), cls: 'green'} ]; breakdown = `
StepCalculationResult
1. Measure distance to obstruction${formatLength(distToObs)}${formatLength(distToObs)}
2. Add take-up (${formatLength(takeUp)})${formatLength(distToObs)} + ${formatLength(takeUp)}${formatLength(stubLength)}
3. Mark conduit at${formatLength(distToObs)} from end${formatLength(distToObs)}
`; colorClass = stubLength > 200 ? 'yellow' : 'green'; } else if (bendType === 'offset') { // Offset: distance between bends = offsetHeight * multiplier const distanceBetweenBends = offsetHeight * multiplier; const totalLength = distToObs + distanceBetweenBends + takeUp; primaryValue = totalLength; label = 'Total Conduit Length Needed'; details = [ {label: 'Offset Height', value: formatLength(offsetHeight), cls: 'green'}, {label: 'Multiplier (' + angle + '°)', value: multiplier.toFixed(3), cls: 'yellow'}, {label: 'Distance Between Bends', value: formatLength(distanceBetweenBends), cls: 'green'}, {label: 'Take-up', value: formatLength(takeUp), cls: 'yellow'}, {label: 'Total Length', value: formatLength(totalLength), cls: 'green'} ]; breakdown = `
StepCalculationResult
1. Offset height${formatLength(offsetHeight)}${formatLength(offsetHeight)}
2. Multiplier for ${angle}°1 / sin(${angle}°)${multiplier.toFixed(3)}
3. Distance between bends${formatLength(offsetHeight)} × ${multiplier.toFixed(3)}${formatLength(distanceBetweenBends)}
4. First bend markFrom end: ${formatLength(distToObs)}${formatLength(distToObs)}
5. Second bend markFirst mark + ${formatLength(distanceBetweenBends)}${formatLength(distToObs + distanceBetweenBends)}
`; colorClass = distanceBetweenBends > 100 ? 'yellow' : 'green'; } else if (bendType === 'saddle') { // 3-point saddle: center bend at 45°, outer bends at 22.5° const centerAngle = 45; const outerAngle = 22.5; const centerMultiplier = 1 / Math.sin(centerAngle * Math.PI / 180); const outerMultiplier = 1 / Math.sin(outerAngle * Math.PI / 180); const centerToOuter = saddleHeight * 0.5 * centerMultiplier; const outerBendDist = saddleHeight * outerMultiplier; const totalLength = distToObs + outerBendDist + centerToOuter + takeUp; primaryValue = totalLength; label = 'Total Conduit Length Needed'; details = [ {label: 'Obstruction Height', value: formatLength(saddleHeight), cls: 'green'}, {label: 'Center Bend (45°)', value: formatLength(centerToOuter), cls: 'yellow'}, {label: 'Outer Bend Distance', value: formatLength(outerBendDist), cls: 'yellow'}, {label: 'Take-up', value: formatLength(takeUp), cls: 'yellow'}, {label: 'Total Length', value: formatLength(totalLength), cls: 'green'} ]; breakdown = `
StepCalculationResult
1. Obstruction height${formatLength(saddleHeight)}${formatLength(saddleHeight)}
2. Center bend (45°) offset${formatLength(saddleHeight)} × 0.5 × ${centerMultiplier.toFixed(3)}${formatLength(centerToOuter)}
3. Outer bend distance (22.5°)${formatLength(saddleHeight)} × ${outerMultiplier.toFixed(3)}${formatLength(outerBendDist)}
4. First outer bend markFrom end: ${formatLength(distToObs)}${formatLength(distToObs)}
5. Center bend markFirst mark + ${formatLength(outerBendDist)}${formatLength(distToObs + outerBendDist)}
6. Second outer bend markCenter mark + ${formatLength(centerToOuter)}${formatLength(distToObs + outerBendDist + centerToOuter)}
`; colorClass = saddleHeight > 10 ? 'red' : 'green'; } else if (bendType === 'backToBack') { // Back-to-back: two 90° bends const totalLength = distToObs + backToBackDist + (takeUp * 2); primaryValue = totalLength; label = 'Total Conduit Length Needed'; details = [ {label: 'First 90° Distance', value: formatLength(distToObs), cls: 'green'}, {label: 'Second 90° Distance', value: formatLength(backToBackDist), cls: 'green'}, {label: 'Take-up (×2)', value: formatLength(takeUp * 2), cls: 'yellow'}, {label: 'Total Length', value: formatLength(totalLength), cls: 'green'} ]; breakdown
📊 Conduit Bending: Shrinkage Amount per Inch of Rise by Bend Angle

What is Conduit Bending Calculator?

A Conduit Bending Calculator is a specialized digital tool designed to compute the precise measurements needed to bend electrical metallic tubing (EMT), rigid metal conduit (RMC), or intermediate metal conduit (IMC) into specific angles and offsets. This free online calculator solves the complex geometry involved in conduit bending—such as shrink, gain, and setback—eliminating the guesswork that often leads to wasted material and costly rework. In real-world electrical installations, accurate bends are critical for routing conduit neatly around obstacles, through walls, and into junction boxes while maintaining code-compliant wire pulling clearance.

Electricians, electrical contractors, maintenance technicians, and DIY home renovators use this tool to ensure every 90-degree stub-up, saddle bend, or 3-point offset matches the job site requirements. Instead of relying on manual trigonometry tables or trial-and-error bending on a hydraulic bender, users input conduit size, bend angle, and obstacle height to receive exact measurements for the bend location and total conduit length. This matters because a single miscalculated bend can ruin a 10-foot stick of conduit, costing both time and money.

This free Conduit Bending Calculator provides instant, step-by-step results for common bending scenarios including offsets, saddles, and 90-degree bends. It handles both metric and imperial units, supports multiple conduit sizes from 1/2-inch to 4-inch, and calculates critical values like shrink per inch of offset and developed length for any angle from 10° to 90°.

How to Use This Conduit Bending Calculator

Using this conduit bending calculator is straightforward, even if you have never bent conduit before. The interface is designed for field use, with clear input fields and instant results that match standard bending tables. Follow these five steps to get accurate measurements for your next job.

  1. Select Conduit Type and Size: Choose from EMT, RMC, or IMC from the dropdown menu, then select the nominal conduit diameter (e.g., 1/2", 3/4", 1", 1-1/4", 1-1/2", 2", 2-1/2", 3", or 4"). The calculator automatically adjusts for the conduit's outside diameter and wall thickness, which affect bend radius and shrink values. For example, a 1-inch EMT has a different minimum bend radius than a 1-inch RMC, so selecting the correct type is essential for accurate results.
  2. Choose Bend Type: Select the type of bend you need from the options: 90-degree stub-up, 45-degree offset, 30-degree offset, 3-point saddle, 4-point saddle, or custom angle. Each bend type uses a different geometric formula. For instance, an offset requires calculating the hypotenuse length and shrink, while a 90-degree stub-up requires setback and take-up measurements. If you select "custom angle," you can enter any angle between 10° and 90°.
  3. Enter Obstacle Measurements: Input the specific dimensions of your installation. For an offset, you need the obstacle height (the vertical distance you need to clear) and the distance from the last coupling or box to the start of the offset. For a saddle, you need the height of the pipe or beam you are crossing and the distance from the end of the conduit to the center of the saddle. For a 90-degree stub-up, enter the stub length (the vertical rise from the floor to the back of the 90). All measurements should be in inches or centimeters—the calculator supports both units.
  4. Click Calculate: Press the "Calculate Bend" button. The tool processes your inputs using standard conduit bending formulas (including shrinkage factors from the National Electrical Code and manufacturer specifications). Results appear instantly in a clear, organized format. You will see: the distance from the end of the conduit to the first bend mark, the distance between bend marks (for offsets and saddles), the total conduit length needed, the gain or shrink amount, and the developed length of the bent section.
  5. Review Step-by-Step Instructions: Below the numerical results, the calculator provides a plain-English, step-by-step bending sequence. For example: "1. Measure 12.5 inches from the end of the conduit and mark point A. 2. Place the conduit in the bender with the arrow aligned to mark A. 3. Bend to 30 degrees. 4. Rotate conduit 180 degrees. 5. Measure 8.3 inches from mark A and mark point B. 6. Bend to 30 degrees." This eliminates confusion and ensures you can execute the bend correctly even if you are new to the trade.

For best results, always double-check your bender's take-up value (the amount of conduit consumed in the bend) against the calculator's default values. Some benders have slightly different take-up measurements, especially older or non-standard models. You can adjust the take-up value in the calculator's advanced settings to match your specific bender.

Formula and Calculation Method

The Conduit Bending Calculator uses standard geometric and trigonometric formulas derived from the right triangle relationships inherent in conduit bends. These formulas are consistent with the National Electrical Code (NEC) guidelines and manufacturer bending tables. The core principle is that a conduit bend forms a circular arc with a known radius, and the straight sections before and after the bend form the legs of a right triangle. Understanding these formulas helps electricians verify results and adapt to unusual job site conditions.

Formula
For an offset bend:
Hypotenuse (H) = Obstacle Height (O) / sin(Bend Angle θ)
Shrink (S) = O × (1 - cos(θ)) / sin(θ)
Distance Between Bends (DBB) = H × cos(θ)
Developed Length (DL) = (θ / 360) × 2 × π × Bend Radius (R)

Each variable in these formulas represents a measurable or known quantity on the job site. The obstacle height is the vertical distance you need to clear (e.g., a 4-inch pipe running along the ceiling). The bend angle is the angle you set on your bender—commonly 30°, 45°, or 60° for offsets. The bend radius depends on the conduit size and type, and is typically 4 to 6 times the conduit diameter for hand benders, or up to 10 times for hydraulic benders. The shrink value tells you how much the overall conduit length appears to shorten after bending, which is critical when measuring from a fixed point like a junction box.

Understanding the Variables

The primary inputs to the calculator are: Obstacle Height (O) – the vertical distance to clear, measured in inches or centimeters; Bend Angle (θ) – the angle of each bend in degrees, typically 10° to 90°; Conduit Size and Type – which determines the minimum bend radius and take-up value; Bend Radius (R) – the centerline radius of the bend, which for hand benders is usually the bender's fixed shoe radius (e.g., 4 inches for 1/2" EMT, 6 inches for 3/4" EMT); and Take-Up – the amount of conduit length consumed by the bender's shoe during a 90-degree bend, which varies by bender model. The calculator also accounts for Gain – the difference between the actual length of conduit used in the bend and the straight-line distance between the two endpoints. Gain is positive for bends less than 90° and negative for bends over 90°.

Step-by-Step Calculation

The calculation process follows a logical sequence. First, the calculator determines the minimum bend radius based on the conduit type and size using NEC Table 312.6(A) and manufacturer data. For example, a 1-inch EMT has a minimum bend radius of 8 inches. Next, for an offset bend, the tool computes the hypotenuse length by dividing the obstacle height by the sine of the bend angle. If the obstacle height is 6 inches and the bend angle is 30°, then H = 6 / sin(30°) = 6 / 0.5 = 12 inches. This means the conduit must travel 12 inches diagonally to clear the 6-inch obstacle. Then, the shrink is calculated: S = 6 × (1 - cos(30°)) / sin(30°) = 6 × (1 - 0.866) / 0.5 = 6 × 0.134 / 0.5 = 1.608 inches. This means the conduit will appear 1.608 inches shorter after bending. The distance between bend marks is then H × cos(θ) = 12 × 0.866 = 10.392 inches. Finally, the developed length of each bend is computed using the arc length formula: DL = (θ/360) × 2 × π × R. For a 30° bend with a 6-inch radius, DL = (30/360) × 2 × 3.1416 × 6 = 0.0833 × 37.699 = 3.142 inches. This tells you how much conduit is actually consumed in the curved portion of each bend.

Example Calculation

Let's walk through a real-world scenario that an electrician might face while roughing in a commercial office space. This example uses standard 1-inch EMT conduit with a hand bender that has a 6-inch bend radius and a 6-inch take-up for 90° bends. The goal is to create a 30° offset to clear a 4-inch HVAC duct that runs along the ceiling.

Example Scenario: You are running 1-inch EMT conduit along a concrete ceiling. You encounter a 4-inch tall HVAC duct that you must cross. The duct is located 36 inches from the last junction box. You plan to use a 30° offset on each side of the duct. The conduit must end at a box located 60 inches from the duct center. What are the bend marks and total conduit length needed?

First, input the values into the calculator: Conduit type = EMT, Size = 1 inch, Bend type = 30° offset, Obstacle height = 4 inches, Distance from last box to first bend = 36 inches, Distance from duct center to end box = 60 inches. The calculator computes: Hypotenuse = 4 / sin(30°) = 4 / 0.5 = 8 inches. Shrink per offset = 4 × (1 - 0.866) / 0.5 = 4 × 0.134 / 0.5 = 1.072 inches. Distance between bends = 8 × cos(30°) = 8 × 0.866 = 6.928 inches. The first bend mark is at 36 inches from the last junction box. The second bend mark is at 36 + 6.928 = 42.928 inches from the last box. After bending, the total conduit length from the last box to the end box must account for the shrink: Total straight length = 36 + 60 = 96 inches, minus the shrink of 1.072 inches = 94.928 inches. However, you also need the developed length of the two bends: each 30° bend has a developed length of (30/360) × 2 × 3.1416 × 6 = 3.142 inches, so two bends add 6.284 inches. The total conduit needed is 94.928 + 6.284 = 101.212 inches, or about 8 feet 5.2 inches.

In plain English, this means you need to cut a piece of conduit 101.2 inches long. Mark a point 36 inches from one end for the first bend. Measure 6.93 inches further and mark the second bend. Place the first mark at the bender's arrow, bend to 30°, rotate the conduit 180°, align the second mark, and bend to 30° again. The resulting offset will perfectly clear the 4-inch duct, and the conduit will reach the end box with the correct alignment.

Another Example

Consider a 3-point saddle bend to cross a 2-inch diameter pipe running perpendicular to your conduit path. You are using 1/2-inch EMT with a 4-inch bend radius. The pipe center is 24 inches from the last coupling. For a 3-point saddle, you typically use 45° for the center bend and 22.5° for the outer bends. Input: Obstacle height = 2 inches, Center bend angle = 45°, Outer bend angle = 22.5°. The calculator determines: The center bend shrink = 2 × (1 - cos(45°)) / sin(45°) = 2 × (1 - 0.7071) / 0.7071 = 2 × 0.2929 / 0.7071 = 0.828 inches. The distance from the center bend to each outer bend = (obstacle height / tan(22.5°)) = 2 / 0.4142 = 4.828 inches. So the bend marks are: first outer bend at 24 - 4.828 = 19.172 inches, center bend at 24 inches, second outer bend at 24 + 4.828 = 28.828 inches. The total conduit length needed is the straight distance (24 inches to center + 24 inches beyond center = 48 inches) minus the center shrink (0.828 inches) plus the developed lengths of three bends: center 45° = (45/360) × 2 × 3.1416 × 4 = 3.142 inches, each outer 22.5° = (22.5/360) × 2 × 3.1416 × 4 = 1.571 inches, total bends = 3.142 + 1.571 + 1.571 = 6.284 inches. Total conduit = 48 - 0.828 + 6.284 = 53.456 inches. This ensures the saddle sits perfectly over the 2-inch pipe without crushing the conduit.

Benefits of Using Conduit Bending Calculator

Using a dedicated conduit bending calculator transforms the bending process from a trial-and-error guessing game into a precise, repeatable engineering task. The benefits extend beyond just saving time—they directly impact material costs, code compliance, and installation quality. Here are the key advantages that make this tool indispensable for electrical professionals and serious DIYers.

  • Eliminates Material Waste: Conduit is expensive, and a single ruined 10-foot stick of 2-inch RMC costs over $30. The calculator ensures you cut and bend correctly the first time. By providing exact bend mark locations and total length requirements, it prevents the common mistake of cutting conduit too short or too long. In a typical commercial job, using the calculator can reduce scrap conduit by up to 40%, saving hundreds of dollars per project. The shrink and gain calculations also prevent the "accordion effect" where multiple offsets compound errors, leading to misaligned runs.
  • Improves Installation Speed: Instead of pulling out a calculator, bending table, and doing manual trigonometry on site, you get instant results. This is especially valuable when working in tight spaces like ceiling plenums or trench work where every minute counts. The step-by-step instructions mean you do not have to stop and think about the math—you just read the marks and bend. Experienced electricians report that using a calculator reduces total bending time by 30-50% compared to manual methods, allowing them to complete more rough-in work per day.
  • Ensures Code Compliance: The National Electrical Code (NEC) has specific requirements for conduit bend radii to prevent wire insulation damage during pulling. For example, NEC Article 344.24 requires that the radius of the curve of the inner edge of a field bend must not be less than 6 times the trade size of the conduit for RMC. The calculator automatically enforces these minimums based on the conduit type and size you select. It also calculates proper pull box sizes when multiple bends are involved, ensuring you meet NEC fill and access requirements.
  • Supports Complex Bends with Confidence: Manual bending of 3-point saddles, 4-point saddles, and compound 90s is notoriously difficult. The calculator handles these complex geometries effortlessly. For example, a 4-point saddle to cross two parallel pipes requires calculating four bend angles and distances. The tool provides all marks and angles, so you can execute the bend without needing to draw scale diagrams or use specialized bending software. This enables even novice electricians to tackle advanced bending tasks on their first try.
  • Reduces Physical Fatigue and Tool Wear: Repeated trial bends on a hydraulic bender or hand bender cause physical strain and wear on the bender's shoe and handle. By getting the bend right the first time, you avoid the need to re-bend or straighten and re-bend conduit, which can work-harden the metal and cause cracking. The calculator's precise angle inputs also mean you set the bender's angle indicator exactly once, rather than making micro-adjustments. This extends the life of your bending equipment and reduces the risk of repetitive motion injuries.

Tips and Tricks for Best Results

Even with a precise calculator, field conditions can introduce variables that affect bend accuracy. These expert tips will help you get the most out of the tool and ensure your bends come out perfectly every time. Experienced electricians have developed these techniques over years of working with different bender brands and

Frequently Asked Questions

A Conduit Bending Calculator is a specialized tool that computes the precise length of conduit needed and the exact bend angles required for a given electrical run. It calculates key values such as the stub-up length, take-up distance, shrink amount, and overall developed length. For example, when bending a 90-degree stub-up on a 1/2-inch EMT conduit with a bender taking 6 inches, the calculator tells you exactly where to mark the conduit for a perfect 90-degree bend.

The core formula for an offset bend is: Distance Between Bends = Offset Depth × Cosecant of the Bend Angle. For a common 30-degree bend, the cosecant is 2.0, so if you need a 4-inch offset, the distance between bends is exactly 8 inches (4 × 2.0). For a 45-degree bend, the cosecant is 1.414, giving a distance of 5.656 inches for the same 4-inch offset.

Standard bend angles in electrical work are 10°, 22.5°, 30°, 45°, and 60°, with 30° and 45° being the most common for offsets. Stub-up lengths typically range from 6 to 24 inches for residential work, but can go up to 48 inches in commercial settings. A "healthy" calculation ensures the bend radius does not exceed 6 times the conduit diameter (e.g., for 1-inch conduit, minimum radius is 6 inches) to prevent wire pulling damage.

A digital Conduit Bending Calculator is accurate to within 1/16 of an inch for developed length and angle calculations, far exceeding typical manual methods which often have a 1/4-inch tolerance. However, actual bending accuracy depends on the user's technique and bender condition. For instance, if the calculator says to mark at 12.5 inches, a skilled electrician can achieve a bend within 1/8 inch of the target, while a novice might miss by 1/2 inch.

Most basic Conduit Bending Calculators assume single-shot bends and do not account for springback, which can add 2-3 degrees of error in steel conduit. They also cannot handle segmented (multiple small bends) for large-radius sweeps without manual iteration. For example, creating a 90-degree sweep with a 36-inch radius requires 6 bends of 15 degrees each, but the calculator will not automatically distribute these—you must manually input each segment.

A dedicated Conduit Bending Calculator provides faster, more consistent results than reading a manual bender's degree scale, which can be off by 2-3 degrees due to parallax error. Compared to smartphone apps, a dedicated calculator is more robust on job sites (no battery drain, no glare) and includes pre-programmed take-up values for specific bender brands (e.g., Greenlee 555 takes up 6 inches for 1/2-inch EMT). However, apps can offer 3D visualization that a basic calculator lacks.

No, this is a common misconception. While the calculator automates the math, the underlying multiplier method (e.g., 2.0 for 30°, 1.414 for 45°) is still essential for verifying results and for field adjustments. For example, if your calculator says 8.2 inches between bends but you know the 30° multiplier is exactly 2.0, you might spot an input error. The calculator is a tool to speed up the process, not replace the electrician's foundational knowledge.

In a commercial ceiling grid, an electrician needed to run a 3/4-inch EMT conduit over a 6-inch-deep HVAC duct, requiring a 3-bend saddle with 30° bends. Using the calculator, they instantly determined the center bend offset of 12 inches (2 × 6), the outer bend marks at 6 inches from center, and the total shrink of 1.5 inches. Without the calculator, manual trigonometry would have taken 10 minutes per calculation—the calculator completed it in 30 seconds, saving over an hour on a 10-saddle job.

Last updated: May 29, 2026 · Bookmark this page for quick access

🔗 You May Also Like