Created
February 15, 2018 14:40
-
-
Save normanzb/189611939a297b47daf4ba207a92a30c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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