blob: 60de0595a3e93edad1fbc9c3ef5184a582471435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Initilization fo variables
r=2000 //ft
g=32.2 //ft/s^2
d=4.71 //ft
v=176 //ft/s
//Calculations
e=(d*v^2)/(g*r) //ft
//Result
clc
printf('The superelevation is %f ft',e)
//Watch the unit in the final answer
|