Ohlins Spring Rate Calculator Motorcycle

.ohlins-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 2px solid #ffcc00; border-radius: 12px; background-color: #f9f9f9; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .ohlins-header { text-align: center; border-bottom: 3px solid #ffcc00; margin-bottom: 25px; padding-bottom: 10px; } .ohlins-header h2 { color: #000; margin: 0; text-transform: uppercase; letter-spacing: 1px; } .calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 15px; } .calc-group { flex: 1; min-width: 200px; } .calc-group label { display: block; font-weight: bold; margin-bottom: 8px; font-size: 14px; } .calc-group input, .calc-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .calc-button { background-color: #000; color: #ffcc00; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: background 0.3s; text-transform: uppercase; } .calc-button:hover { background-color: #333; } .ohlins-result { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #ffcc00; border-radius: 4px; display: none; } .result-val { font-size: 24px; font-weight: bold; color: #000; } .ohlins-article { margin-top: 40px; line-height: 1.6; } .ohlins-article h3 { color: #000; border-left: 4px solid #ffcc00; padding-left: 10px; } .unit-toggle { font-size: 12px; color: #666; margin-top: -5px; margin-bottom: 10px; }

Ohlins Spring Rate Calculator

Input weight in Kilograms (kg)
Input weight in Kilograms (kg)
Street / Cruising Sport / Fast Road Track Day / Racing
Front Forks (Single Spring) Rear Mono-Shock

Optimizing Your Motorcycle Suspension

Choosing the correct spring rate is the single most important step in setting up your motorcycle's suspension. Ohlins springs are engineered to precise tolerances, but their performance depends entirely on matching the spring stiffness to the total load (rider + bike) and the intended application.

Why Spring Rate Matters

If your spring rate is too soft, the suspension will ride too low in its stroke, causing harshness as it hits the "bump stop" and making the bike feel heavy or sluggish. If the spring is too stiff, you won't achieve the proper Rider Sag, leading to a loss of traction and a bouncy, uncontrolled ride.

Understanding N/mm vs. Lbs/in

Most Ohlins components use the metric measurement N/mm (Newtons per millimeter). This represents the amount of force required to compress the spring by one millimeter. To convert N/mm to Lbs/in, you multiply the metric value by 5.71. For example, a 10.0 N/mm spring is approximately 57 lbs/in.

Riding Styles and Tuning

  • Street: Focuses on comfort and compliance over potholes while maintaining stability.
  • Sport: A balance between chassis control for hard braking/acceleration and road feedback.
  • Track: High spring rates to handle the extreme forces of high-speed cornering and aggressive braking.

Typical Ranges

For most modern sportbikes, front fork springs typically range between 8.5 N/mm and 11.0 N/mm. Rear shock springs vary significantly based on the linkage ratio of the bike but often fall between 80 N/mm and 110 N/mm for standard street configurations.

function calculateOhlinsRate() { var riderWeight = parseFloat(document.getElementById('riderWeight').value); var bikeWeight = parseFloat(document.getElementById('bikeWeight').value); var styleMult = parseFloat(document.getElementById('ridingStyle').value); var target = document.getElementById('suspensionType').value; var resultDiv = document.getElementById('ohlinsResult'); var resultText = document.getElementById('resultText'); if (isNaN(riderWeight) || isNaN(bikeWeight) || riderWeight <= 0 || bikeWeight <= 0) { alert("Please enter valid positive numbers for weights."); return; } var totalWeight = riderWeight + bikeWeight; var recommendedRateNmm = 0; var label = ""; if (target === "fork") { // Approximate fork spring rate logic (assuming pair of forks) // Base: 9.0 N/mm for a 280kg total load recommendedRateNmm = (totalWeight / 31) * styleMult; label = "Recommended Fork Spring Rate (per fork):"; } else { // Approximate mono-shock rate logic // Base: 95 N/mm for a 280kg total load (highly dependent on linkage, using common 1:3 ratio average) recommendedRateNmm = (totalWeight / 2.95) * styleMult; label = "Recommended Rear Shock Spring Rate:"; } var rateLbsIn = recommendedRateNmm * 5.71079; resultDiv.style.display = "block"; resultText.innerHTML = "" + label + "" + "" + recommendedRateNmm.toFixed(2) + " N/mm" + "Equivalent to: " + rateLbsIn.toFixed(1) + " lbs/in" + "Note: This is a mathematical estimation. Linkage ratios vary by motorcycle model. Always consult your Ohlins owner manual for specific bike geometry adjustments."; resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment