summaryrefslogtreecommitdiff
path: root/1553/CH25/EX25.5/25Ex5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH25/EX25.5/25Ex5.sce')
-rw-r--r--1553/CH25/EX25.5/25Ex5.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1553/CH25/EX25.5/25Ex5.sce b/1553/CH25/EX25.5/25Ex5.sce
new file mode 100644
index 000000000..bd5157127
--- /dev/null
+++ b/1553/CH25/EX25.5/25Ex5.sce
@@ -0,0 +1,13 @@
+//Ch25_Ex5
+clc;
+clear;
+close;
+lt=200; bt=150; //dimensions of tank
+lp=1.5; bp=1.25; //dimensions of pipe
+rise=2
+speed=20*1000/60; //converting speed into meter/min
+volreq=lt*bt*rise;
+length1min=speed*1; //length of water column flown in 1 min
+vol1min=lp*bp*length1min;
+time=volreq/vol1min;
+mprintf("The time required is %d min",time);