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/CH3/EX3.4/3_4.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 '2513/CH3/EX3.4/3_4.sce')
-rwxr-xr-x | 2513/CH3/EX3.4/3_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2513/CH3/EX3.4/3_4.sce b/2513/CH3/EX3.4/3_4.sce new file mode 100755 index 000000000..6e962b324 --- /dev/null +++ b/2513/CH3/EX3.4/3_4.sce @@ -0,0 +1,20 @@ +clc
+//initialisation of variables
+t=0.8//mgd
+d=8000//people
+a=2//hr
+v=800000//ft
+h=10//ft
+a1=4//in
+d1=1//sq ft per capita
+a3=3//mgad
+//CALCULATIONS
+V=v*(a/24)/a//gal
+S=V/h//sq ft
+S1=(v/h)/S//gpd per sq ft
+V1=a*d/h//cu ft
+D=d/S//ft
+E=d1*d/a1//sq ft
+A=t/a3//acre
+//RESULTS
+printf('the capacity of the components of a small trickling-filter =% f acre',A)
|