Changeset 328 for trunk/sample
- Timestamp:
- Jul 30, 2007, 6:48:28 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sample/processes/Sample_Process.mso
r327 r328 49 49 DEVICES 50 50 51 Feed 51 Feed as simple_source; # A Feed Stream 52 52 Mheater as Mheatex; # A Multi-stream Heat Exchanger 53 Cooler as heater; # A Cooler53 Cooler as cooler; # A Cooler 54 54 Heater as heater; # A heater 55 Reac 55 Reac as pfr; # A PFR Reactor 56 56 Product as sink; # Product 57 57 Heat_1 as energy_source; # Heat Supplied 58 Heat_2 as energy_source; # HeatSupplied58 Cold_2 as energy_source; # Cold Supplied 59 59 SET 60 60 61 NComp 61 NComp = PP.NumberOfComponents; 62 62 Mheater.Nhot = 1; 63 63 Mheater.Ncold = 1; 64 Heater.Ninlet 65 Cooler.Ninlet 66 Heater.Kvalues 67 Cooler.Kvalues 68 Mheater.FlowDirection 64 Heater.Ninlet = 1; 65 Cooler.Ninlet = 1; 66 Heater.Kvalues = "no";# Faster convergence 67 Cooler.Kvalues = "no";# Faster convergence 68 Mheater.FlowDirection = "counter"; 69 69 70 70 Reac.NDisc = 10; 71 Reac.Across 72 Reac.L 71 Reac.Across = 0.7 * 'in^2'; 72 Reac.L = 2.28 * 'm'; 73 73 Reac.NReac = 1; 74 74 … … 98 98 Feed.Outlet.z = [1, 0, 0]; 99 99 100 Mheater.Method.Fc 101 Mheater.OutletCold(1).T 100 Mheater.Method.Fc = 1; 101 Mheater.OutletCold(1).T = 400*'K'; 102 102 103 103 Mheater.OutletHot(1).P = 1.5 * 'atm'; … … 111 111 112 112 Reac.q = 0 * 'J/s'; 113 113 114 114 CONNECTIONS 115 115 116 Feed.Outlet 116 Feed.Outlet to Mheater.InletCold(1); 117 117 Mheater.OutletCold(1) to Heater.Inlet(1); 118 Heater.Outlet 119 Reac.Outlet 118 Heater.Outlet to Reac.Inlet; 119 Reac.Outlet to Mheater.InletHot(1); 120 120 Mheater.OutletHot(1) to Cooler.Inlet(1); 121 Cooler.Outlet 121 Cooler.Outlet to Product.Inlet; 122 122 Heat_1.OutletQ to Heater.InletQ; 123 Heat_2.OutletQ to Cooler.InletQ;124 123 Cold_2.OutletQ to Cooler.InletQ; 124 125 125 INITIAL 126 126
Note: See TracChangeset
for help on using the changeset viewer.