Last change
on this file since 69 was
68,
checked in by gerson bicca, 16 years ago
|
added double pipe heat exchanger model and updated eml/heat_exchangers
|
File size:
1.1 KB
|
Rev | Line | |
---|
[26] | 1 | |
---|
| 2 | using "Heat_exchangers/HeatExchangerSimplified.mso"; |
---|
| 3 | |
---|
| 4 | FlowSheet LMTD_Method |
---|
| 5 | |
---|
| 6 | PARAMETERS |
---|
| 7 | |
---|
[45] | 8 | PP as CalcObject (Brief="Physical Properties",File="vrpp"); |
---|
| 9 | NComp as Integer; |
---|
[26] | 10 | |
---|
| 11 | |
---|
| 12 | DEVICES |
---|
| 13 | exchanger as E_Shell_LMTD; |
---|
| 14 | streamhot as streamTP; |
---|
| 15 | streamcold as streamTP; |
---|
[45] | 16 | |
---|
| 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 | |
---|
| 24 | exchanger.HE.LMTDcorrection = "Bowmann"; |
---|
[68] | 25 | # exchanger.HE.LMTDcorrection = "Fakeri"; |
---|
[26] | 26 | |
---|
[45] | 27 | |
---|
[26] | 28 | CONNECTIONS |
---|
| 29 | |
---|
[45] | 30 | streamhot to exchanger.Inlet.Hot; |
---|
[26] | 31 | streamcold to exchanger.Inlet.Cold; |
---|
| 32 | |
---|
| 33 | SPECIFY |
---|
| 34 | |
---|
| 35 | exchanger.Details.U = 210*"W/(m^2*K)"; |
---|
| 36 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
| 37 | exchanger.PressureDrop.Cold.Pdrop = 0.2*"kPa"; |
---|
[45] | 38 | |
---|
[26] | 39 | streamhot.F = 20 * "kmol/h"; |
---|
| 40 | streamhot.T = 450 * "K"; |
---|
| 41 | streamhot.P = 120 * "kPa"; |
---|
| 42 | streamhot.z = [1,0,0,0]; |
---|
[45] | 43 | |
---|
[26] | 44 | streamcold.F = 10 * "kmol/h"; |
---|
| 45 | streamcold.P = 120 * "kPa"; |
---|
| 46 | streamcold.T = 300 * "K"; |
---|
| 47 | streamcold.z = [0,0.5, 0.1, 0.4]; |
---|
[45] | 48 | |
---|
| 49 | exchanger.Outlet.Cold.T = 330*"K"; |
---|
[26] | 50 | |
---|
| 51 | OPTIONS |
---|
[45] | 52 | mode = "steady"; |
---|
[26] | 53 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.