Tire Size Comparisons
[-
# no HTML bullshit
$optRawInput = 1;
$escmode = 0;
$width = $fdat{width};
$aspect = $fdat{aspect};
$wheels = $fdat{wheels};
-]
[$ if (!$width || !$aspect || !$wheels) $]
Missing entry! All entries must be filled.
[$ else $]
Of course I'm not going to tell you that any of the following
tires will actually fit on your vehicle. All I'm saying is
that if you want the speedo to be correct, try to use tires
that are about this size.
[-
for ($new_wheel = 12; $new_wheel <= 19; $new_wheel++)
{
print OUT "If you want to run $new_wheel-inch wheels:\n";
for ($new_aspect = 35; $new_aspect <= 90; $new_aspect += 5)
{
if ($new_aspect != aspect || $new_wheel != $wheels)
{
$new_width = (($width*($aspect/100) * 2 + $wheels*25.4 - $new_wheel*25.4) / 2) / ($new_aspect/100);
$new_width = int($new_width + 0.5);
print OUT "- For $new_aspect-series tires, you will want a tire that is $new_width mm wide
\n";
}
}
print OUT "
\n";
}
-]
[$ endif $]