Last change
on this file since 69 was
45,
checked in by gerson bicca, 16 years ago
|
updated heat exchanger model
|
File size:
1.1 KB
|
Line | |
---|
1 | |
---|
2 | using "Heat_exchangers/HeatExchangerSimplified.mso"; |
---|
3 | |
---|
4 | FlowSheet LMTD_Method |
---|
5 | |
---|
6 | PARAMETERS |
---|
7 | |
---|
8 | PP as CalcObject (Brief="Physical Properties",File="vrpp"); |
---|
9 | NComp as Integer; |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | DEVICES |
---|
14 | exchanger as HeatExchanger_LMTD; |
---|
15 | streamhot as streamTP; |
---|
16 | streamcold as streamTP; |
---|
17 | SET |
---|
18 | |
---|
19 | PP.LiquidModel = "PR"; |
---|
20 | PP.VapourModel = "PR"; |
---|
21 | PP.Components = ["water","n-butane", "benzene", "n-octane" ]; |
---|
22 | NComp = PP.NumberOfComponents; |
---|
23 | exchanger.HE.FlowDirection = "Cocurrent"; |
---|
24 | CONNECTIONS |
---|
25 | |
---|
26 | streamhot to exchanger.Inlet.Hot; |
---|
27 | streamcold to exchanger.Inlet.Cold; |
---|
28 | |
---|
29 | SPECIFY |
---|
30 | |
---|
31 | "LMTD Correction Factor" |
---|
32 | exchanger.Fc = 1; |
---|
33 | |
---|
34 | "Overall Heat Transfer Coefficient" |
---|
35 | exchanger.Details.U = 210*"W/(m^2*K)"; |
---|
36 | |
---|
37 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
38 | exchanger.PressureDrop.Cold.Pdrop = 0.2*"kPa"; |
---|
39 | |
---|
40 | streamhot.F = 20 * "kmol/h"; |
---|
41 | streamhot.T = 450 * "K"; |
---|
42 | streamhot.P = 120 * "kPa"; |
---|
43 | streamhot.z = [1,0,0,0]; |
---|
44 | |
---|
45 | streamcold.F = 10 * "kmol/h"; |
---|
46 | streamcold.P = 120 * "kPa"; |
---|
47 | streamcold.T = 300 * "K"; |
---|
48 | streamcold.z = [0,0.5, 0.1, 0.4]; |
---|
49 | |
---|
50 | exchanger.Outlet.Cold.T = 340*"K"; |
---|
51 | |
---|
52 | OPTIONS |
---|
53 | mode = "steady"; |
---|
54 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.