summaryrefslogtreecommitdiff
path: root/839/CH18/EX18.6/Example_18_6.sce
blob: df987273092400970f514d2c3b4c4546393a0fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//clear//
clear;
clc;

//Example 18.6
//Given
xF = 0.40;
P = 1; //[atm]
D = 5800; //[kg/h]
R = 3.5;
LbyV = R/(1+R);
//Solution
//Physical properties of methanol
M = 32;
Tnb = 65; //[C]
rho_v = M*273/(22.4*338); //[kg/^3]
rho_l_0 = 810; //[kg/m^3], At 0C, from Perry, Chemical Engineers' Handbook 
rho_l_20 = 792; //[kg/m^3], At 20C, from Perry, Chemical Engineers' Handbook 
rho_l = 750; //[kg/m^3], At 65C
sigma = 19; //[dyn/cm], from Lange's Handbook of Chemistry
//(a)
//Vapor velocity and column diameter
//Using Fig. 18.28, the abscissa is
abscissa = LbyV*(rho_v/rho_l)^(1/2);
//for 18-in. plate spacing
Kv = 0.29;
//Allowable vapor velocity
uc = Kv*((rho_l-rho_v)/rho_v)^(1/2)*(sigma/20)^(0.2); //[ft/s]
//Vapor flow rate
V = D*(R+1)/(3600*rho_v); //[m^3/s]
//Cross setional area of the column
Bubbling_area = V/2.23; //[m^2]
//If the bubble area is 0.7 of the total column area
Column_area = Bubbling_area/0.7; //[m^2]
//Column diameter
Dc = sqrt(4*Column_area/%pi); //[m]
disp('respectively','m',Dc,'and','ft/s',uc,'the allowable velocity and colmn diameter are')

//(b)
//Pressure drop:
//Area of one unit of three holes on a trangular 3/4-in. pitch is
//1/2*3/4*(3/4*sqrt(3/2)) in.^2. The hole area in this section (half a hole)is
//1/2*%pi/4*(1/4)^2 in.^2. Thus the hole area is %pi/128*64/9*sqrt(3), or 10.08 percent
//of the bubbling area.
//Vapor velocity through holes:
uo = 2.23/0.1008; //[m/s]
//Using Eq.(18.58),
//From Fig. 18.27
Co = 0.73;
hd = 51.0*uo^2*rho_v/(Co^2*rho_l); //[mm methanol]
//Head of liquid on plate:
//Weir height
hw = 2*25.4; //[mm]
//Height of the liquid above weir:
//Assuming the downcomer area is 15 percent of the column 
//area on each side of th column. From Perry, the chord
//length for sucha segmental downcomer is 1.62 times the radius
//of the colmn, so
Lw = 1.62*2.23/2; //[m]
//Liqiud Flow rate:
qL = D*(R+1)/(rho_l*60); //[m^3/min]
//From Eq.(18.60)
how = 43.4*(qL/Lw)^(2/3) //[mm]
//From Eq.(18.59), with 
beeta = 0.6;
hI = beeta*(hw+how); //[mm]
//Total height of liquid, from Eq.(18.62)
hT = hd+hI; //[mm]
disp('mm methanol',hT,'pressure drop per plate is')

//(c)
//Froth height in th downcomer :
//Using Eq.(18.62).,Estimating 
hf_L = 10; //[mm methanol]
//Then,
Zc = (2*hI)+hd+hf_L; //[mm]
//from Eq.(18.63)
Z = Zc/0.5; //[mm]
disp('mm methanol',Z,'Froth height in the downcomer is')