summaryrefslogtreecommitdiff
path: root/3886/CH13/EX13.3/13_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH13/EX13.3/13_3.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH13/EX13.3/13_3.sce')
-rw-r--r--3886/CH13/EX13.3/13_3.sce21
1 files changed, 21 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)
+
+
+
+