summaryrefslogtreecommitdiff
path: root/858/CH3/EX3.5/example_5.sce
blob: 6f284f6a09bf21d715155d12af0acb4c935ba952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)