Tire Height Calculator

.tire-calc-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #f9f9f9; color: #333; } .tire-calc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } @media (max-width: 600px) { .tire-calc-container { grid-template-columns: 1fr; } } .input-group { margin-bottom: 15px; } .input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .calc-button { grid-column: 1 / -1; background-color: #d32f2f; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .calc-button:hover { background-color: #b71c1c; } .results-box { grid-column: 1 / -1; margin-top: 20px; padding: 20px; background-color: #f0f4f8; border-radius: 8px; border-left: 5px solid #d32f2f; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; } .result-value { font-weight: 800; color: #d32f2f; } .tire-article { margin-top: 40px; line-height: 1.6; } .tire-article h2 { color: #222; border-bottom: 2px solid #d32f2f; padding-bottom: 10px; margin-top: 30px; } .tire-article h3 { margin-top: 20px; color: #444; }

Tire Height Calculator

Enter your tire specs (e.g., 245/45R18)

Total Tire Diameter: 0.00 in
Total Tire Diameter: 0.00 mm
Sidewall Height: 0.00 in
Circumference: 0.00 in

Understanding Tire Height and Dimensions

Whether you are upgrading your wheels, looking for better off-road clearance, or simply curious about your vehicle's stance, knowing your exact tire height is essential. Tire sizes are written in a specific alphanumeric format (like 245/45R18) that hides the actual physical dimensions of the rubber.

How to Read Tire Numbers

The numbers on your tire's sidewall represent three distinct measurements:

  • Section Width: The first number (e.g., 245) is the width of the tire in millimeters from sidewall to sidewall.
  • Aspect Ratio: The second number (e.g., 45) is a percentage. It tells you that the height of the sidewall is 45% of the section width.
  • Rim Diameter: The final number (e.g., 18) is the diameter of the wheel in inches.

The Tire Height Formula

To calculate the total height (diameter) of a tire manually, you use the following math:

Height = ((Width × Aspect Ratio / 100) × 2 / 25.4) + Rim Diameter

We multiply the sidewall height by two because the total diameter includes the sidewall at the top and the bottom of the wheel.

Common Tire Height Examples

Tire Size Total Height (Inches)
215/55R17 26.31″
265/70R17 31.61″
245/40R19 26.72″

Why Tire Height Matters

Changing your tire height affects your vehicle's performance in several ways:

  1. Speedometer Accuracy: A taller tire covers more ground in one revolution. If you install taller tires, your speedometer will read slower than you are actually traveling.
  2. Gear Ratio: Larger tires effectively "lengthen" your gears, which can lead to slower acceleration but potentially better fuel economy at highway speeds.
  3. Clearance: Oversized tires can rub against the wheel wells or suspension components during sharp turns or when hitting bumps.
function calculateTireHeight() { var width = parseFloat(document.getElementById("sectionWidth").value); var ratio = parseFloat(document.getElementById("aspectRatio").value); var rim = parseFloat(document.getElementById("rimDiameter").value); if (isNaN(width) || isNaN(ratio) || isNaN(rim) || width <= 0 || ratio <= 0 || rim <= 0) { alert("Please enter valid positive numbers for all fields."); return; } // Sidewall height in mm var sidewallMm = width * (ratio / 100); // Total sidewall height (top + bottom) in mm var totalSidewallMm = sidewallMm * 2; // Convert total sidewall to inches (25.4 mm per inch) var totalSidewallInches = totalSidewallMm / 25.4; // Total Diameter in inches var totalDiameterInches = totalSidewallInches + rim; // Total Diameter in mm var totalDiameterMm = totalDiameterInches * 25.4; // Circumference (C = pi * d) var circumference = Math.PI * totalDiameterInches; // Display Results document.getElementById("totalHeightInches").innerText = totalDiameterInches.toFixed(2) + " in"; document.getElementById("totalHeightMetric").innerText = totalDiameterMm.toFixed(2) + " mm"; document.getElementById("sidewallHeight").innerText = (sidewallMm / 25.4).toFixed(2) + " in"; document.getElementById("tireCircum").innerText = circumference.toFixed(2) + " in"; document.getElementById("tireResults").style.display = "block"; }

Leave a Comment