source: trunk/sample/heat_exchangers/Eshell_Detailed_LMTD.mso @ 114

Last change on this file since 114 was 110, checked in by gerson bicca, 16 years ago

modified some equations

  • Property svn:keywords set to Id
File size: 4.3 KB
Line 
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 a Heat Exchanger TEMA E Shell - LMTD Method
17*--------------------------------------------------------------------
18*
19* This sample file needs VRTherm DEMO (www.vrtech.com.br) to run.
20*
21*----------------------------------------------------------------------
22* Author: Gerson B. Bicca
23* $Id: Eshell_Detailed_LMTD.mso 110 2007-01-12 18:44:02Z bicca $
24*--------------------------------------------------------------------*#
25
26using "heat_exchangers/HeatExchangerDetailed.mso";
27
28FlowSheet Exchanger_E_shell_Detailed_LMTD
29       
30DEVICES
31
32        exchanger               as E_Shell_LMTD_Det;
33        streamhot_in    as streamTP;
34        streamcold_in   as streamTP;
35       
36CONNECTIONS
37
38        streamhot_in    to exchanger.Inlet.Hot;
39        streamcold_in   to exchanger.Inlet.Cold;
40       
41PARAMETERS
42
43        PP                      as CalcObject   (File="vrpp");
44        NComp           as Integer;
45
46SET
47#===============================================================
48#   Heat Exchanger Options
49#===============================================================       
50        PP.Components           = ["water"];
51        PP.LiquidModel          = "RK";
52        PP.VapourModel          = "RK";
53        NComp                           = PP.NumberOfComponents;
54       
55        exchanger.HE.HotSide  = "Shell";
56
57#   LMTD Correction Factor
58        exchanger.HE.LMTDcorrection     = "Fakeri";
59#       exchanger.HE.LMTDcorrection     = "Bowmann";
60
61#   Heat Transfer Correlation
62#       exchanger.HE.LaminarFlow                = "Schlunder";
63#       exchanger.HE.TurbulentFlow              = "SiederTate";
64#       exchanger.HE.TransitionFlow     = "GnielinskiII";
65
66#=====================================================================
67#       Shell Geometrical Parameters
68#=====================================================================       
69exchanger.Tpass                         = 4;
70exchanger.Dishell               = 0.75  *"m";
71exchanger.Lcf                   = 0.043  *"m";
72exchanger.Nss                   = 1;
73exchanger.Donozzle_Shell    = 0.1937    *"m";
74exchanger.Dinozzle_Shell    = 0.1937    *"m";
75exchanger.Honozzle_Shell    = 0.0225    *"m";
76exchanger.Hinozzle_Shell    = 0.02155   *"m";
77
78#=====================================================================
79#       Tubes Geometrical Parameters
80#=====================================================================
81exchanger.Ntt                   = 500;
82exchanger.Pattern               = 30;
83exchanger.pitch                 = 0.0254        *"m";
84exchanger.Ltube                 = 5.5           *"m";
85exchanger.Ditube                = 0.013395  *"m";
86exchanger.Dotube                = 0.015875  *"m";
87exchanger.Kwall                         = 0.057         *"kW/m/K";
88exchanger.Donozzle_Tube     = 0.203     *"m";
89exchanger.Dinozzle_Tube         = 0.203         *"m";
90#=====================================================================
91#       Baffles Geometrical Parameters
92#=====================================================================
93exchanger.Lcd           = 0.0047        *"m";
94exchanger.Bc            = 25;
95exchanger.Ltd           = 0.00039  *"m";
96exchanger.Nb                    = 6;
97
98SPECIFY
99#============================================
100#   Hot Stream
101#============================================
102        streamhot_in.F  = 40    * "mol/s";
103        streamhot_in.T  = 400* "K";
104        streamhot_in.z  = [1]     ;
105        streamhot_in.P  = 740     * "kPa";
106#============================================
107#   Cold Stream
108#============================================   
109        streamcold_in.F  = 75   * "mol/s";
110        streamcold_in.T  = 333  * "K";
111        streamcold_in.z  = [1];
112        streamcold_in.P  = 2210*"kPa";
113#=====================================================================
114#       Baffle Spacing
115#=====================================================================
116        exchanger.Baffles.Ls    = 0.622  *"m";
117        exchanger.Baffles.Lsi   = 0.807  *"m";
118#=====================================================================
119#       Fouling
120#=====================================================================
121exchanger.Resistances.Rfi = 0*"m^2*K/kW";
122exchanger.Resistances.Rfo = 0*"m^2*K/kW";
123
124OPTIONS
125
126 mode = "steady";
127
128end
Note: See TracBrowser for help on using the repository browser.