Tyre Speed Rating | Chart and Rating Letters (2024)

x

Tyre Speed Rating | Chart and Rating Letters (1)

The AA theaa.com FREE - In Google Play!

View

');$businessLinkMobileCount = $('.business-customer-mobile').length;if ($areYouBusinessCustomer.length && $businessLinkMobileCount == 0) {$mobileBusinessCustomerLink.html($areYouBusinessCustomer.html());$('.mobile-grey').append($mobileBusinessCustomerLink);}if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {// console.log("smaller than breakpoint");$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");$('#mainNavigation').addClass('mobile-main-nav').removeClass('desktop-main-nav');$('.mobile-grey').appendTo('.desktop-white');$('nav.aa-mega-menu').addClass('mobile-nav');if (!$('.scroller').length) {$('#site-header-yellow >.wrapper').wrap("

");}$('.mobile-tablet-menu').animate({ width: 'show' }, 30);$primaryHeadingCount = 0;$("#mainNavigation > ul > li.primary").each(function () {$primaryHeadingForMobile = $('

  • ');$firstColumnOfMegaMenu = $(this).find("nav > div > ul:nth-child(1)");$anchor = $($(this).children()[0]);anchorHtmlText = $anchor.html();$primaryHeadingForMobile.html(anchorHtmlText);var primaryNavCount = $(".primary.childrens").length;$primaryHeadingCount = $('.primary-heading').length;if ($primaryHeadingCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend($primaryHeadingForMobile);}$backLinkMobileCount = $('.backLink').length;if ($backLinkMobileCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend('

  • ');}});$('.main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {mobileCloseClick(e);$(".left.logo").focus();}});}else if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$('.left.logo').animate({ width: 'show' }, 30);$('.mobile-grey').appendTo('.top-header-links');$('nav.aa-mega-menu').removeClass('mobile-nav');$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('#mainNavigation').addClass('desktop-main-nav').removeClass('mobile-main-nav');$(".campaign-hero ").parents(':eq(2)').css('padding', '0')if ($('.scroller').length) {$('#site-header-yellow >.wrapper').unwrap("

    ");}$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);$('button > hr').css({"opacity": "0","visibility": "hidden"});$('.aa-mega-menu').css({"opacity": "0","visibility": "hidden"});$('.right.mobile-grey').show();$('#mainNavigation > ul.aa-main-nav > li.primary > button').keydown(function (e) {if (e.which === 13 || e.keyCode === 13) { /// for ENTER pressconst boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'true');});//remove active mega menu from HOVER if open if ($currentHoverMenuItem) {var $primaryNavigationListItem = $currentHoverMenuItem.parent();$currentHoverMenuItem.removeClass('menu-active').css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$currentHoverMenuItem = null;}applyMenuHoverInEffects($(this).parent());$('#mainContent').removeAttr("style");$('#mainContent').css({"opacity": "0.5","height": "calc(100% - 225px)","width": "100%","visibility": "visible","background-color": "#000","position": "absolute",// "top": "134px","left": "0px","z-index": "1"});$('#mainContent').addClass('menu-base-transition');$currentActiveMenuItem = $(this).parent().find('.aa-mega-menu');$currentActiveMenuItem.toggleClass("menu-active");// $('.column .sub-menu.col').animate({ width: 'show' }, 300);}else if (e.which === 9 || e.keyCode === 9) { // for TAB pressif ($currentActiveMenuItem) {e.preventDefault();var $firstAnchorOfMegaMenu = $($currentActiveMenuItem.find('div > ul:first-child > li:first-child > a')[0]);$firstAnchorOfMegaMenu.focus();}}});//get all last anchor items from all mega menus and attach key down event for Tab transer$("#mainNavigation > ul > li > nav > div > ul:last-child li:last-child a").keydown(function (e) {if (e.which === 9 || e.keyCode === 9) {console.log("tabbed...");$currentActiveMenuItem.removeClass('menu-active');var $nextPrimayNavItem = $currentActiveMenuItem.parent();if ($nextPrimayNavItem) {applyMenuHoverOutEffects($nextPrimayNavItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$nextPrimayNavItem.find('button')[0].focus();$currentActiveMenuItem = null;}else {//this will happen for very last anchor of last mega menu. there is no next menu item to focus to//so focus should be move to mainContent$('#mainContent').focus();}}});//for escape key- close the drop down menu if its open$('#mainNavigation > ul.aa-main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {if ($currentActiveMenuItem) {var $primaryNavListItem = $currentActiveMenuItem.parent()applyMenuHoverOutEffects($primaryNavListItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$primaryNavListItem.find('button')[0].focus();$currentActiveMenuItem = null;}const boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'false');});}});//when user mouse hovers from outside menu area then menu needs to animate with set transitions defined in css//but as sson as it enter menu are we need to remove animation transitions which are enabled. so differnt animation menu can be opened quickly$('#mainNavigation > ul.aa-main-nav').hover(function () {removeAnimation = true;}, function () {$('body').removeClass('notransition');removeAnimation = false;//this condition is added because after multiple ESC and TAB press somehow UL mouseout event was triggering and//it was causing background to set default yellow colorif ($currentActiveMenuItem == null) {$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');}});}if ($('#mainNavigation').hasClass('desktop-main-nav')) {$('.desktop-main-nav > ul.aa-main-nav > li.primary').hover(function () {// console.log("applying hover effects");$currentHoverMenuItem = $(this).find('.aa-mega-menu');//remove menu-active class from active mega menu from keyboard if open if ($currentActiveMenuItem) {var $primaryNavigationListItem = $currentActiveMenuItem.parent();$currentActiveMenuItem.removeClass('menu-active').removeAttr("style");var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});//If hover element and active keyboard element is not same then set active elment to null . giving preference to hoverif ($currentActiveMenuItem[0] != $currentHoverMenuItem[0])$currentActiveMenuItem = null;}applyMenuHoverInEffects(this);if (removeAnimation) {setTimeout(function () {$('body').addClass('notransition');}, 500);removeAnimation = false;}$('#mainContent').removeAttr("style");$('#mainContent').css({ "visibility": "visible" });$('#mainContent').addClass('menu-base-transition');}, function () {$currentHoverMenuItem = null;applyMenuHoverOutEffects(this);});}applyMenuHoverInEffects = function ($primaryNavElement) {// console.log("In applyMenuHoverInEffects");$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');$megaMenu.css({"opacity": "1","visibility": "visible"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "1","visibility": "visible"});//change header background with css transition class$('header#site-header-yellow').css('background', '#fff').addClass('bg-change');$('header#site-header-yellow').addClass('menu-base-transition');}applyMenuHoverOutEffects = function ($primaryNavElement) {$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$megaMenu.css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$('#mainContent').css({"visibility": "hidden",});}}$('header#site-header-yellow .main-nav ul.aa-main-nav > li').each(function () {if ($(this).find(".aa-mega-menu").length) {$(this).addClass('childrens')}});function mobileCloseClick(e) {// console.log("Mobille close called");e.preventDefault();$('body').removeClass("fixed-position");$('body').removeClass('mmenu-opened');$('header#site-header-yellow .main-nav').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active .scroller').animate({ right: '-100vw' }, 0);setTimeout(function () { $('#site-header-yellow').removeClass('mobilemenu-active') }, 0);$('.left.logo').animate({ width: 'show' }, 0);$('.mobile-tablet-menu').animate({ width: 'show' }, 0);$('.right.mobile-grey').show();$('#mainContent').removeAttr("style");const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'false');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'false');$('.main-nav').css('min-height', 'auto');if ($('.aa-mega-menu').hasClass('secondlevelOpen')) {$('.aa-mega-menu').stop().animate({ 'right': '-100vw' }, 0);primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');$('.aa-mega-menu').removeClass('secondlevelOpen');}$(".scroller").css("height", "100vh");$(".left.logo a").focus();$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 0);}$('.mobile-tablet-menu').click(function (e) {e.preventDefault();$('body').addClass("fixed-position");$(".mobile-grey a, .nav-logo a ").removeAttr("tabindex");$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('header#site-header-yellow .main-nav').animate({ right: '0' }, 300);$('.scroller').animate({ right: '0' }, 300);$('.left.logo').animate({ width: 'hide' }, 300);$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);if ($('.scroller').length) {$('#site-header-yellow').addClass('mobilemenu-active');}var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', 'auto');const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'true');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'true');$(".scroller").css("height", (Math.max(document.documentElement.clientHeight, window.innerHeight || 0) - $("#site-header-yellow").offset().top));$(".left.menu-logo a").focus();});$('.mobile-tablet-menu-open').click(function (e) {// changes for CD-50114 startmobileCloseClick(e);// changes for CD-50114 end});var primaryItem = $('li.primary.childrens > button');var backlink = $('li.backLink > button');if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {primaryItem.on('click', function (e) {console.log('primaryItem.on(click, function (e) ---');e.preventDefault();var megaHeight = $(this).next('.aa-mega-menu').height() + 120;$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '0' }, 300);$(this).parent('li').removeClass('hide-menu');$(this).addClass('hide-menu');$(this).parent('li').siblings('li').addClass('hide-menu').removeClass('activated');$(this).parent('li').addClass('activated');$(this).next('.aa-mega-menu').addClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', megaHeight);$('.main-nav').css('min-height', 'auto');$('.right.mobile-grey').hide();$('.column .sub-menu.col').animate({ width: 'show' }, 300);// $(".backLink button").focus();$(".left.menu-logo a").focus();});backlink.on('click', function (e) {e.stopPropagation();$(".secondlevelOpen").stop().animate({ width: 'hide' }, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').stop().animate({ right: '-100vw' }, 300);$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '-100vw' }, 300);setTimeout(function () {$('.right.mobile-grey').show();}, 300);$('.column .sub-menu.col').animate({ width: 'hide' }, 300);setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').removeClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', 'auto');var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', primaryHeight);});};window.aa.MenuSetupCompleted = true;}

    Skip to main content [Accesskey 'S'] Go to home page [Accesskey '1']Are you a business customer?

    • Broken down?
    • Route Planner
    • Help and support
    • Accident Assist

    Understand what tyre speed ratings are

    And how to find the right tyres for your car

    One way to keep on top of tyre safety is to make sure that the tyres on your car have the right tyre speed rating. We’ll explain what a tyre speed rating is, why it’s important and how to check it for your car.

    In this article
    • What’s a tyre speed rating?
    • Why does it matter?
    • Where can I find it?
    • Tyre speed rating chart
    • Tyre load index chart
    • Lower speed ratings
    • Higher speed ratings
    • Can I mix speed ratings?

    Tyre Speed Rating | Chart and Rating Letters (2)

    What’s a tyre speed rating?

    The speed rating of a tyre shows you the top speed that the tyre can safely be driven at. It’s a legally approved limit and tyres are only rated after they’ve been tested in a lab. The safest top speed applies as long as the tyre isn’t being driven with too much weight loaded.

    Often, the tyre speed rating will be a faster speed than your car's able to go. That’s mainly for safety reasons, to make sure that you tyre performance is never worse than the car’s performance.

    Find out more about tyre law.


    Does the tyre speed rating matter?

    Choosing the right tyre speed rating for your car’s important for the safety of yourself and other road users.

    If the tyre speed rating’s too low for your car, it might not be able to cope with the heat of high speeds. That could cause the tyre to lose performance and the car to lose control. It could even lead to a tyre blow-out.

    But it’s not just about speed. The rating also relates to:

    • Ride comfort
    • Tread wear
    • Traction
    • Cornering ability

    It’s important to choose the right speed rating for your vehicle and the conditions. Tyres with higher speed ratings may give better grip and stopping distances, but they might not perform as well in the cold and could wear out faster.

    Tyre speed rating and insurance

    The tyre speed rating’s also important for legal reasons. If you have a lower tyre speed rating than you should, it might invalidate your car insurance.


    Where can I find the tyre speed rating?

    You can check the tyre speed rating on the sidewall of a car. There's a group of letters and numbers on the side. The final letter is the speed rating.

    The speed rating letter comes after the load rating. It’s important to look at both together because the speed rating depends on driving with the right load.


    Looking for new car tyres? Try AA Tyres.

    Buy tyres


    Tyre speed rating chart

    This chart shows you the maximum speed is for each tyre speed rating letter. The system is based on kilometres per hour (kmh), which is why the increments seem odd in miles per hour (mph).

    Speed
    rating

    mph km/h

    Speed
    rating

    mph km/h
    A1 3 5 K 68 110
    A2 6 10 L 75 120
    A3 9 15 M 81 130
    A4 12 20 N 87 140
    A5 16 25 P 93 150
    A6 19 30 Q 100 160
    A7 22 35 R 106 170
    A8 25 40 S 112 180
    B 31 50 T 118 190
    C 37 60 U 124 200
    D 40 65 H 130 210
    E 43 70 V 149 240
    F 50 80 W 168 270
    G 56 90 Y 186 300
    J 62 100 (Y) 186+ 300+

    Tyre load index chart

    The 2 numbers on a tyre sidewall that come before the tyre speed rating are the load index. This shows you the maximum weight of the vehicle (and any load it’s carrying) for that tyre.

    It’s important not to go over the maximum load as it could be dangerous. The tyre speed rating won’t be accurate and it could affect the way the tyres perform and handle.

    You’ll also need to make sure your tyre pressure is correct.

    Load index

    Load (kg) Load index Load (kg) Load index Load (kg)
    62 265 84 500 106 950
    63 272 85 515 107 975
    64 280 86 530 108 1000
    65 290 87 545 109 1030
    66 300 88 560 110 1060
    67 307 89 580 111 1090
    68 315 90 600 112 1120
    69 325 91 615 113 1150
    70 335 92 630 114 1180
    71 345 93 650 115 1215
    72 355 94 670 116 1250
    73 365 95 690 117 1285
    74 375 96 710 118 1320
    75 381 97 730 119 1360
    76 400 98 750 120 1400
    77 400 99 775 121 1450
    78 400 100 800 122 1500
    79 400 101 825 123 1550
    80 400 102 850 124 1600
    81 400 103 875 125 1650
    82 400 104 900 126 1700
    83 400 105 925


    Punctured tyre? We’re here to help.

    Buy breakdown cover


    Can I fit tyres with a higher speed rating than I need?

    Yes, you can. It’s not against the law to choose tyres with a higher speed rating that your car needs as long as they’re right for your vehicle.

    Find out more about the legal requirements for car tyres.


    Can I fit tyres with a lower speed rating that I need?

    No, you shouldn’t ever fit tyres with a speed rating that’s too low for your car. It could cause steering and control issues or you might even suffer tyre failure.

    It’s not illegal to use a tyre speed rating that’s too low but it is dangerous and it could stop your car insurance from paying out.


    Can I mix tyres with different speed ratings?

    We’d never recommended mixing tyres with different speed ratings on your vehicle.

    It’s safest to fit the same size and type of tyre, with the same speed rating, on all your wheels.

    Find out more:

    • How to change a flat tyre

    Published: 23 November 2020 | Updated: 24 November 2020 | Author: The AA

    Related links
    • Tyre pressures
    • The law about car tyres
    • Non-standard spares
    • Tyre life and age
    • Tyre repairs and sealants
    • Tyre labelling
    • Directional and asymmetric tyres
    • Run-flat tyres
    • Nitrogen inflation
    • Winter tyres
    • Dashboard warning lights
    • Top 10 causes of breakdowns
  • Tyre Speed Rating | Chart and Rating Letters (2024)

    References

    Top Articles
    Used Trucks for Sale Sheridan WY | Fremont Ford Sheridan
    Trucks for Sale Sheridan WY | Sheridan Ford | New & Used Pickups
    Northern Counties Soccer Association Nj
    Will Byers X Male Reader
    Tyler Sis 360 Louisiana Mo
    Durr Burger Inflatable
    Algebra Calculator Mathway
    41 annonces BMW Z3 occasion - ParuVendu.fr
    270 West Michigan residents receive expert driver’s license restoration advice at last major Road to Restoration Clinic of the year
    Joe Gorga Zodiac Sign
    LeBron James comes out on fire, scores first 16 points for Cavaliers in Game 2 vs. Pacers
    New Mexico Craigslist Cars And Trucks - By Owner
    People Portal Loma Linda
    Most McDonald's by Country 2024
    Enterprise Car Sales Jacksonville Used Cars
    Cyndaquil Gen 4 Learnset
    Wicked Local Plymouth Police Log 2022
    Khiara Keating: Manchester City and England goalkeeper convinced WSL silverware is on the horizon
    Video shows two planes collide while taxiing at airport | CNN
    Grandview Outlet Westwood Ky
    Farmer's Almanac 2 Month Free Forecast
    Accident On The 210 Freeway Today
    Nearest Walgreens Or Cvs Near Me
    Att.com/Myatt.
    Nz Herald Obituary Notices
    Dulce
    Apartments / Housing For Rent near Lake Placid, FL - craigslist
    Craigslist List Albuquerque: Your Ultimate Guide to Buying, Selling, and Finding Everything - First Republic Craigslist
    Netspend Ssi Deposit Dates For 2022 November
    Encore Atlanta Cheer Competition
    Sams Gas Price Sanford Fl
    How often should you visit your Barber?
    Club Keno Drawings
    Pixel Combat Unblocked
    'Conan Exiles' 3.0 Guide: How To Unlock Spells And Sorcery
    Nail Salon Open On Monday Near Me
    Shiftwizard Login Johnston
    Phone number detective
    RUB MASSAGE AUSTIN
    Arcadia Lesson Plan | Day 4: Crossword Puzzle | GradeSaver
    Toonily The Carry
    Hell's Kitchen Valley Center Photos Menu
    Kelley Blue Book Recalls
    Cal Poly 2027 College Confidential
    Htb Forums
    Craigslist Freeport Illinois
    Alston – Travel guide at Wikivoyage
    [Teen Titans] Starfire In Heat - Chapter 1 - Umbrelloid - Teen Titans
    Wgu Admissions Login
    Ephesians 4 Niv
    Richard Mccroskey Crime Scene Photos
    Obituaries in Westchester, NY | The Journal News
    Latest Posts
    Article information

    Author: Manual Maggio

    Last Updated:

    Views: 6000

    Rating: 4.9 / 5 (49 voted)

    Reviews: 88% of readers found this page helpful

    Author information

    Name: Manual Maggio

    Birthday: 1998-01-20

    Address: 359 Kelvin Stream, Lake Eldonview, MT 33517-1242

    Phone: +577037762465

    Job: Product Hospitality Supervisor

    Hobby: Gardening, Web surfing, Video gaming, Amateur radio, Flag Football, Reading, Table tennis

    Introduction: My name is Manual Maggio, I am a thankful, tender, adventurous, delightful, fantastic, proud, graceful person who loves writing and wants to share my knowledge and understanding with you.