How to Calculate Wheel Rate

Wheel Rate Calculator

Units can be lb/in or N/mm (output will match input unit).
Ratio of spring travel to wheel travel (Spring Travel / Wheel Travel).
The angle of the spring relative to vertical (usually 0 if perpendicular).

Calculated Wheel Rate:

0.00

function calculateWheelRate() { var springRate = parseFloat(document.getElementById('springRate').value); var motionRatio = parseFloat(document.getElementById('motionRatio').value); var springAngle = parseFloat(document.getElementById('springAngle').value); var resultBox = document.getElementById('wr-result-box'); var resultDisplay = document.getElementById('wheelRateResult'); if (isNaN(springRate) || isNaN(motionRatio) || isNaN(springAngle)) { alert("Please enter valid numbers for all fields."); return; } if (motionRatio <= 0) { alert("Motion ratio must be greater than zero."); return; } // Formula: Wheel Rate = Spring Rate * (Motion Ratio^2) * cos(angle) // Note: Angle is converted to radians. // In most automotive contexts, the correction is cos(theta) for the force vector. var angleInRadians = springAngle * (Math.PI / 180); var cosAngle = Math.cos(angleInRadians); // WR = K * MR^2 * cos(theta) var wheelRate = springRate * Math.pow(motionRatio, 2) * cosAngle; resultDisplay.innerHTML = wheelRate.toFixed(2); resultBox.style.display = 'block'; }

How to Calculate Wheel Rate: A Comprehensive Guide

Understanding the actual stiffness at your tires is crucial for suspension tuning and vehicle handling dynamics.

What is Wheel Rate?

Wheel rate is the effective spring rate measured at the center of the tire contact patch. While the Spring Rate tells you how stiff the coil spring itself is, the Wheel Rate tells you how much force is actually required to move the wheel up one inch (or millimeter). Due to the leverage applied through control arms and suspension links, the wheel rate is almost always lower than the spring rate.

The Wheel Rate Formula

To calculate wheel rate manually, use the following physics-based formula:

Wheel Rate = Spring Rate × (Motion Ratio)² × cos(Angle)
  • Spring Rate (K): The stiffness of the spring (e.g., 400 lbs/in).
  • Motion Ratio (MR): The mechanical advantage. Calculated as: (Travel of the Spring / Travel of the Wheel).
  • Angle Correction: If the spring is mounted at an angle rather than perfectly vertical, the efficiency of the spring is reduced.

How to Determine Motion Ratio

The motion ratio is the most critical part of the equation. To find it, you can measure the distance from the pivot point of the control arm to the spring mounting point, and divide it by the distance from the pivot point to the ball joint (the wheel center).

For example, if the spring is mounted halfway along the control arm, the motion ratio is 0.5. Because the ratio is squared in the formula, a motion ratio of 0.5 means the wheel rate is only 25% of the spring rate.

Practical Example Calculation

Let's assume you have a track car with the following specifications:

  • Spring Rate: 800 lb/in
  • Motion Ratio: 0.7
  • Installation Angle: 15 degrees

Step 1: Square the motion ratio: 0.7 * 0.7 = 0.49.

Step 2: Calculate the cosine of the angle: cos(15°) ≈ 0.966.

Step 3: Multiply everything: 800 * 0.49 * 0.966 = 378.67 lb/in.

Even though you have an 800lb spring, the actual resistance the road feels at the tire is only roughly 379 lbs per inch of travel.

Why Wheel Rate Matters for Performance

When tuning a suspension, focusing solely on spring rates can be misleading, especially when comparing different car platforms (like a MacPherson strut vs. a Double Wishbone setup). MacPherson struts typically have a motion ratio close to 1.0, while double wishbone cars often have ratios between 0.5 and 0.7.

By calculating the wheel rate, you can determine the Frequency of the suspension, which dictates how the car reacts to bumps, weight transfer during braking, and body roll during cornering.

Leave a Comment