blob: 7574e312c78654c1ad0ccb12f25e4668ba5845de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Transport Processes and Seperation Process Principles
//Chapter 14
//Example 14.4-3
//Mechanical-Physical Seperation Processes
//given data
rhol=919.5;//density of oil in kg/m3
rhoh=980.3;//density of the aqueous phase
rin=10.16;
rout=10.414;
r2=sqrt((rhoh*(rout^2)-rhol*(rin^2))/(rhoh-rhol));
mprintf("the location of centrifuge,r= %f mm",r2)
//end
|