source: mso/sample/heat_exchangers/Sample_Multitubular.mso @ 107

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

updated

File size: 2.1 KB
Line 
1#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2# Series of Double Pipe Heat Exchanger
3#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4using "heat_exchangers/DoublePipe.mso";
5
6FlowSheet Double_Pipe_Multitubular
7       
8DEVICES
9        Pipe            as Multitubular_Cocurrent_LMTD;
10        streamhot       as streamTP;
11        streamcold      as streamTP;
12
13PARAMETERS
14
15        PP                      as CalcObject (File="vrpp");
16        NComp           as Integer;
17       
18CONNECTIONS
19
20        streamhot                       to Pipe.Unity(1).Inlet.Hot;
21        streamcold                      to Pipe.Unity(1).Inlet.Cold;
22SET
23
24PP.LiquidModel          = "PR";
25PP.VapourModel          = "PR";
26PP.Components           = ["methanol","water"];
27NComp                           = PP.NumberOfComponents;
28Pipe.Npipe = 2;
29
30#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31#   Options
32#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
34Pipe.HE.TurbulentFlow  = "SiederTate";
35       
36#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37# Double Pipe Geometrical Parameters and Alocation
38#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
39Pipe.HE.HotSide         =       "Inner";
40Pipe.DoInner            =       0.04826*"m";
41Pipe.DiInner            =       0.04089*"m";
42Pipe.DiOuter            =       0.07793*"m";
43Pipe.Kwall              =       0.057 *"kW/m/K";
44Pipe.Lpipe                      =       3*"m";
45
46SPECIFY
47#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
48#               Hot Stream
49#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
50
51        streamhot.F = 100               * "kmol/h";
52        streamhot.T = (70+273.15)   * "K";
53        streamhot.P = 5                         * "bar";
54        streamhot.z = [1,0];
55       
56#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57#    Cold Stream
58#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
59
60        streamcold.F = 5                        * "kmol/h";
61        streamcold.P = 5                * "bar";
62        streamcold.T = (25+273.15)      * "K";
63    streamcold.z = [0,1];
64#=====================================================================
65#       Fouling
66#=====================================================================
67Pipe.Unity.Resistances.Rfi = 0*"m^2*K/kW";
68Pipe.Unity.Resistances.Rfo = 0*"m^2*K/kW";
69
70OPTIONS
71mode            = "steady";
72end
73
Note: See TracBrowser for help on using the repository browser.