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 /858/CH3/EX3.5 | |
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 '858/CH3/EX3.5')
-rwxr-xr-x | 858/CH3/EX3.5/example_5.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/858/CH3/EX3.5/example_5.sce b/858/CH3/EX3.5/example_5.sce new file mode 100755 index 000000000..6f284f6a0 --- /dev/null +++ b/858/CH3/EX3.5/example_5.sce @@ -0,0 +1,23 @@ +clc
+clear
+printf("example 3.5 page number 92\n\n")
+
+//to find the screen effectiveness
+
+xv = 0.88;
+xf = 0.46;
+xl = 0.32;
+F= 100 //in kg
+
+L = (F*(xf-xv))/(xl-xv);
+V = F-L;
+printf("L = %f Kg \nV = %f Kg",L,V)
+Eo = (V*xv)/(F*xf);
+
+printf(" \n\neffectiveness based on oversized partices = %f \n\n",Eo)
+Eu = (L*(1-xl))/(F*(1-xf));
+
+printf("effectiveness based on undersized partices = %f",Eu)
+E=Eu*Eo;
+
+printf("\n\noverall effectiveness = %f",E)
|