Skip to content

Instantly share code, notes, and snippets.

@normanzb
Created February 15, 2018 14:40
Show Gist options
  • Save normanzb/189611939a297b47daf4ba207a92a30c to your computer and use it in GitHub Desktop.
Save normanzb/189611939a297b47daf4ba207a92a30c to your computer and use it in GitHub Desktop.
formula 1:
force = energy / distance
->
distance = energy / force
formula 2:
kinetic energy = .5 * mass * velocity^2
->
distance = .5 * mass * velocity^2 / braking force
formula 3:
braking force = friction * weight = friction * mass * 9.8
combining all formulas together we get:
distance = .5 * mass * velocity^2 / (friction * mass * 9.8)
distance = .5 * velocity^2 / friction / 9.8
distance = velocity^2 / friction / 4.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment