Ohlins Fork Spring Rate Calculator

.ohlins-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; border: 2px solid #ffcc00; border-radius: 8px; background-color: #f9f9f9; color: #333; overflow: hidden; } .ohlins-header { background-color: #000; color: #ffcc00; padding: 25px; text-align: center; } .ohlins-header h2 { margin: 0; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; } .ohlins-container { padding: 30px; } .ohlins-input-group { margin-bottom: 20px; } .ohlins-input-group label { display: block; font-weight: bold; margin-bottom: 8px; color: #1a1a1a; } .ohlins-input-group input, .ohlins-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .ohlins-btn { background-color: #ffcc00; color: #000; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; cursor: pointer; width: 100%; border-radius: 4px; text-transform: uppercase; transition: background 0.3s; } .ohlins-btn:hover { background-color: #e6b800; } .ohlins-result { margin-top: 25px; padding: 20px; background-color: #fff; border: 1px solid #ffcc00; border-radius: 4px; display: none; } .ohlins-result h3 { margin-top: 0; color: #000; } .result-value { font-size: 24px; font-weight: bold; color: #0055a5; } .ohlins-content { padding: 30px; line-height: 1.6; background-color: #fff; border-top: 1px solid #eee; } .ohlins-content h2 { color: #0055a5; } .ohlins-content h3 { color: #333; margin-top: 25px; } .ohlins-content ul { padding-left: 20px; }

Öhlins Fork Spring Rate Calculator

Sportbike / Supersport (600cc-1000cc) Lightweight / Naked (300cc-500cc) Heavy Sport Tourer / Adventure Motocross / Off-road
Street / Commuting Aggressive Canyon / Track Day Professional Racing

Recommended Fork Spring Rate:

Optimizing Your Front End: Understanding Fork Spring Rates

Choosing the correct spring rate for your Öhlins forks is the single most important adjustment you can make to your motorcycle's handling. Unlike damping, which controls the speed of movement, the spring rate supports the combined mass of the bike and rider. If your springs are too soft, the fork will dive excessively under braking; if they are too stiff, you will lose traction and feel every bump in the road.

How This Calculator Works

This calculator utilizes a base algorithm designed for Öhlins linear-rate springs. It considers three primary factors:

  • Rider Weight: Calculations are based on your "ready-to-ride" weight, including helmet, leathers, boots, and gloves (usually 7-10kg more than body weight).
  • Bike Category: Different chassis geometries require different initial support. A 1000cc sportbike requires more front-end support than a lightweight 300cc machine.
  • Application: Racing requires a stiffer spring to handle the extreme forces of high-speed trail braking, whereas street riding prioritizes compliance and comfort.

Example Spring Rate Scenarios

To help you visualize the requirements, consider these common setups:

  • Street Rider (80kg) on a 600cc Sportbike: Typically requires an 8.5 N/mm to 9.0 N/mm spring.
  • Track Rider (95kg) on a 1000cc Sportbike: Often moves up to a 10.0 N/mm or 10.5 N/mm spring to prevent bottoming out under heavy braking.
  • Off-road Rider (75kg): Uses much lighter rates, often around 4.4 N/mm, to allow for long travel and bump absorption.

Why Öhlins Springs?

Öhlins springs are manufactured using high-grade chrome silicone steel. They offer high stress levels with low weight and are designed to have a very narrow tolerance for the spring rate. When you buy an Öhlins 9.5 N/mm spring, you can be certain it performs exactly at that specification, unlike many OEM springs which can vary by up to 10%.

Signs You Need New Springs

If you cannot achieve the correct "Static Sag" (typically 20-30mm) and "Rider Sag" (typically 35-45mm for street) even after adjusting your preload adjusters to their limits, your spring rate is incorrect. If you have to max out your preload to get the right sag, your springs are too soft, and you should move up to the next available N/mm increment.

function calculateSpringRate() { var weight = parseFloat(document.getElementById('riderWeight').value); var baseRate = parseFloat(document.getElementById('bikeType').value); var styleAdjustment = parseFloat(document.getElementById('ridingStyle').value); if (isNaN(weight) || weight <= 0) { alert("Please enter a valid rider weight."); return; } // Standard logic: A 75kg rider is the baseline for most fork setups. // Every 10kg difference usually requires a 0.5 N/mm change in sport applications. // For dirt bikes, the scale is much smaller (approx 0.02 N/mm per 5kg). var weightFactor; if (baseRate < 5) { // Off-road logic weightFactor = (weight – 75) * 0.005; } else { // Road/Track logic weightFactor = (weight – 75) * 0.025; } var calculatedRate = baseRate + weightFactor + styleAdjustment; // Öhlins typically sells in 0.5 N/mm increments (e.g., 9.0, 9.5, 10.0) // Some series come in 0.25 increments, but 0.5 is the standard for most. var recommendedRate = Math.round(calculatedRate * 2) / 2; // Safety floor if (recommendedRate < 3.0) recommendedRate = 3.0; var resultDiv = document.getElementById('ohlinsResult'); var output = document.getElementById('rateOutput'); var partNote = document.getElementById('partRecommendation'); resultDiv.style.display = 'block'; output.innerHTML = recommendedRate.toFixed(1) + " N/mm"; partNote.innerHTML = "Note: If you are between rates, choose " + (recommendedRate – 0.25).toFixed(2) + " for comfort or " + (recommendedRate + 0.25).toFixed(2) + " for performance. Always verify with your specific Öhlins cartridge kit (e.g., NIX 30 or FKC series)."; }

Leave a Comment