source: trunk/sample/heat_exchangers/Sample_HairpinInc.mso @ 1009

Last change on this file since 1009 was 985, checked in by Argimiro Resende Secchi, 7 years ago
File size: 3.5 KB
RevLine 
[985]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 Hairpin Heat Exchanger - Incremental approach
17*--------------------------------------------------------------------
18*
19* This sample file needs VRTherm (www.vrtech.com.br) to run.
20*
21*----------------------------------------------------------------------
22* Author: Gerson B. Bicca
23* $Id: Sample_HairpinIncr.mso                   $
24*--------------------------------------------------------------------*#
25
26using "heat_exchangers/HairpinIncr";
27
28FlowSheet Hairpin_Incremental
29
30PARAMETERS
31        PP                      as Plugin (Type ="PP", LiquidModel = "PR", VapourModel = "PR",Components = ["aniline","benzene"]);
32        NComp   as Integer;
33       
34DEVICES
35
36        Pipe    as HairpinIncr;
37        InletHot        as simple_source;
38        InletCold       as simple_source;
39        OutletHot       as simple_sink;
40        OutletCold      as simple_sink;
41       
42       
43CONNECTIONS
44
45        InletCold.Outlet                                        to Pipe.LowerPipe.InletInner;
46        InletHot.Outlet                                 to Pipe.UpperPipe.InletOuter;
47       
48        Pipe.LowerPipe.OutletOuter      to OutletHot.Inlet;
49        Pipe.UpperPipe.OutletInner              to OutletCold.Inlet;
50       
51SET
52
53NComp                   = PP.NumberOfComponents;
54
55# Number of incremental points
56        Pipe.N  =       8;
57
58#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
59#   Options
60#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
61
62Pipe.UpperPipe.InnerTurbulentCorrelation        = "SiederTate";
63Pipe.UpperPipe.InnerLaminarCorrelation     = "Schlunder";
64Pipe.UpperPipe.OuterTurbulentCorrelation        = "SiederTate";
65Pipe.UpperPipe.OuterLaminarCorrelation     = "Schlunder";
66
67Pipe.LowerPipe.InnerTurbulentCorrelation        = "SiederTate";
68Pipe.LowerPipe.InnerLaminarCorrelation     = "Schlunder";
69Pipe.LowerPipe.OuterTurbulentCorrelation  = "SiederTate";
70Pipe.LowerPipe.OuterLaminarCorrelation    = "Schlunder";
71#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
72# Double Pipe Geometrical Parameters and Alocation
73#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
74
75Pipe.DoInner                    =       42.16*'mm';
76Pipe.DiInner                            =       35.05*'mm';
77Pipe.DiOuter                            =       52.50*'mm';
78Pipe.Kwall                              = 0.057 *'kW/m/K';
79Pipe.Lpipe                                      =       9*'m';
80Pipe.Donozzle_Inner  =  36.63*'mm';
81Pipe.Dinozzle_Inner     =       36.63*'mm';
82Pipe.Donozzle_Outer  =  42.72*'mm';
83Pipe.Dinozzle_Outer     =       42.72*'mm';
84Pipe.Rfi                                        = 0.00022*'m^2*K/W';
85Pipe.Rfo                                        = 0.00018*'m^2*K/W';
86
87SPECIFY
88#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
89#               Hot Stream
90#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
91        InletHot.F      = 47.2038        * 'kmol/h';
92        InletHot.T      = 338.71   * 'K';
93        InletHot.P      = 413.685 * 'kPa';
94        InletHot.MolarComposition       = [1,0];
95       
96#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
97#       Cold Stream
98#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99        InletCold.F     = 58.0694       * 'kmol/h';
100        InletCold.T     = 288.71        * 'K';
101        InletCold.P     = 413.685 * 'kPa';
102        InletCold.MolarComposition      = [0,1];
103       
104OPTIONS
105
106Dynamic  = false;
107GuessFile = "GuessHairpin_Incremental";
108
109end
110
111
112
Note: See TracBrowser for help on using the repository browser.