Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Calculating Tyre sizes

  1. #1
    Join Date
    Dec 2006
    Location
    NSW , Pennant Hills
    Posts
    3,477
    Total Downloaded
    0

    Calculating Tyre sizes

    Could someone please post in here how to Calculate a tyre sizes , this has been bugging me for a while , for eg if someone says I've got a set of 265/75R/16 how does that actually equate to in inches "?

  2. #2
    dmdigital's Avatar
    dmdigital is offline OldBushie Vendor

    Gold Subscriber
    Join Date
    Jun 2006
    Location
    Arnhem Land, NT
    Posts
    8,492
    Total Downloaded
    0
    265mm width
    75 percent of width in wall height
    R implies radial
    16" rim

    1" = 25.4mm

    So 265/75R16 is
    265mm wide
    803.9mm diameter = 2 x 75% of 265mm + 16" = 31.6"

    See here: Tool
    MY15 Discovery 4 SE SDV6

    Past: 97 D1 Tdi, 03 D2a Td5, 08 Kimberley Kamper, 08 Defender 110 TDCi, 99 Defender 110 300Tdi[/SIZE]

  3. #3
    Join Date
    Jan 1970
    Location
    Central West NSW
    Posts
    14,257
    Total Downloaded
    99.87 MB
    Quote Originally Posted by Disco_owner View Post
    Could someone please post in here how to Calculate a tyre sizes , this has been bugging me for a while , for eg if someone says I've got a set of 265/75R/16 how does that actually equate to in inches "?
    This is a good program to do it:
    Tire size calculator

    Admittedly you do just get to know what the metrics and imperial tyres convert over to after a while....

    or then again, it may show how sad I am too.
    Cheers
    Slunnie


    ~ Discovery II Td5 ~ Discovery 3dr V8 ~ Series IIa 6cyl ute ~ Series II V8 ute ~

  4. #4
    Join Date
    Mar 2008
    Location
    Perth, WA
    Posts
    1,947
    Total Downloaded
    0
    Hi, have a look at: 4WDbits Tyre Size Calculator

  5. #5
    Join Date
    Dec 2006
    Location
    NSW , Pennant Hills
    Posts
    3,477
    Total Downloaded
    0
    Thanks heaps Fellas,

    I will be going to 315/75/16 shortly but according to the Tool it's not quite 35" ..But close

  6. #6
    Join Date
    Jan 1970
    Location
    Central West NSW
    Posts
    14,257
    Total Downloaded
    99.87 MB
    They're close enough to be commonly known as a 35 though.

    Which tyre are you looking to fit? I can't wait to see them!
    Cheers
    Slunnie


    ~ Discovery II Td5 ~ Discovery 3dr V8 ~ Series IIa 6cyl ute ~ Series II V8 ute ~

  7. #7
    dmdigital's Avatar
    dmdigital is offline OldBushie Vendor

    Gold Subscriber
    Join Date
    Jun 2006
    Location
    Arnhem Land, NT
    Posts
    8,492
    Total Downloaded
    0
    Here's the source for the conversion tool. I wrote this some years back when there weren't as many other conversion pages on the www.
    Code:
    <html> 
    <head> 
    <title>Tool</title> 
    <script language=javascript> 
    function tyreSize() 
    {   var w = new Number(tWidth.value); 
       var p = new Number(tWall.value); 
       var r = new Number(tRim.value); 
        var Inch = new Number("25.4"); 
       var d = new Number(); 
       d = (w*(wBtn1.checked?1:Inch)*p*0.02) + (r*(rBtn1.checked?1:Inch)); 
       d /= (dBtn1.checked?1:Inch); 
       d = Math.round(d*10)/10; 
       tDmtr.innerText=d.toString(); 
       if(isNaN(tDmtr.innerText)) tDmtr.innerHTML = "<b>#ERR</b>"; 
    } 
    function reset() 
    {   tWidth.value = ""; 
       tWall.value = ""; 
       tRim.value = ""; 
       tDmtr.innerHTML = "&nbsp;" 
    } 
    function convertToMpg() 
    {   var l = new Number(fLitre.value); 
       var m = Math.round(62.5/(l/4.55)*100)/100; 
       fMpg.innerText = m.toString(); 
       if(isNaN(fMpg.innerText)) fMpg.innerHTML = "<b>#ERR</b>"; 
    } 
    function convertToLtr() 
    {   var m = new Number(fMpg.value); 
       var l = Math.round(10000*(1/((m/4.55)/0.625)))/100; 
       fLitre.innerText = l.toString(); 
       if(isNaN(fLitre.innerText)) fLitre.innerHTML = "<b>#ERR</b>"; 
    } 
    </script> 
    </head> 
    <body> 
    <table border="0" cellpadding="0" cellspacing="3" width="233"> 
        <tr> 
          <td width="50" align="right">Width: </td> 
          <td width="50"><input id="tWidth" type="text" name="tWidth" size="3"></td> 
          <td width="60" align="center"><input id="wBtn1" type="radio" value="true" checked name="wBtn">mm</td> 
          <td width="60" align="center"><input id="wBtn2" type="radio" value="false" name="wBtn">inch</td> 
        </tr> 
        <tr> 
          <td width="50" align="right">Wall: </td> 
          <td width="50"><input id="tWall" type="text" name="tWall" size="3"></td> 
          <td width="60" align="center">%</td> 
          <td width="60">&nbsp;</td> 
        </tr> 
        <tr> 
          <td width="50" align="right">Rim: </td> 
          <td width="50"><input id="tRim" type="text" name="tRim" size="3"></td> 
          <td width="60" align="center"><input id="rBtn1" type="radio" value="true" name="rBtn">mm</td> 
          <td width="60" align="center"><input id="rBtn2" type="radio" value="false" checked name="rBtn">inch</td> 
        </tr> 
        <tr> 
          <td width="50" align="right">Diameter: </td> 
          <td id="tDmtr" width="50" align="center">&nbsp;</td> 
          <td width="60" align="center"><input id="dBtn1" type="radio" value="true" checked name="dBtn">mm</td> 
          <td width="60" align="center"><input id="dBtn2" type="radio" value="false" name="dBtn">inch</td> 
        </tr> 
        <tr> 
          <td colspan=4 align="center"> 
         <span style="color:blue;text-decoration:underline;cursor:hand;" id="sbmt" onclick="tyreSize();">Calculate</span> 
         &nbsp;&nbsp;<span style="color:blue;text-decoration:underline;cursor:hand;" id="rst" onclick="reset();">Reset</span> 
         </td> 
      </table> 
      <br> 
      <table border="0" cellpadding="0" cellspacing="3" width="233"> 
        <tr> 
          <td width="100" align="right">litres/100km: </td> 
          <td width="70"><input id="fLitre" type="text" name="fLitre" size="5"></td> 
          <td width="30" align="center"> 
             <span style="color:blue;cursor:hand;" title="Convert to mpg" id="toMpg" onclick="convertToMpg();">&gt;&gt;<span></td> 
          <td width="30" align="center"> 
            <span style="color:blue;cursor:hand;" title="Convert to l/100km" id="toLtr" onclick="convertToLtr();">&lt;&lt;</td> 
          <td width="70"><input id="fMpg" type="text" name="fMpg" size="5"></td> 
        </tr> 
      </table> 
    </body> 
    </html>
    MY15 Discovery 4 SE SDV6

    Past: 97 D1 Tdi, 03 D2a Td5, 08 Kimberley Kamper, 08 Defender 110 TDCi, 99 Defender 110 300Tdi[/SIZE]

  8. #8
    Join Date
    Jan 1970
    Location
    NSW far north coast
    Posts
    17,285
    Total Downloaded
    0
    Just remember that they aren't exact calculations, either. Tyres can be quite a bit either way of their 'calculated' size (usually significantly smaller) and can vary batch to batch too.

    Some 35's are sometimes closer to 33.5's. (often the 'imperial' sized tyres)

  9. #9
    Join Date
    Dec 2006
    Location
    NSW , Pennant Hills
    Posts
    3,477
    Total Downloaded
    0
    Quote Originally Posted by Slunnie View Post
    They're close enough to be commonly known as a 35 though.

    Which tyre are you looking to fit? I can't wait to see them!
    Most Probably Maxxis or BFG MT's If price is right I'll go with Maxxis although I'm Told Maxxis are a BFG made tyre. when will you be back down to sydney next Simon ,Like to catch up with you very soon.


    P.S dm_td5 that source code you're written , what Program was it written with? I studied a Java progamming language similar to that few years ago at UTS when i studied for my eng degree.

  10. #10
    Join Date
    Jan 1970
    Location
    Central West NSW
    Posts
    14,257
    Total Downloaded
    99.87 MB
    Quote Originally Posted by Disco_owner View Post
    Most Probably Maxxis or BFG MT's If price is right I'll go with Maxxis although I'm Told Maxxis are a BFG made tyre. when will you be back down to sydney next Simon ,Like to catch up with you very soon.
    Cool! You'll love them, the extra traction and the diff clearance.

    I should be out on Tuskers next TT to Lithgow next weekend hopefully. Are you coming to that? He has a post on here somewhere about it.
    Cheers
    Slunnie


    ~ Discovery II Td5 ~ Discovery 3dr V8 ~ Series IIa 6cyl ute ~ Series II V8 ute ~

Page 1 of 2 12 LastLast

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Search AULRO.com ONLY!
Search All the Web!