Updated diff

This commit is contained in:
Ivan Grachyov
2021-11-29 23:02:31 +05:00
parent 1a2aea0fdb
commit 4f6d4a04df
4 changed files with 139 additions and 43 deletions

View File

@@ -50,7 +50,6 @@ Vehicle:new({
Power = 0.3,
Coast = 0.15,
Preload = 10,
UsePowerBias = 10,
ViscousCoeff = 0.96,
Axle = Vector(1, 0, 0),
DistributionCoeff = 0.4,
@@ -59,7 +58,6 @@ Vehicle:new({
Power = 0.4,
Coast = 0.3,
Preload = 10,
UsePowerBias = 10,
ViscousCoeff = 0.96,
Axle = Vector(1, 0, 0),
DistributionCoeff = 0.6,

View File

@@ -24,9 +24,9 @@ Vehicle:new({
}
},
Clutch = {Stiffness = 20, Damping = 0.5, MaxTorque = 400},
Gearbox = {Type = 'MANUAL', ShiftDuration = 0.2, ShiftSmoothness = 0.3, Ratios = {3.67, 2.1, 1.35, 1.1, 0.901}, Reverse = 3.818},
Gearbox = {Type = 'MANUAL', ShiftDuration = 0.2, ShiftSmoothness = 0.3, Ratios = {3.321, 1.902, 1.308, 1, 0.838}, Reverse = 3.382},
Axles = {
{Power = 0.96, Coast = 0.96, Preload = 10, UsePowerBias = 10, ViscousCoeff = 0.96, Axle = Vector(1, 0, 0), DistributionCoeff = 0.6, FinalDrive = 3.9}
{Power = 0.5, Coast = 0.3, Preload = 30, ViscousCoeff = 0.96, Axle = Vector(1, 0, 0), DistributionCoeff = 1, FinalDrive = 4.08}
},
Systems = {{Type = 'LAUNCH', Limit = 3500}, {Type = 'TRACTION', Limit = 1.5}}
})