Gearbox setting.

Your forum for all discussions around Modding.
SJAY
Posts: 10
Joined: Wed Jan 05, 2022 5:05 am

Gearbox setting.

Post by SJAY »

Hello. In the network, as we know, there is a table for calculating engine parameters in FS22, so the question is - how to calculate the gearbox settings correctly?


<forwardGear gearRatio="4.72" name="1" />
<forwardGear gearRatio="2.90" name="2" />
<forwardGear gearRatio="1.72" name="3" />
<forwardGear gearRatio="1.00" name="4" />
<forwardGear gearRatio="0.664" name="5" />
<backwardGear gearRatio="5.22" name="R"/>
Ziuta Modding
Moderator
Posts: 903
Joined: Sun Jul 17, 2016 9:40 am

Re: Gearbox setting.

Post by Ziuta Modding »

Code: Select all

gearRatio = motorMaxRpm * math.pi / (maxSpeed / 3.6 * 30)
But instead you can use the maxSpeed attribute instead of gearRatio (you provide value in km/h) then the game will calculate it yourself according to the above design
Post Reply