diff options
Diffstat (limited to '3886/CH13/EX13.1')
-rw-r--r-- | 3886/CH13/EX13.1/13_1.sce | 13 | ||||
-rw-r--r-- | 3886/CH13/EX13.1/13_1.txt | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3886/CH13/EX13.1/13_1.sce b/3886/CH13/EX13.1/13_1.sce new file mode 100644 index 000000000..43f13dc2a --- /dev/null +++ b/3886/CH13/EX13.1/13_1.sce @@ -0,0 +1,13 @@ +//Pilot and his bomber
+//refer fig.13.3
+h=2000 //m
+u=(600*1000)/(60*60) //m/sec
+//initial velocity in vertical direction
+//gravitational acceleration=9.81 m/sec^2
+//if t is the time of flight
+t=sqrt((2000*2)/(9.81)) //sec
+//during this period horizontal distance travelled by the bomb must be (d)
+d=u*t //m
+printf("Bomb should be released at %.2f m from the target",d)
+
+
diff --git a/3886/CH13/EX13.1/13_1.txt b/3886/CH13/EX13.1/13_1.txt new file mode 100644 index 000000000..283fd2ebd --- /dev/null +++ b/3886/CH13/EX13.1/13_1.txt @@ -0,0 +1,3 @@ +
+--> exec('E:\My program EM\13. Projectiles\13.1.sce', -1)
+Bomb should be released at 3365.46 m from the target
\ No newline at end of file |