blob: 831529c6ad283fd371398e0b27f9cc96a931aeec (
plain)
1
2
3
4
5
6
7
8
9
|
//Given that
g = 9.8 //in m/s^2
v = 694 //in m/s
r = 5800 //in m
//Sample Problem 4-9
printf("**Sample Problem 4-9**\n")
cent_a = v^2 / (r *g)
printf("Centripetal acceleration of the pilot is %f*g m/s^2", cent_a)
|