Guest User

Untitled

a guest
Aug 17th, 2018
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. alignTime = -ln(0.25)*Mass_kg*Agility/1000000
  2.  
  3. t = -ln(1-v(t)/maxVel)*mass*agility/10**6
  4.  
  5. (t*10**6)/(mass*agility) = -ln(1-v(t)/maxVel)
  6.  
  7. exp( -t*10**6/(mass*agility) = 1 - v(t)/maxVel
  8.  
  9. v(t)/maxVel = 1 - exp( -t*10**6 /(mass*agility) =
  10.  
  11. v(t) = maxVel* (1 - exp(-t*10**6/(mass*agility) )
Add Comment
Please, Sign In to add comment