Free Single 195/65/15 tire

nnnnnate

Well-Known Member
Supporting Member
Location
WVC, UT
Do you know if the volume of air is for this tire? I'm looking for something with a capacity of least 40 liters.

edit: sorry, it looks like its only got 39.43 liters. sorry for the hassle Carl.
 

nnnnnate

Well-Known Member
Supporting Member
Location
WVC, UT
To be fair I just wanted a chance to flex on some homework I did for my programming class yesterday...


import math
tire_width = int(input('Enter the width of the tire in mm: '))
aspect_ratio = int(input('Enter the aspect ratio of the tire: '))
wheel_diameter = int(input('Enter the diameter of the wheel in inches: '))

volume = (math.pi * ((tire_width ** 2) * aspect_ratio) * ((tire_width * aspect_ratio) + (2540 * wheel_diameter))) / 10000000000

print(f"The approximate volume is {volume:.2f} liters. ")
 
Top