Last change
on this file since 26 was
26,
checked in by gerson bicca, 16 years ago
|
updated heat exchangers model and samples
|
File size:
1.2 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 | HE as CalcObject (Brief="Heat Exchangers Calculations",File="Heatex"); |
---|
10 | NComp as Integer; |
---|
11 | |
---|
12 | SET |
---|
13 | |
---|
14 | PP.LiquidModel = "PR"; |
---|
15 | PP.VapourModel = "PR"; |
---|
16 | PP.Components = ["water","n-butane", "benzene", "n-octane" ]; |
---|
17 | NComp = PP.NumberOfComponents; |
---|
18 | HE.FlowDirection = "Cocurrent"; |
---|
19 | |
---|
20 | DEVICES |
---|
21 | exchanger as HeatExchanger_LMTD; |
---|
22 | streamhot as streamTP; |
---|
23 | streamcold as streamTP; |
---|
24 | |
---|
25 | CONNECTIONS |
---|
26 | |
---|
27 | streamhot to exchanger.Inlet.Hot; |
---|
28 | streamcold to exchanger.Inlet.Cold; |
---|
29 | |
---|
30 | SPECIFY |
---|
31 | |
---|
32 | exchanger.Fc = 1; |
---|
33 | exchanger.Details.U = 210*"W/(m^2*K)"; |
---|
34 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
35 | exchanger.PressureDrop.Cold.Pdrop = 0.2*"kPa"; |
---|
36 | streamhot.F = 20 * "kmol/h"; |
---|
37 | streamhot.T = 450 * "K"; |
---|
38 | streamhot.P = 120 * "kPa"; |
---|
39 | streamhot.z = [1,0,0,0]; |
---|
40 | streamcold.F = 10 * "kmol/h"; |
---|
41 | streamcold.P = 120 * "kPa"; |
---|
42 | streamcold.T = 300 * "K"; |
---|
43 | streamcold.z = [0,0.5, 0.1, 0.4]; |
---|
44 | exchanger.Outlet.Cold.T = 350*"K"; |
---|
45 | |
---|
46 | OPTIONS |
---|
47 | mode = "steady"; |
---|
48 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.