diff options
Diffstat (limited to '3886/CH13/EX13.3')
-rw-r--r-- | 3886/CH13/EX13.3/13_3.sce | 21 | ||||
-rw-r--r-- | 3886/CH13/EX13.3/13_3.txt | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3886/CH13/EX13.3/13_3.sce b/3886/CH13/EX13.3/13_3.sce new file mode 100644 index 000000000..aef50ecb8 --- /dev/null +++ b/3886/CH13/EX13.3/13_3.sce @@ -0,0 +1,21 @@ +//Pressure tank
+//refer fig. 13.5
+//Required velocity to enter at B
+h=1 //m
+//If t1 is the time of flight , considering vertical motion
+t1=sqrt(2/9.81) //sec
+//Considering horizontal motion
+u1=3/t1 //m/sec
+//Required velocity to enter at C
+//let t2 be the time required for flight from A to C
+bh=2.5 //m
+Range=3 //m
+//Considering Vertical motion
+t2=sqrt((2*2.5)/9.81) //sec
+//Considering horizontal motion
+u2=3/t2 //m/sec
+printf("The range of velocity for which the jet can enter the opening BC is %.2f m/sec to %.2f m/sec",u2,u1)
+
+
+
+
diff --git a/3886/CH13/EX13.3/13_3.txt b/3886/CH13/EX13.3/13_3.txt new file mode 100644 index 000000000..f2bd18a76 --- /dev/null +++ b/3886/CH13/EX13.3/13_3.txt @@ -0,0 +1,3 @@ +
+--> exec('E:\My program EM\13. Projectiles\13.3.sce', -1)
+The range of velocity for which the jet can enter the opening BC is 4.20 m/sec to 6.64 m/sec
\ No newline at end of file |