This commit is contained in:
Никита Круглицкий
2025-05-11 02:18:55 +06:00
parent 9f19c7d618
commit 14ab069846
5 changed files with 124 additions and 99 deletions

View File

@@ -3,10 +3,10 @@ local FrictionPreset = class('FrictionPreset')
function FrictionPreset:initialize(config)
config = config or {}
self.B = config.B or 10.86
self.C = config.C or 2.15
self.D = config.D or 0.933
self.E = config.E or 0.992
self.B = config.B or 11
self.C = config.C or 1.15
self.D = config.D or 1.03
self.E = config.E or -10
end
function FrictionPreset:evaluate(slip)