summaryrefslogtreecommitdiff
path: root/551/CH14/EX14.16/16.sce
blob: 167ff6992b043a799dff302d98c2ba6795b5d1e4 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
clc

disp("(i) If an expansion cylinder is used in a vapour compression system, the work recovered would be extremely small, in fact not even sufficient to overcome the mechanical friction. It will not be possible to gain any work. Further, the expansion cylinder is bulky. On the other hand the expansion valve is a very simple and handy device, much cheaper than the expansion cylinder. It does not need installation, lubrication or maintenance.")
disp("The expansion valve also controls the refrigerant flow rate according to the requirement, in addition to serving the function of reducting the pressure of the refrigerant.")


disp("(ii) The comparison between centrifugal and reciprocating compressors ")

disp("1.Suitability")

disp("Centrifugal compressor")
disp("Suitable for handling large volumes of air at low pressures")

disp("Reciprocating compressor")
disp("Suitable for low discharges of air at high pressure.")


disp("2.Operational speeds")

disp("Centrifugal compressor")
disp("Usually high")

disp("Reciprocating compressor")
disp("Low")


disp("3.Air supply")

disp("Centrifugal compressor")
disp("Continuous")

disp("Reciprocating compressor")
disp("Pulsating")


disp("4.Balancing")

disp("Centrifugal compressor")
disp("Less Vibrations")

disp("Reciprocating compressor")
disp("Cyclic vibrations occur")


disp("5.Lubrication system")

disp("Centrifugal compressor")
disp("Generally simple lubrication systems are required.")

disp("Reciprocating compressor")
disp("Generally complicated")


disp("6.Quality of air delivered")

disp("Centrifugal compressor")
disp("Air delivered is relatively more clean")

disp("Reciprocating compressor")
disp("Generally contaminated with oil.")


disp("7.Air compressor size")

disp("Centrifugal compressor")
disp("Small for given discharge")

disp("Reciprocating compressor")
disp("Large for same discharge")


disp("8.Free air handled")

disp("Centrifugal compressor")
disp("2000-3000 m3/min")

disp("Reciprocating compressor")
disp("250-300 m3/min")


disp("9.Delivery pressure")

disp("Centrifugal compressor")
disp("Normally below 10 bar")

disp("Reciprocating compressor")
disp("500 to 800 bar")


disp("10.Usual standard of compression")

disp("Centrifugal compressor")
disp("Isentropic compression")

disp("Reciprocating compressor")
disp("Isothermal compression")


disp("11.Action of compressor")

disp("Centrifugal compressor")
disp("Dynamic action")

disp("Reciprocating compressor")
disp("Positive displacement")


disp("(iii)")
h2=344.927; //kJ/kg
h4=228.538; //kJ/kg
h1=h4;
cpv=0.611; ///kJ/kg0C
// s2=s3
t3=39.995; //0C
h3=363.575+cpv*(t3-30);
Rn=h2-h1;
W=h3-h2;

COP=Rn/W;
disp("COP =")
disp(COP)

cp=2.0935; //kJ/kg 0C
Q=2400/24/3600*[4.187*(15-0)+335+cp*(0-(-5))];

W=Q/COP;
disp("Work required =")
disp(W)
disp("kW")