summaryrefslogtreecommitdiff
path: root/3814/CH8/EX8.5/Ex8_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3814/CH8/EX8.5/Ex8_5.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3814/CH8/EX8.5/Ex8_5.sce')
-rw-r--r--3814/CH8/EX8.5/Ex8_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3814/CH8/EX8.5/Ex8_5.sce b/3814/CH8/EX8.5/Ex8_5.sce
new file mode 100644
index 000000000..20eaab5ab
--- /dev/null
+++ b/3814/CH8/EX8.5/Ex8_5.sce
@@ -0,0 +1,17 @@
+// determine discharge and head with two identail
+clc
+f=0.025
+l=70
+D=0.3
+k=2.5
+g=9.8
+m=((f*l/D)+k)/(2*g*(((%pi*D*D)/4)^2))
+disp(m)
+mprintf('\n H1 =15 +%d Q^2',m)
+b=5.35
+a=112.8
+c=7.9
+Q=(1/(2*a))*(b+sqrt((b^2)+(4*a*c)))
+mprintf('\n Q= %f m3/s',Q)
+H1=15+85*Q^2
+mprintf('\n H1 = %f m',H1)