blob: 8304cbd870ec3c68a2ad26a0f0cb09b9924d9e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Ball dropped from height
//refer fig. 18.11
g=9.81 //m/sec^2
h0=1.2 //m
uy=sqrt(2*g*h0) //downward
h1=1 //m
v1y=sqrt(2*9.81*h1) //upwards
e=sqrt(1/1.2)
//Time of flight
t1=(2*sqrt(2*9.81*1))/(9.81) //sec
ux=0.4/0.903 //m/sec
//Vertical component of velocity after second bounce
v2y=0.903*sqrt(2*9.81*1) //m/sec
h2=((v2y)^2)/(2*9.81) //m
t2=(2*4)/(9.81) //sec
//Horizontal range
D2=0.443*0.815 //m
printf("\ne=%.3f \nh2=%.3f m \nD2=%.3f m ",e,h2,D2)
|