diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2159/CH11/EX11.7/117.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2159/CH11/EX11.7/117.sce')
-rwxr-xr-x | 2159/CH11/EX11.7/117.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2159/CH11/EX11.7/117.sce b/2159/CH11/EX11.7/117.sce new file mode 100755 index 000000000..6efe8c6e8 --- /dev/null +++ b/2159/CH11/EX11.7/117.sce @@ -0,0 +1,20 @@ +// problem 11.7
+Hg=500
+hf=Hg/3
+H=Hg-hf
+Q=2
+y=165
+y2=180-y
+g=9.81
+w=9810
+Cv=1
+V1=Cv*(sqrt(2*g*H))
+u=0.45*V1
+Vr1=V1-u
+Vw1=V1
+Vr2=Vr1
+Vw2=(Vr2*(cosd(y2)))-u
+W=w*Q*(Vw1+Vw2)*u/g
+P=W/1000
+nh=2*u*(Vw1+Vw2)/(V1*V1)
+disp(nh*100,P,"power given by the water to the runner in Kw,Hydraulic efficiency")
|