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/CH8/EX8.2 | |
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/CH8/EX8.2')
-rwxr-xr-x | 2513/CH8/EX8.2/8_2.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2513/CH8/EX8.2/8_2.sce b/2513/CH8/EX8.2/8_2.sce new file mode 100755 index 000000000..6fb38846e --- /dev/null +++ b/2513/CH8/EX8.2/8_2.sce @@ -0,0 +1,20 @@ +clc
+//initialisation of variables
+a=0.75//ft
+p=123//mg
+v=100//ft
+s=33//mg
+s1=67//mg
+d=26.6//mgd
+d1=0.0477//mgd
+q=0.750//gpd/sq mile
+d2=365//days
+//CALCULATIONS
+S=p/a//mg per sq mile
+Cv=v*s/s1//percent
+M=d*d1//mgd per sq mile
+D=v*q/M//MAF
+D1=(v*p)/(M*d2)//MAF
+R=p/q//days
+//RESULTS
+printf('the use monthly averages rather then daily stream flow=% f days',R)
|