CL 451
Assignment
GROUP 1
(Roll #s ending in 1)
Problem statement and Input Details Table
The streams are given as:
Hot
From To H H/T
H1 200 150 100 2
H2 250 200 200 4
H3 150 100 300 6
H4 0 0 0 0
H5 0 0 0 0
Cold
From To H
C1 150 200 100 2
C2 200 250 250 5
C3 250 300 150 3
C4 0 0 0 0
C5 0 0 0 0
HRAT 20
Solution Startegy
1. We subtract HRAT from the hot stream temperature
2. We tabulate all hot and cold stream temperatures in descending order
3. We find corresponding hot and cold enthalpies in each temperature band (T)
4. We subtract cold enthalpies from the hot ones
5. We tabulate the cascaded total enthalpies
6. We find the minimum value and add it to the entire column to generate surplus
enthalpies
7. Minimum value found above correspond to Hot Utility
8. Last value in the surplus Enthalpies column corresponds to Cold utility
9. Add this cold utility to the cold enthalpies in a cascaded manner to get CCC.
10. Cascaded from of the Hot enthalpies gives HCC
11. Plot HCC and CCC
12. Perform the pinch analysis and identify heat exchange zones
13. Minimum number of heat exchangers in each zone is number streams in that zone
minus 1
Results:
Temp H1 H2 H3 H4 H5 C1 C2 C3 C4 C5
300 0 0 0 0 0 0 0 1 0 0
250 0 0 0 0 0 0 1 0 0 0
250 0 0 0 0 0 0 1 0 0 0
230 0 1 0 0 0 0 1 0 0 0
200 0 1 0 0 0 1 0 0 0 0
200 0 1 0 0 0 1 0 0 0 0
180 1 0 0 0 0 1 0 0 0 0
180 1 0 0 0 0 1 0 0 0 0
150 1 0 0 0 0 0 0 0 0 0
130 0 0 1 0 0 0 0 0 0 0
130 0 0 1 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
80 0 0 0 0 0 0 0 0 0 0
Hot Cold
del T Hot/T Hot Cas/HCC Cold/T Cold Cas Surplus H Cascade Adjusted CCC
50 0 0 600 3 150 500 -3 -150 -150 130 880
0 0 0 600 5 0 350 -5 0 -150 130 730
20 0 0 600 5 100 350 -5 -100 -250 30 730
30 4 120 600 5 150 250 -1 -30 -280 0 630
0 4 0 480 2 0 100 2 0 -280 0 480
20 4 80 480 2 40 100 2 40 -240 40 480
0 2 0 400 2 0 60 0 0 -240 40 440
30 2 60 400 2 60 60 0 0 -240 40 440
20 2 40 340 0 0 0 2 40 -200 80 380
0 6 0 300 0 0 0 6 0 -200 80 380
50 6 300 300 0 0 0 6 300 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
0 0 0 0 0 0 0 0 0 100 380 380
Utilities:
Hot: 280 units
Cold: 380 units
Number of Zones = 10
Composite Curves
For the above streams the composite curves (HCC and CCC) come out to be:
Composite Curves
350
300
250
Temperature
200
150 CCC
HCC
100
50
0
-200 0 200 400 600 800 1000
Enthalpy
APPENDIX:
Matlab Code to find Number of Zones
function [y] = zones()
num = xlsread('assignment');
a = num(:,19);
b = num(:,27);
c = [a;b];
d = sort(c)
n = size(d,1);
for i = 2:n
if (d(i) == d(i-1))
d(i) = []
n = n-1
end
end
y = size(d,1)