Which oil does my car need? Find the right viscosity (2024)

x

Which oil does my car need? Find the right viscosity (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

    Find the right oil for your engine

    Understand oil viscosity with our guide

    Engine oils aren’t all the same. You can't assume that the same oil you used for your last car will work for this one.

    So if you need to top-up, make sure you use the right grade and specification.

    What engine oil do I need?

    Your car's handbook will list the specification(s) and grades of engine oil that are suitable for your car. You should check this before buying or topping up your car oil to make sure you get the right type.

    If you're struggling to find the right oil for your car, you could try the parts department of a manufacturer's dealer.

    Read on to learn more about the different oil grades and specifications, and what they mean.

    In this article:

    • Why should I check my oil?
    • Which oil does my car need?
    • What's engine oil viscosity?
    • What are 5W-30 and 5W-40?
    • What are engine oil specifications?
    • What's low SAPS oil?

    Which oil does my car need? Find the right viscosity (2)


    Why is engine oil important?

    To keep things short and simple, engine oil is important because it lubricates and cools all the moving parts within your vehicle’s engine. When oil gets low in a vehicle engine, it can cause increased friction, leading to reduced performance. Not replacing your oil at the correct time also means you’re more likely to accumulate sludge in your engine, clogging up the smaller passages in the engine.

    How much oil does my car need?

    Most cars tend to need somewhere between 4-6 litres of engine oil to keep things running smoothly. However, your first port of call should always be your owners manual for your vehicle. Your manual should tell you exactly how many litres of oil you’ll need.

    If you’re unsure of how to check and top up your oil, you can visit our guide page for more info.

    What happens if I put the wrong oil in my car?

    Adding a small amount of the wrong specification of oil to your engine in an emergency is unlikely to lead to any issues. Some of the wrong spec oil is better than no oil. However, using the wrong oil continuously, or putting the wrong oil in during an oil change could lead to lasting damage. Accelerated engine wear and damage to emission control systems like diesel or petrol particulate filters are some of the problems that could occur.

    Why do I have to check the oil level?

    You might think that with modern cars, you don't need to worry about engine oil. Actually, it's never been more important to check your engine's oil level regularly. Here's why:

    • Extended service intervals, smaller capacity sumps, turbo chargers and thinner, synthetic oils can all add up to higher oil usage.
    • A drop in oil level can do more damage in a modern engine with a smaller sump – oil spends less 'recovery time' in the sump cooling down and hotter oil will break down and oxidise more rapidly leading to increased wear.

    Try to check your car's oil every couple of weeks and before any long journey. Your car may also indicate it's in need of oil by the dashboard warning light coming on.


    Engine problems? Call us on
    0800 88 77 66
    forinstant breakdown cover.

    What's engine oil viscosity?

    Oils are graded according to their viscosity – basically how thick or thin they are.

    Viscosity changes with temperature. Engine oils are 'multi-grade' to cope with a wide range of operating temperatures. Additives (viscosity improvers) give the oil one viscosity when it's cold and another when it's hot.

    How can I check the viscosity?

    The viscosity for hot and cold will both be marked on the oil's container as a code e.g. 5W–30. The first part of the code is the cold temperature grade, and the second part is the high temperature grade.

    Your car handbook will tell you the grade(s) – and therefore the viscosity – that you should use.


    What's the difference between 5W-30 and 5W-40 oils?

    5W-30 and 5W-40 are 2 common types of engine oil that you might come across. The '5' refers to the viscosity in cold weather and the 'W' stands for 'winter'. The '30' or '40' refers to the oil flow at higher engine temperatures. '30' is often for newer petrol engines, while '40' is often for older or diesel engines.

    5W-30 and 5W-40 oils are compatible with some models of common cars, like the Ford Focus, Ford Ka, Honda Civic and VW Golf.

    Some other common car models recommend 0W-30 oil, which is similar to 5W-30 but will be less viscous at lower temperatures. Certain Vauxhall Astra, Vauxhall Corsa and MINI Cooper models recommend this.

    Remember to check your handbook for your specific make and model, as the recommended oil can differ.

    How often should you change the oil in your car?

    Again, it’s worth consulting your owner's manual for your specific vehicle, but generally, with modern lubricants, cars are able to drive for between 10,000 and 20,000 miles before needing an oil change.

    What are engine oil specifications?

    Not all engines are the same, so it shouldn't be a surprise that oils aren't the same either. The specification is another way that engine oils differ.

    Car manufacturers and oil companies work together to agree on performance specifications for engine oils. There are several different sets of standards around the world:

    • The American Petroleum Institute (API)
    • The European Automobile Manufacturers’ Association (ACEA)
    • The International Lubricant Standardization and Approval Committee (ILSAC), or
    • The Japanese Automotive Standards Organization JATO.

    Modern car engines need oils that are really durable, and last for thousands of miles between services. Modern oils protect against corrosion and sludge formation, and contain detergent additives to keep the engine clean.

    Later specification oils are usually, but not always, suitable for older cars, while older specification oils shouldn’t be used in newer cars.


    Which oil does my car need? Find the right viscosity (3)


    Car manufacturer's specifications

    Many car manufacturers develop their own engine oil specifications. Most notable are Volkswagen and Mercedes-Benz, but BMW, GM, Porsche, PSA and others also have their own.

    More and more often, these are very specialised 'long life' oils designed to support very long intervals between services.

    • If your car's handbook quotes the manufacturer's own specification, you must look for this on the oil container.
    • The manufacturer may also give an acceptable equivalent ACEA or API specification, though this might be for 'emergency top-up only'.

    ACEA specifications

    The ACEA is the acronym (in French) for the European Automobile Manufacturers' Association. It replaced the earlier CCMC in 1996. The association sets certain standards for engine oils.

    Here’s an example of ACEA specifications to show the range of oils available:

    Petrol:

    • A1 Fuel economy petrol
    • A2 Standard performance level
    • A3 High performance and/or extended drain
    • A5 Fuel economy petrol with extended drain capability

    Diesel:

    • B1 Fuel economy diesel
    • B2 Standard performance level
    • B3 High performance and/or extended drain
    • B4 For direct injection passenger car diesel engines
    • B5 Fuel economy diesel with extended drain capability
    • E1 Non-turbo charged light duty diesel
    • E2 Standard performance level
    • E3 High performance and extended drain
    • E5 High performance and extended drain including some API specs
    • E6 Euro I to VI engines –with EGR, with or without DPF and engines with SCR NOx reduction
    • E7 Euro I to V engines – most EGR and most SCR NOx engines but without DPF
    • E9 Euro I to VI– with or without DPF, most EGR and most with SCR NOx reduction

    What's low SAPS oil?

    If you have a diesel car fitted with a DPF (diesel particulate filter) you must use one of the latest 'low SAPS' (Sulphated Ash, Phosphorous, Sulphur) oils.

    Using 'normal' oil instead of low SAPS can result in blocking of the DPF.

    • C1 Low SAPS (0.5% ash) fuel efficient
    • C2 Mid SAPS (0.8% ash) fuel efficient, performance
    • C3 Mid SAPS (0.8% ash)

    Can I put 5w30 in my petrol car?

    Yes, you can put 5w30 oil in your petrol car. 5w30 oil is designed to be compatible with both petrol and diesel engines.


    Published: 17 Nov 2016 | Modified:6th June 2024 | Author: The AA

    Car engine care
    • AdBlue diesel exhaust fluid
    • How to check your engine oil
    • How to check the cooling fan
    • Check your engine coolant
    • Put the wrong fuel in?
    • Diesel particulate filters
    • More car advice

    Buy breakdown cover

    We get more people back on the road than anyone else

    Buy now

  • Which oil does my car need? Find the right viscosity (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Eusebia Nader

    Last Updated:

    Views: 6363

    Rating: 5 / 5 (80 voted)

    Reviews: 87% of readers found this page helpful

    Author information

    Name: Eusebia Nader

    Birthday: 1994-11-11

    Address: Apt. 721 977 Ebert Meadows, Jereville, GA 73618-6603

    Phone: +2316203969400

    Job: International Farming Consultant

    Hobby: Reading, Photography, Shooting, Singing, Magic, Kayaking, Mushroom hunting

    Introduction: My name is Eusebia Nader, I am a encouraging, brainy, lively, nice, famous, healthy, clever person who loves writing and wants to share my knowledge and understanding with you.