Belleville Spring Calculator

.belleville-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; line-height: 1.6; } .belleville-calc-container h2 { color: #0056b3; margin-top: 0; text-align: center; } .belleville-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .belleville-input-group { display: flex; flex-direction: column; } .belleville-input-group label { font-weight: 600; margin-bottom: 5px; font-size: 14px; } .belleville-input-group input, .belleville-input-group select { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .belleville-calc-btn { grid-column: span 2; background-color: #0056b3; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s; } .belleville-calc-btn:hover { background-color: #004494; } .belleville-results { margin-top: 25px; padding: 20px; background-color: #fff; border-radius: 4px; border-left: 5px solid #0056b3; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .belleville-result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .belleville-result-row:last-child { border-bottom: none; } .belleville-result-label { font-weight: bold; } .belleville-result-value { color: #0056b3; font-weight: 800; } .belleville-article { margin-top: 40px; } .belleville-article h3 { color: #333; border-bottom: 2px solid #0056b3; display: inline-block; padding-bottom: 5px; } @media (max-width: 600px) { .belleville-grid { grid-template-columns: 1fr; } .belleville-calc-btn { grid-column: 1; } }

Belleville Spring (Coned-Disk) Calculator

Spring Steel Stainless Steel Copper Alloy Chrome Vanadium
Diameter Ratio (δ):
Internal Height (h₀):
Spring Force (P):
Spring Constant (Initial Rate):

What is a Belleville Spring?

A Belleville spring, also known as a coned-disk spring or Belleville washer, is a type of spring shaped like a frustum of a cone. This unique geometry allows the spring to provide very high loads in restricted axial spaces with relatively small deflections. They are widely used in industrial applications such as bolted joints, clutch mechanisms, and pressure relief valves.

The Almen-Laszlo Equations

The calculation of Belleville spring forces is primarily based on the Almen-Laszlo equations. Unlike standard coil springs, the rate of a Belleville spring is non-linear. The relationship between load and deflection depends heavily on the ratio of the internal height (h) to the thickness (t).

  • Linear: If h/t < 0.4, the spring is almost linear.
  • Regressive: If 0.4 < h/t < 1.414, the spring rate decreases as deflection increases.
  • Constant Load: If h/t = 1.414, the spring reaches a plateau where the load remains constant for a portion of the deflection.

Calculation Example

Suppose you have a steel Belleville washer (E = 206,000 N/mm²) with an Outer Diameter of 50mm, Inner Diameter of 25.4mm, thickness of 2mm, and a total height of 3.5mm. If you compress it by 0.75mm:

  1. Internal Height (h): 3.5mm – 2mm = 1.5mm.
  2. Diameter Ratio (δ): 50 / 25.4 = 1.968.
  3. Force Calculation: Using the constants K1, K2, K3 derived from δ, the load is calculated based on the third-degree polynomial of deflection.
  4. Result: For these parameters, the force exerted would be approximately 4,280 Newtons.

Applications of Coned-Disk Springs

Belleville springs are favored in high-tension applications. In bolted joints, they maintain preload even when thermal expansion or vibration occurs. In clutches, they provide the necessary clamping force in a very compact package. They can also be "stacked" in series to increase deflection or in parallel to increase load capacity.

function updateMaterial() { var matSelect = document.getElementById("materialType"); document.getElementById("modulus").value = matSelect.value; } function calculateBelleville() { var De = parseFloat(document.getElementById("outerDia").value); var Di = parseFloat(document.getElementById("innerDia").value); var t = parseFloat(document.getElementById("thickness").value); var Lo = parseFloat(document.getElementById("totalHeight").value); var f = parseFloat(document.getElementById("deflection").value); var E = parseFloat(document.getElementById("modulus").value); var mu = parseFloat(document.getElementById("poisson").value); if (isNaN(De) || isNaN(Di) || isNaN(t) || isNaN(Lo) || isNaN(f) || De <= Di || Lo <= t) { alert("Please enter valid dimensions. Outer Diameter must be greater than Inner, and Height must be greater than Thickness."); return; } var delta = De / Di; var h = Lo – t; // K1 constant calculation based on Almen-Laszlo var pi = Math.PI; var lnDelta = Math.log(delta); var K1 = (1 / pi) * Math.pow(((delta – 1) / delta), 2) / (((delta + 1) / (delta – 1)) – (2 / lnDelta)); // Calculation of Force P // Formula: P = [4E / (1 – mu^2)] * [t^4 / (K1 * De^2)] * (f/t) * [(h/t – f/t)*(h/t – f/(2*t)) + 1] var term1 = (4 * E) / (1 – Math.pow(mu, 2)); var term2 = Math.pow(t, 4) / (K1 * Math.pow(De, 2)); var term3 = f / t; var term4 = ( (h / t) – (f / t) ) * ( (h / t) – (f / (2 * t)) ) + 1; var force = term1 * term2 * term3 * term4; // Spring Constant (Initial) R = (4E / (1-mu^2)) * (t^3 * h / (K1 * De^2)) var initialRate = term1 * (Math.pow(t, 3) / (K1 * Math.pow(De, 2))) * ( (h/t)*(h/t) + 1 ); // Display results document.getElementById("resultsArea").style.display = "block"; document.getElementById("resRatio").innerText = delta.toFixed(3); document.getElementById("resInternalHeight").innerText = h.toFixed(2) + " mm"; document.getElementById("resForce").innerText = force.toFixed(2) + " N"; document.getElementById("resRate").innerText = initialRate.toFixed(2) + " N/mm"; }

Leave a Reply

Your email address will not be published. Required fields are marked *