Quantcast
Channel: Programming (In-game)
Viewing all articles
Browse latest Browse all 645

Suspension Strength per Tonne

$
0
0
Does anyone have a more accurate formula to adjust suspension strength?

I've dabbled with the following formula:
0.0036x² - 0.1x + 6

[​IMG]

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(massTonnes2) -...
Suspension Strength per Tonne

Viewing all articles
Browse latest Browse all 645

Trending Articles