BlackLotus
- 2
- 0
Good day to everyone,
I hope it is appropriate to post my practical statement of a problem here, to seek physical knowledge. My main background is Computer Science.
The Problem:
I want to algorithmically determine the tire pressure of a car, using informations of the car's footprint and it's tire-load (half axle load).
Example:
The car's tire has a load of
F = 420 \cdot 9.81 N
The tire's footprint length (in driving direction) is
L = 0.13 m
The tire's footprint width (orthogonal to driving direction) is
W = 0.175 m
Now i estimate the footprint area as
A = L \cdot W
Then, the tire pressure in bar could be estimated by
p = \frac{F}{A\cdot 10^5} \approx 1.811 bar
But the true pressure is much higher:
p_{true} = 2.30 bar
I think footprint area is overestimated (too big), and F needs to be reduced by a value according to tire type and F, as the tire already carries some load due to its material.
What things are missing? Is there any function (e.g. f(tireType, N)) i could use as correction factor of this value?
Thanks to all of You in advance!
I hope it is appropriate to post my practical statement of a problem here, to seek physical knowledge. My main background is Computer Science.
The Problem:
I want to algorithmically determine the tire pressure of a car, using informations of the car's footprint and it's tire-load (half axle load).
Example:
The car's tire has a load of
F = 420 \cdot 9.81 N
The tire's footprint length (in driving direction) is
L = 0.13 m
The tire's footprint width (orthogonal to driving direction) is
W = 0.175 m
Now i estimate the footprint area as
A = L \cdot W
Then, the tire pressure in bar could be estimated by
p = \frac{F}{A\cdot 10^5} \approx 1.811 bar
But the true pressure is much higher:
p_{true} = 2.30 bar
I think footprint area is overestimated (too big), and F needs to be reduced by a value according to tire type and F, as the tire already carries some load due to its material.
What things are missing? Is there any function (e.g. f(tireType, N)) i could use as correction factor of this value?
Thanks to all of You in advance!