1 | #*------------------------------------------------------------------- |
---|
2 | * EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC. |
---|
3 | * |
---|
4 | * This LIBRARY is free software; you can distribute it and/or modify |
---|
5 | * it under the therms of the ALSOC FREE LICENSE as available at |
---|
6 | * http://www.enq.ufrgs.br/alsoc. |
---|
7 | * |
---|
8 | * EMSO Copyright (C) 2004 - 2007 ALSOC, original code |
---|
9 | * from http://www.rps.eng.br Copyright (C) 2002-2004. |
---|
10 | * All rights reserved. |
---|
11 | * |
---|
12 | * EMSO is distributed under the therms of the ALSOC LICENSE as |
---|
13 | * available at http://www.enq.ufrgs.br/alsoc. |
---|
14 | * |
---|
15 | *-------------------------------------------------------------------- |
---|
16 | * Sample file for model HeatExchanger_LMTD |
---|
17 | *-------------------------------------------------------------------- |
---|
18 | * |
---|
19 | * This sample file needs VRTherm (www.vrtech.com.br) to run. |
---|
20 | * |
---|
21 | *---------------------------------------------------------------------- |
---|
22 | * Author: Gerson B. Bicca |
---|
23 | * $Id: sampleLMTD.mso 100 2007-01-09 14:15:56Z bicca $ |
---|
24 | *--------------------------------------------------------------------*# |
---|
25 | using "heat_exchangers/HeatExchangerSimplified.mso"; |
---|
26 | |
---|
27 | FlowSheet LMTD_Method |
---|
28 | |
---|
29 | PARAMETERS |
---|
30 | |
---|
31 | PP as CalcObject (Brief="Physical Properties",File="vrpp"); |
---|
32 | NComp as Integer; |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | DEVICES |
---|
37 | exchanger as HeatExchanger_LMTD; |
---|
38 | streamhot as streamTP; |
---|
39 | streamcold as streamTP; |
---|
40 | SET |
---|
41 | |
---|
42 | PP.LiquidModel = "PR"; |
---|
43 | PP.VapourModel = "PR"; |
---|
44 | PP.Components = ["water","n-butane", "benzene", "n-octane" ]; |
---|
45 | NComp = PP.NumberOfComponents; |
---|
46 | exchanger.HE.FlowDirection = "Cocurrent"; |
---|
47 | CONNECTIONS |
---|
48 | |
---|
49 | streamhot to exchanger.Inlet.Hot; |
---|
50 | streamcold to exchanger.Inlet.Cold; |
---|
51 | |
---|
52 | SPECIFY |
---|
53 | |
---|
54 | "LMTD Correction Factor" |
---|
55 | exchanger.Fc = 1; |
---|
56 | |
---|
57 | "Overall Heat Transfer Coefficient" |
---|
58 | exchanger.Details.Ud = 210*"W/(m^2*K)"; |
---|
59 | exchanger.Details.Uc = 210*"W/(m^2*K)"; |
---|
60 | |
---|
61 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
62 | exchanger.PressureDrop.Cold.Pdrop = 0.2*"kPa"; |
---|
63 | |
---|
64 | streamhot.F = 20 * "kmol/h"; |
---|
65 | streamhot.T = 450 * "K"; |
---|
66 | streamhot.P = 120 * "kPa"; |
---|
67 | streamhot.z = [1,0,0,0]; |
---|
68 | |
---|
69 | streamcold.F = 10 * "kmol/h"; |
---|
70 | streamcold.P = 120 * "kPa"; |
---|
71 | streamcold.T = 300 * "K"; |
---|
72 | streamcold.z = [0,0.5, 0.1, 0.4]; |
---|
73 | |
---|
74 | exchanger.Outlet.Cold.T = 340*"K"; |
---|
75 | |
---|
76 | OPTIONS |
---|
77 | mode = "steady"; |
---|
78 | end |
---|