0

速度 0 で変位 0 に到達することによって、歩いてブレーキをかけることができる最大速度を知りたいです
。離散時間で機能する方程式が必要です。

体をどのように更新および移動していますか?
最初に、速度が更新さ
れます。次に、位置が更新されます。 NewPosition = LastPosition + Velocity

したがって、たとえば、期待される結果の表は次のようになります。

MaxStoppableVelocity ( Displacement = 0m, Deceleration = -2m/s² ) should be 2m/s  
MaxStoppableVelocity ( Displacement = 1m, Deceleration = -2m/s² ) should be 3m/s  
MaxStoppableVelocity ( Displacement = 2m, Deceleration = -2m/s² ) should be 4m/s  
MaxStoppableVelocity ( Displacement = 3m, Deceleration = -2m/s² ) should be 4.5m/s  
MaxStoppableVelocity ( Displacement = 4m, Deceleration = -2m/s² ) should be 5m/s  
MaxStoppableVelocity ( Displacement = 5m, Deceleration = -2m/s² ) should be 5.5m/s  
MaxStoppableVelocity ( Displacement = 6m, Deceleration = -2m/s² ) should be 6m/s  
MaxStoppableVelocity ( Displacement = 7m, Deceleration = -2m/s² ) should be 6.33m/s  
MaxStoppableVelocity ( Displacement = 8m, Deceleration = -2m/s² ) should be 6.66m/s  
MaxStoppableVelocity ( Displacement = 9m, Deceleration = -2m/s² ) should be 7m/s  
MaxStoppableVelocity ( Displacement = 10m, Deceleration = -2m/s² ) should be 7.33m/s  
MaxStoppableVelocity ( Displacement = 11m, Deceleration = -2m/s² ) should be 7.66m/s  
MaxStoppableVelocity ( Displacement = 12m, Deceleration = -2m/s² ) should be 8m/s  
MaxStoppableVelocity ( Displacement = 13m, Deceleration = -2m/s² ) should be 8.25m/s  
MaxStoppableVelocity ( Displacement = 14m, Deceleration = -2m/s² ) should be 8.5m/s  
MaxStoppableVelocity ( Displacement = 15m, Deceleration = -2m/s² ) should be 8.75m/s  
MaxStoppableVelocity ( Displacement = 16m, Deceleration = -2m/s² ) should be 9m/s  
MaxStoppableVelocity ( Displacement = 17m, Deceleration = -2m/s² ) should be 9.25m/s  
MaxStoppableVelocity ( Displacement = 18m, Deceleration = -2m/s² ) should be 9.5m/s  
MaxStoppableVelocity ( Displacement = 19m, Deceleration = -2m/s² ) should be 9.75m/s  
MaxStoppableVelocity ( Displacement = 20m, Deceleration = -2m/s² ) should be 10m/s

表内のこのデータはすべて、私が行ったシミュレーションを使用してテストされましたが、これらの値を与える方程式を見つけたいと考えています。

私のシミュレーションの時間は離散的であるため、連続時間の方程式は機能しません。

ご不明な点がございましたら、お気軽にお問い合わせください。

4

1 に答える 1