summaryrefslogtreecommitdiff
path: root/1484/CH6/EX6.9/6_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1484/CH6/EX6.9/6_9.sce
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 '1484/CH6/EX6.9/6_9.sce')
-rwxr-xr-x1484/CH6/EX6.9/6_9.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/1484/CH6/EX6.9/6_9.sce b/1484/CH6/EX6.9/6_9.sce
new file mode 100755
index 000000000..bc2e184c4
--- /dev/null
+++ b/1484/CH6/EX6.9/6_9.sce
@@ -0,0 +1,26 @@
+clc
+//initialisation of variables
+d1= 24 //in
+Q= 10 //cuses
+d2= 18 //in
+d3= 12 //in
+f= 0.01
+l= 1000 //ft
+g= 32.2 //ft/sec^2
+l1= 100 //ft
+l2= 600 //ft
+//CALCULATIONS
+v1= sqrt(4*Q/(%pi*(d1/12)^2))
+v2= sqrt(4*Q/(%pi*(d2/12)^2))
+v3= sqrt(4*Q/(%pi*(d3/12)^2))
+hf= 4*f*l*v1^2/(2*g*(d1/12))
+dh= l1-hf
+h1= 4*f*l2*v2^2/((d2/12)*2*g)
+dh1= dh-h1
+h2= 4*f*(l-l2)*v3^2/((d3/12)*2*g)
+dh2= dh1-h2
+//RESULTS
+ printf ('level gradient at D= %.2f ft',dh2)
+
+ //ANSWER GIVEN IN THE TEXTBOOK IS WRONG
+