Changeset 913 for branches/gui/sample/processes
- Timestamp:
- Feb 20, 2010, 4:16:49 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/sample/processes/Sample_Process.mso
r735 r913 41 41 PP as Plugin (Brief="Physical Properties", 42 42 Type = "PP", 43 Components = ["acetone", " acetic anhydride", "methane"],43 Components = ["acetone", "ketene", "methane"], 44 44 LiquidModel = "PR", 45 45 VapourModel = "PR" … … 56 56 Product as sink; # Product 57 57 Heat_1 as energy_source; # Heat Supplied 58 #Cold_2 as energy_source; # Cold Supplied58 Cold_2 as energy_sink; # Cold Supplied 59 59 SET 60 60 … … 68 68 69 69 Reac.NDisc = 10; 70 Reac.Across = 0. 7 * 'in^2';70 Reac.Across = 0.56 * 'm^2'; 71 71 Reac.L = 2.28 * 'm'; 72 72 Reac.NReac = 1; … … 92 92 SPECIFY 93 93 94 Feed.F = 1 * 'kmol/h';94 Feed.F = 137.9 * 'kmol/h'; 95 95 Feed.T = 350 * 'K'; 96 96 Feed.P = 1.6 * 'atm'; … … 120 120 Cooler.Outlet to Product.Inlet; 121 121 Heat_1.OutletQ to Heater.Heat; 122 #Cold_2.OutletQ to Cooler.Heat;122 Cooler.Heat to Cold_2.InletQ; 123 123 124 124 INITIAL … … 127 127 128 128 Reac.str(z).T = Reac.Inlet.T; 129 Reac.str(z).z(1:NComp -1) = Reac.Inlet.z(1:NComp-1);129 Reac.str(z).z(1:NComp) = Reac.Inlet.z(1:NComp); 130 130 131 131 end
Note: See TracChangeset
for help on using the changeset viewer.