diff options
Diffstat (limited to '2762/CH14/EX14.5.1/14_5_1.sce')
-rwxr-xr-x | 2762/CH14/EX14.5.1/14_5_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2762/CH14/EX14.5.1/14_5_1.sce b/2762/CH14/EX14.5.1/14_5_1.sce new file mode 100755 index 000000000..297001bab --- /dev/null +++ b/2762/CH14/EX14.5.1/14_5_1.sce @@ -0,0 +1,12 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 14
+//Example 14.5-1
+//Mechanical-Physical Seperation Processes
+//given data in english units
+Df=3/12;//feed size in feet
+Dp=(1/8)/12;//productr size in ft
+T=10/60;//feed rate in ton/min
+//Bonds Equation(English units):(P/T)=1.46E1((1/Dp^0.5)-(1/Df^0.5))
+E1=12.68;
+P=T*(1.46*E1*((1/sqrt(Dp))-(1/sqrt(Df))));
+mprintf("gross power reqd= %f hp",P)
|