Does anyone have a more accurate formula to adjust suspension strength?
I've dabbled with the following formula:
0.0036x² - 0.1x + 6
Be careful with it, because it becomes increasingly inaccurate over 17500 kg. Of course, it is also inaccurate at values lower than 17500 kg.
Suspension Strength per Tonne
I've dabbled with the following formula:
0.0036x² - 0.1x + 6
![[IMG]](http://i.imgur.com/X5RTPoA.jpg)
Be careful with it, because it becomes increasingly inaccurate over 17500 kg. Of course, it is also inaccurate at values lower than 17500 kg.
PHP:
// Only tested on small grids between 17500 and 50000 kg
float massTonnes = vehicleMassTotal / 1000;
suspension.Strength = 0.0036f * (float)Math.Pow(massTonnes, 2) -...