diff options
Diffstat (limited to '1394/CH14/EX14.3.1/Ex14_3_1.sce')
-rwxr-xr-x | 1394/CH14/EX14.3.1/Ex14_3_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1394/CH14/EX14.3.1/Ex14_3_1.sce b/1394/CH14/EX14.3.1/Ex14_3_1.sce new file mode 100755 index 000000000..f4de66c74 --- /dev/null +++ b/1394/CH14/EX14.3.1/Ex14_3_1.sce @@ -0,0 +1,17 @@ + +clc
+//initialization of variables
+Rat1 = (6.5/3)*(1-0.47)// as Rat = x0/y0
+m = 0.14
+H = (6.5*10^3)/3600 // Extract flow in g/sec
+L = (3*10^3)/3600// Solvent flow in g/sec
+d= 10 // cm
+A = 0.25*%pi*d^2 // cm^2
+l = 65 // cm
+//Calculations and Results
+Kya = ((H/(l*A))*(1/(1-((m*H)/L)))*(log((1-0.14*Rat1)/(0.47))))*10^3// kg/m^3-sec
+printf("The value of Kya is %.2f kg/m^3-sec",Kya)
+Rat2 = (6.5/3)*(1-0.1)//For case B
+l2 = l*(log(1/((1-0.14*Rat2)/(0.1))))/(log(1/((1-0.14*Rat1)/(0.47))))/100// m
+printf("\nThe length for 90 percent recovery is %.1f m",l2)
+
|