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 F_Shell_LMTD |
---|
17 | *-------------------------------------------------------------------- |
---|
18 | * |
---|
19 | * This sample file needs VRTherm (www.vrtech.com.br) to run. |
---|
20 | * |
---|
21 | *---------------------------------------------------------------------- |
---|
22 | * Author: Gerson B. Bicca |
---|
23 | * $Id: sampleFshell_LMTD.mso 100 2007-01-09 14:15:56Z bicca $ |
---|
24 | *--------------------------------------------------------------------*# |
---|
25 | using "heat_exchangers/HeatExchangerSimplified"; |
---|
26 | |
---|
27 | FlowSheet LMTD_Method |
---|
28 | |
---|
29 | PARAMETERS |
---|
30 | |
---|
31 | PP as Plugin (Brief="Physical Properties",File="vrpp"); |
---|
32 | NComp as Integer; |
---|
33 | |
---|
34 | |
---|
35 | DEVICES |
---|
36 | exchanger as F_Shell_LMTD; |
---|
37 | streamhot as source; |
---|
38 | streamcold as source; |
---|
39 | OutCold as sink; |
---|
40 | OutHot as sink; |
---|
41 | |
---|
42 | SET |
---|
43 | |
---|
44 | PP.LiquidModel = "PR"; |
---|
45 | PP.VapourModel = "PR"; |
---|
46 | PP.Components = ["water","n-butane", "benzene" ]; |
---|
47 | NComp = PP.NumberOfComponents; |
---|
48 | |
---|
49 | exchanger.LMTDcorrection = "Bowmann"; |
---|
50 | |
---|
51 | |
---|
52 | CONNECTIONS |
---|
53 | |
---|
54 | streamhot.Outlet to exchanger.Inlet.Hot; |
---|
55 | streamcold.Outlet to exchanger.Inlet.Cold; |
---|
56 | |
---|
57 | exchanger.Outlet.Hot to OutHot.Inlet; |
---|
58 | exchanger.Outlet.Cold to OutCold.Inlet; |
---|
59 | |
---|
60 | SPECIFY |
---|
61 | |
---|
62 | exchanger.Details.Ud = 210*"W/(m^2*K)"; |
---|
63 | exchanger.Details.Uc = 210*"W/(m^2*K)"; |
---|
64 | exchanger.PressureDrop.Hot.Pdrop = 0.1*"kPa"; |
---|
65 | exchanger.PressureDrop.Cold.Pdrop = 0.1*"kPa"; |
---|
66 | |
---|
67 | streamhot.Fw = 360 * "kg/h"; |
---|
68 | streamhot.Outlet.T = 363.15 * "K"; |
---|
69 | streamhot.Outlet.P = 120 * "kPa"; |
---|
70 | streamhot.Outlet.z = [1,0,0]; |
---|
71 | |
---|
72 | streamcold.Outlet.F = 10 * "kmol/h"; |
---|
73 | streamcold.Outlet.P = 120 * "kPa"; |
---|
74 | streamcold.Outlet.T = 303.15 * "K"; |
---|
75 | streamcold.Outlet.z = [0.1,0.7, 0.2]; |
---|
76 | |
---|
77 | exchanger.Details.A = 15*"m^2"; |
---|
78 | |
---|
79 | OPTIONS |
---|
80 | |
---|
81 | Dynamic = false; |
---|
82 | |
---|
83 | end |
---|