summaryrefslogtreecommitdiff
path: root/2132/CH7/EX7.19
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2132/CH7/EX7.19
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2132/CH7/EX7.19')
-rwxr-xr-x2132/CH7/EX7.19/Example7_19.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2132/CH7/EX7.19/Example7_19.sce b/2132/CH7/EX7.19/Example7_19.sce
new file mode 100755
index 000000000..93e14d1c9
--- /dev/null
+++ b/2132/CH7/EX7.19/Example7_19.sce
@@ -0,0 +1,14 @@
+////Example 7.19
+clc;
+clear;
+close;
+format('v',9);
+//Given data :
+g=9.81;//gravity constant
+D=150/1000;//meter(Pipe diameter)
+Q=40;//litres/sec(rate of discharge)
+l=500;//meter(valve distance)
+T=0.5;//second
+v=Q/1000/(%pi/4*D^2);//m/s(velocity of flow)
+pi=1000/g*(l*v/T);//kg/m^2
+disp(pi,"Increase in pressure intensity(kg/m^2)");