TORQUE CHART LUG NUT 2023 (2024)

'; } html = html +'

' if(categories_html) { html = html + '

Categories

'; html = html + categories_html; } if(suggestion_html) { html = html + '

Search Suggestions

'; html = html + suggestion_html; } // if(parts_html) { // html = html + '

Product Models

'; // html = html + parts_html; // } if(pages_html) { html = html + '

Pages

'; html = html + pages_html; } if(documents_html) { html = html + '

Product Documents

'; html = html + documents_html; } html = html + '

'; html = html + '

'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); $('.ui.two-column') .search({ type : 'category', fields: { categories : 'results', // array of categories (category view) categoryName : 'name', // name of category (category view) categoryResults : 'results', // array of results (category view) description : 'description', // result description image : 'image', // result image price : 'price', // result price results : 'results', // array of results (standard) title : 'title', // result title action : 'action', // "view more" object name actionText : 'text', // "view more" text actionURL : 'url' // "view more" url }, minCharacters : 2, apiSettings : { onResponse: function(search_results) { console.log(search_results); return search_results; }, url: 'searchsuggest_responsive.php?q={query}' }, templates : { /*escape: function(string) { // returns escaped string for injected results }, message: function(message, type) { // returns html for message with given message and type },*/ category: function(response) { // returns results html for category results //console.log(response.results.products.results); //alert('here'); //console.log(response); var products_html = get_products_html(response.results.products.results, true); var suggestion_html = get_suggestion_html(response.results.search_suggestions.results, true); var categories_html = get_categories_html(response.results.categories.results, true); var parts_html = get_parts_model_html(response.results.products_parts.results, true); var documents_html = get_documents_html(response.results.products_documents.results, true); var pages_html = get_pages_html(response.results.cms_pages.results, true); var html = ''; html = html + '

'; html = html + '

' if(products_html) { html = html + '

Products

'; html = html + products_html; } html = html + '

'; html = html +'

' if(categories_html) { html = html + '

Categories

'; html = html + categories_html; } if(suggestion_html) { html = html + '

Search Suggestions

'; html = html + suggestion_html; } // if(parts_html) { // html = html + '

Product Models

'; // html = html + parts_html; // } if(pages_html) { html = html + '

Pages

'; html = html + pages_html; } if(documents_html) { html = html + '

Product Documents

'; html = html + documents_html; } html = html + '

'; html = html + '

'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); $('.ui.three-column') .search({ type : 'category', fields: { categories : 'results', // array of categories (category view) categoryName : 'name', // name of category (category view) categoryResults : 'results', // array of results (category view) description : 'description', // result description image : 'image', // result image price : 'price', // result price results : 'results', // array of results (standard) title : 'title', // result title action : 'action', // "view more" object name actionText : 'text', // "view more" text actionURL : 'url' // "view more" url }, minCharacters : 2, apiSettings : { onResponse: function(search_results) { console.log(search_results); return search_results; }, url: 'searchsuggest_responsive.php?q={query}' }, templates : { /*escape: function(string) { // returns escaped string for injected results }, message: function(message, type) { // returns html for message with given message and type },*/ category: function(response) { // returns results html for category results //console.log(response.results.products.results); //alert('here'); //console.log(response); var products_html = get_products_html(response.results.products.results, true); var suggestion_html = get_suggestion_html(response.results.search_suggestions.results, true); var categories_html = get_categories_html(response.results.categories.results, true); var parts_html = get_parts_model_html(response.results.products_parts.results, true); var documents_html = get_documents_html(response.results.products_documents.results, true); var pages_html = get_pages_html(response.results.cms_pages.results, true); var html = ''; html = html + '

'; html = html + '

' if(products_html) { html = html + '

Products

'; html = html + products_html; } html = html + '

'; html = html +'

' if(categories_html) { html = html + '

Categories

'; html = html + categories_html; } if(pages_html) { html = html + '

Pages

'; html = html + pages_html; } if(documents_html) { html = html + '

Product Documents

'; html = html + documents_html; } html = html + '

'; html = html +'

' if(suggestion_html) { html = html + '

Search Suggestions

'; html = html + suggestion_html; } html = html + '

'; html = html + '

'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); // serach functions function get_products_html(products, return_empty=false){ var products_html = ''; if(products.length && Array.isArray(products)){ $.each(products, function(index, item) { if(index >= 10) { console.log(index); return false; } products_html = products_html + '

'; /*products_html = products_html + '

'; products_html = products_html + ''+item.image+''; products_html = products_html + '

';*/ products_html = products_html + '

'; products_html = products_html + '' + item.image + ''; products_html = products_html + '

'; products_html = products_html + '

'; products_html = products_html + '

'+item.title+'

'; products_html = products_html + '

'+item.description+'

'; products_html = products_html + '

'; products_html = products_html + '

'; }); }else if(return_empty){ products_html = products_html + '

No Products matching your search criteria

'; } return products_html; } function get_suggestion_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'+item.title+'

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Search Suggestions matching your search criteria

'; } return suggestions_html; } function get_categories_html(categories, return_empty=false){ var categories_html = ''; if(categories.length && Array.isArray(categories)) { $.each(categories, function (index, item) { console.log(item.image); categories_html = categories_html + '

'; if (item.image != '') { categories_html = categories_html + '

'; categories_html = categories_html + '' + item.image + ''; categories_html = categories_html + '

'; } categories_html = categories_html + '

'; categories_html = categories_html + '

' + item.title + '

'; categories_html = categories_html + '

'; categories_html = categories_html + '

'; }); }else if(return_empty){ categories_html = categories_html + '

No Categories matching your search criteria

'; } return categories_html; } function get_parts_model_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'+item.title+'

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Products Parts matching your search criteria

'; } return suggestions_html; } function get_documents_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'+item.title+'

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Product Documents matching your search criteria

'; } return suggestions_html; } function get_pages_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'+item.title+'

'; suggestions_html = suggestions_html + '

'; suggestions_html = suggestions_html + '

'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Pages matching your search criteria

'; } return suggestions_html; } });

TORQUE CHART LUG NUT 2023 (2024)

FAQs

What torque should lug nuts be tightened to? ›

New wheels should be re-torqued after the first 50 to 100 driving miles.
Hardware Bolt or Stud SizeTypical Torque Range in Ft/LbsMinimum Number of Turns of Hardware Engagement
12 x 1.25 mm70 - 808
14 x 1.5 mm85 - 907.5
14 x 1.25 mm85 - 909
7/16 in.70 - 809
3 more rows

How many foot pounds should I torque for lug nuts? ›

In general, lug nuts are often tightened to a torque specification ranging from 80 to 120 foot-pounds (ft-lbs) during installation. So, to remove them, you would ideally need at least the same amount of torque.

Is 250 ft lbs of torque enough for lug nuts? ›

There are very few chances that 250 ft-lbs delivers enough torque to loosen lug nuts. Most car lug nuts require higher torque values. Similarly, the standard range is 80 ft-lbs to 150 ft-lbs.

Where can I find lug nut torque specs? ›

It is usually in the owners manual under specifications, most cars with the aluminum wheels are 75 - 80 ft lbs.

What is the correct torque for wheel nuts? ›

It depends on the car model, rim size, design (aluminium or steel rims) and number of bolts. It is normally between 110 N⋅m and 120 N⋅m. If you change the rims on your car, you will find the new torque values in the rim certificate.

How tight should I tighten lug nuts by hand? ›

So as a rule of thumb, whatever the force/torque you had to use to undo the wheel nuts. Use the same force/torque to tighten the nuts after fitting the new wheel. You tighten them up by hand as much as you can, then use the socket and wrench to tighten them - usually a quarter or half a turn and then they are TIGHT.

Is 450 ft lbs enough for lug nuts? ›

For most passenger vehicles equipped with standard lug nuts, a 1/2 inch drive impact wrench providing around 300-400 ft-lbs of torque is sufficient.

Which is the proper order of tightening the wheel lug nuts? ›

Using a torque wrench, tighten the lug nuts in a star pattern; for instance, if there are five lug nuts, start at the top and tighten to the bottom right, then the top-left and tighten to the bottom, and so on, until all the lug nuts are uniformly torqued.

What happens if you over torque lug nuts? ›

Warped Rotors and Overtightened Lug Nuts can result in a warped rotor and possible hub flange damage. Rotors get real hot and improper and over-torquing a wheel can result in warpage as the rotor.

What size impact wrench is best for lug nuts? ›

There are three common impact wrench sizes for automotive work: 1/4-inch, 3/8-inch, and 1/2-inch. The 1/4-inch impact wrench is great for small, delicate jobs; 3/8-inch wrenches are nice "do-it-most" tools; and 1/2-inch impact wrenches are for heavy-duty nuts and bolts.

Is 200 ft lbs of torque good? ›

Very heavy duty automotive fasteners require between 200 and 1,000 ft. lbs of torque, or even higher amounts. Applications include camshaft sprockets and harmonic balancers. Many off-road vehicles or performance racing vehicles will require torque applications in this range as well.

How many ft/lbs to tighten lug nuts? ›

Most vehicles have lug nuts that require around 100 pound-feet of torque. However, certain vehicles require more or less. It's best to check your vehicle's manual to find out the exact specifications you need.

What is the most common torque for lug nuts? ›

And when you look at that, and realize that the average torque required on a lug nut, to hold the wheel on, is 80 to 90 ft-lbs, well you can imagine how over-tightened some of these lug nuts are. Now that's a problem because it almost guarantees warped brake rotors.

What is the pattern for torque lug nuts? ›

1. Start the lug nuts on the studs using fingers to avoid cross threading. 2. Stage 1, Torque: Impact the lug nuts in the ap- propriate star pattern above until snug to the rim.

How much torque to loosen lug nuts? ›

This ensures you have plenty of power to break them loose. For most passenger vehicles equipped with standard lug nuts, a 1/2 inch drive impact wrench providing around 300-400 ft-lbs of torque is sufficient. This covers common lug nut sizes of 14-21 mm on sedans, coupes, hatchbacks and some light trucks or SUVs.

How much torque do you need to tighten nuts? ›

Typically only 10% to 15% of the overall torque is actually used to tighten the bolt, the rest is used to overcome friction in the threads and on the contact face that is being rotated (nut face or bolt head).

What torque for truck tires? ›

on Medium and Heavy Truck, Trailer and Bus Applications

Torque each two piece flange nut for the following: M22 x 1.5 to 450-500 ft./lb., M20 x 1.5 to 280-330 ft./lb. and M14 x 2.0 to 150-160 ft./lb. Recheck torque levels again after the first 50-100 miles driven.

What is the torque tolerance for bolt tightening? ›

In practice, a tolerance on the torque value of +/- 10% is commonly used. This allows for the torque accuracy of the tightening tool itself and also allows a bit for intrinsic scatter associated with a person doing the tightening.

Top Articles
Latest Posts
Article information

Author: Greg Kuvalis

Last Updated:

Views: 5674

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Greg Kuvalis

Birthday: 1996-12-20

Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

Phone: +68218650356656

Job: IT Representative

Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.