Tire Spring Rate Calculator

Tire Spring Rate Calculator .tsr-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; color: #333; } .tsr-header { text-align: center; margin-bottom: 30px; background: #2c3e50; color: #fff; padding: 20px; border-radius: 6px; } .tsr-header h2 { margin: 0; font-size: 24px; } .tsr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 768px) { .tsr-grid { grid-template-columns: 1fr; } } .tsr-input-group { margin-bottom: 20px; } .tsr-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .tsr-input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .tsr-input-group .hint { font-size: 12px; color: #666; margin-top: 4px; } .tsr-btn { width: 100%; padding: 15px; background-color: #e74c3c; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; margin-top: 10px; } .tsr-btn:hover { background-color: #c0392b; } .tsr-results { margin-top: 30px; background: #fff; padding: 25px; border-radius: 6px; border-left: 5px solid #e74c3c; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: none; } .tsr-result-item { margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 10px; } .tsr-result-item:last-child { border-bottom: none; margin-bottom: 0; } .tsr-result-label { font-weight: 600; color: #555; } .tsr-result-value { font-size: 20px; font-weight: 700; color: #2c3e50; } .tsr-article { margin-top: 50px; line-height: 1.6; color: #444; } .tsr-article h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .tsr-article p { margin-bottom: 15px; } .tsr-article ul { margin-bottom: 15px; padding-left: 20px; } .tsr-article li { margin-bottom: 8px; } .error-msg { color: red; font-size: 14px; margin-top: 5px; display: none; }

Tire Spring Rate Calculator

Calculate the vertical stiffness of your tires based on load and deflection.

The weight supported by this specific tire.
Distance from hub center to top of tire (lifted).
Distance from hub center to ground (on ground).
Please ensure Loaded Radius is less than Unloaded Radius and all fields are filled.
Tire Deflection:
Tire Spring Rate (Imperial):
Tire Spring Rate (Metric):
Effective Stiffness Rating:

What is Tire Spring Rate?

Tire Spring Rate refers to the vertical stiffness of a tire. Just like the metal coil springs in your vehicle's suspension, the air-filled tire acts as a spring. It compresses under load and rebounds when the load is removed. This rate is typically measured in pounds per inch (lbs/in) or Newtons per millimeter (N/mm).

Understanding your tire spring rate is crucial for advanced suspension tuning. The tire provides the initial compliance to road surface irregularities. A tire with a high spring rate (stiff) offers sharper handling response but less grip on bumpy surfaces, while a lower spring rate (soft) absorbs bumps better but may feel vague in corners.

How to Calculate Tire Spring Rate

While tire engineers use complex machinery to map spring rates across different camber angles and pressures, you can calculate the Linear Vertical Spring Rate using the formula:

K = Load / (Unloaded Radius – Loaded Radius)

  • Load: The weight resting on that specific tire (Corner Weight).
  • Unloaded Radius: The radius of the tire when the car is jacked up (no weight).
  • Loaded Radius: The distance from the wheel center to the ground when the car is resting on its wheels.

The "Series Spring" Effect

It is important to remember that your suspension spring and your tire act as two springs in a series. This means the Total Wheel Rate is actually softer than the softer of the two springs. The formula for the combined rate is:

1 / Total Rate = 1 / Tire Rate + 1 / Suspension Rate

If you install very stiff coilover springs but run soft tires (low pressure or tall sidewalls), the actual stiffness at the wheel will be significantly dominated by the tire's compliance. Tuning tire pressure is essentially tuning your spring rate; increasing pressure generally increases the tire's spring rate.

Factors Affecting Tire Stiffness

  • Air Pressure: The most significant variable. Higher pressure equals a higher spring rate.
  • Sidewall Height (Aspect Ratio): Lower profile tires (e.g., 30 or 35 series) have shorter, stiffer sidewalls and higher spring rates than tall tires (e.g., 60 or 70 series).
  • Construction: Run-flat tires and high-performance tires with reinforced sidewalls have naturally higher spring rates.
function calculateTireRate() { // 1. Get input values var weightStr = document.getElementById("cornerWeight").value; var unloadedStr = document.getElementById("unloadedRadius").value; var loadedStr = document.getElementById("loadedRadius").value; var errorDiv = document.getElementById("errorMsg"); var resultsDiv = document.getElementById("resultsArea"); // 2. Parse values var weight = parseFloat(weightStr); var unloaded = parseFloat(unloadedStr); var loaded = parseFloat(loadedStr); // 3. Validation if (isNaN(weight) || isNaN(unloaded) || isNaN(loaded)) { errorDiv.style.display = "block"; errorDiv.innerHTML = "Please enter valid numbers in all fields."; resultsDiv.style.display = "none"; return; } if (loaded >= unloaded) { errorDiv.style.display = "block"; errorDiv.innerHTML = "Loaded Radius must be smaller than Unloaded Radius to calculate deflection."; resultsDiv.style.display = "none"; return; } if (weight <= 0) { errorDiv.style.display = "block"; errorDiv.innerHTML = "Corner Weight must be greater than zero."; resultsDiv.style.display = "none"; return; } // Hide error if validation passes errorDiv.style.display = "none"; // 4. Calculation Logic var deflection = unloaded – loaded; var springRateLbs = weight / deflection; // Convert to Metric: 1 lb/in approx 0.175127 N/mm var springRateN = springRateLbs * 0.175127; // 5. Determine Rating (Heuristic) var rating = ""; if (springRateLbs = 1000 && springRateLbs = 2000 && springRateLbs < 3000) { rating = "Stiff / Track Day"; } else { rating = "Very Stiff / Racing Slick"; } // 6. Display Results document.getElementById("resDeflection").innerHTML = deflection.toFixed(3) + " in"; document.getElementById("resRateLbs").innerHTML = Math.round(springRateLbs) + " lbs/in"; document.getElementById("resRateN").innerHTML = springRateN.toFixed(1) + " N/mm"; document.getElementById("resRating").innerHTML = rating; resultsDiv.style.display = "block"; }

Leave a Comment