Last change
on this file since 51 was
45,
checked in by gerson bicca, 16 years ago
|
updated heat exchanger model
|
File size:
1.1 KB
|
Rev | Line | |
---|
[26] | 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"); |
---|
[45] | 9 | NComp as Integer; |
---|
[26] | 10 | |
---|
| 11 | |
---|
| 12 | |
---|
| 13 | DEVICES |
---|
| 14 | exchanger as HeatExchanger_LMTD; |
---|
| 15 | streamhot as streamTP; |
---|
| 16 | streamcold as streamTP; |
---|
[45] | 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"; |
---|
[26] | 24 | CONNECTIONS |
---|
| 25 | |
---|
[45] | 26 | streamhot to exchanger.Inlet.Hot; |
---|
[26] | 27 | streamcold to exchanger.Inlet.Cold; |
---|
| 28 | |
---|
| 29 | SPECIFY |
---|
| 30 | |
---|
[45] | 31 | "LMTD Correction Factor" |
---|
| 32 | exchanger.Fc = 1; |
---|
| 33 | |
---|
| 34 | "Overall Heat Transfer Coefficient" |
---|
| 35 | exchanger.Details.U = 210*"W/(m^2*K)"; |
---|
| 36 | |
---|
[26] | 37 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
| 38 | exchanger.PressureDrop.Cold.Pdrop = 0.2*"kPa"; |
---|
[45] | 39 | |
---|
| 40 | streamhot.F = 20 * "kmol/h"; |
---|
| 41 | streamhot.T = 450 * "K"; |
---|
[26] | 42 | streamhot.P = 120 * "kPa"; |
---|
| 43 | streamhot.z = [1,0,0,0]; |
---|
[45] | 44 | |
---|
[26] | 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]; |
---|
[45] | 49 | |
---|
| 50 | exchanger.Outlet.Cold.T = 340*"K"; |
---|
[26] | 51 | |
---|
| 52 | OPTIONS |
---|
| 53 | mode = "steady"; |
---|
| 54 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.