Changeset 328 for trunk/sample


Ignore:
Timestamp:
Jul 30, 2007, 6:48:28 PM (16 years ago)
Author:
Argimiro Resende Secchi
Message:

Enhancing Sample_Process example.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sample/processes/Sample_Process.mso

    r327 r328  
    4949DEVICES
    5050
    51         Feed                            as simple_source;               # A Feed Stream
     51        Feed                    as simple_source;               # A Feed Stream
    5252        Mheater                 as Mheatex;     # A Multi-stream Heat Exchanger
    53         Cooler                  as heater;              # A Cooler
     53        Cooler                  as cooler;              # A Cooler
    5454        Heater                  as heater;              # A heater
    55         Reac                            as pfr;                         # A PFR Reactor
     55        Reac                    as pfr;                         # A PFR Reactor
    5656        Product                 as sink;                        # Product
    5757        Heat_1                  as energy_source; # Heat Supplied
    58         Heat_2                  as energy_source; # Heat Supplied
     58        Cold_2                  as energy_source; # Cold Supplied
    5959SET
    6060
    61         NComp                                           = PP.NumberOfComponents;
     61        NComp                                   = PP.NumberOfComponents;
    6262        Mheater.Nhot            = 1;
    6363    Mheater.Ncold               = 1;
    64         Heater.Ninlet                           = 1;
    65         Cooler.Ninlet                           = 1;
    66         Heater.Kvalues                          = "no";# Faster convergence
    67         Cooler.Kvalues                          = "no";# Faster convergence
    68         Mheater.FlowDirection  = "counter";
     64        Heater.Ninlet                   = 1;
     65        Cooler.Ninlet                   = 1;
     66        Heater.Kvalues                  = "no";# Faster convergence
     67        Cooler.Kvalues                  = "no";# Faster convergence
     68        Mheater.FlowDirection   = "counter";
    6969       
    7070        Reac.NDisc      = 10;
    71         Reac.Across     = 0.7 * 'in^2';
    72         Reac.L                  = 2.28 * 'm';
     71        Reac.Across = 0.7 * 'in^2';
     72        Reac.L          = 2.28 * 'm';
    7373        Reac.NReac      = 1;
    7474
     
    9898        Feed.Outlet.z = [1, 0, 0];
    9999
    100         Mheater.Method.Fc                       = 1;
    101         Mheater.OutletCold(1).T    = 400*'K';
     100        Mheater.Method.Fc               = 1;
     101        Mheater.OutletCold(1).T         = 400*'K';
    102102       
    103103        Mheater.OutletHot(1).P          = 1.5 * 'atm';
     
    111111
    112112        Reac.q                  = 0     * 'J/s';
    113        
     113
    114114CONNECTIONS
    115115
    116         Feed.Outlet                                                     to  Mheater.InletCold(1);
     116        Feed.Outlet                             to  Mheater.InletCold(1);
    117117        Mheater.OutletCold(1)           to  Heater.Inlet(1);
    118         Heater.Outlet                                           to  Reac.Inlet;
    119         Reac.Outlet                                                     to  Mheater.InletHot(1);
     118        Heater.Outlet                           to  Reac.Inlet;
     119        Reac.Outlet                             to  Mheater.InletHot(1);
    120120        Mheater.OutletHot(1)            to  Cooler.Inlet(1);
    121         Cooler.Outlet                                                   to  Product.Inlet;
     121        Cooler.Outlet                           to  Product.Inlet;
    122122        Heat_1.OutletQ                          to Heater.InletQ;
    123         Heat_2.OutletQ                          to Cooler.InletQ;
    124        
     123        Cold_2.OutletQ                          to Cooler.InletQ;
     124
    125125INITIAL
    126126
Note: See TracChangeset for help on using the changeset viewer.