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 /2513/CH14/EX14.11 | |
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 '2513/CH14/EX14.11')
-rwxr-xr-x | 2513/CH14/EX14.11/14_11.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2513/CH14/EX14.11/14_11.sce b/2513/CH14/EX14.11/14_11.sce new file mode 100755 index 000000000..b38161ef8 --- /dev/null +++ b/2513/CH14/EX14.11/14_11.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+q=1.0//cfs
+g=2.0//percent
+g1=5.6//percent
+r=0.015//cfs
+w=90//percent
+Q=10*0.9*q//ft
+p=0.10//ft
+h=(3.48*g1^1/3)//ft
+d=p^2/3*100//ft
+//CALCULATIONS
+D=h*d//in
+//RESULTS
+printf('The maximum depth of flow in the gutter=% f in',D)
|