Changeset 236 for trunk/sample/heat_exchangers/Sample_Mheatex.mso
- Timestamp:
- Apr 12, 2007, 5:47:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sample/heat_exchangers/Sample_Mheatex.mso
r214 r236 31 31 Mheater as Mheatex; 32 32 33 streamhot1 as liquid_stream;34 streamcold1 as liquid_stream;35 streamcold2 as liquid_stream;33 streamhot1 as source; 34 streamcold1 as source; 35 streamcold2 as source; 36 36 37 37 PARAMETERS … … 52 52 CONNECTIONS 53 53 54 streamcold1 to Mheater.InletCold(1);55 streamhot1 56 streamcold2 to Mheater.InletCold(2);54 streamcold1.Outlet to Mheater.InletCold(1); 55 streamhot1.Outlet to Mheater.InletHot(1); 56 streamcold2.Outlet to Mheater.InletCold(2); 57 57 58 58 SPECIFY … … 65 65 # Cold Streams 66 66 #===================================================================== 67 streamcold1. F = 500 * 'kmol/h';68 streamcold1. P = 1 * 'atm';69 streamcold1. T = 293 * 'K';70 streamcold1. z = [1,0,0,0];67 streamcold1.Outlet.F = 500 * 'kmol/h'; 68 streamcold1.Outlet.P = 1 * 'atm'; 69 streamcold1.Outlet.T = 293 * 'K'; 70 streamcold1.Outlet.z = [1,0,0,0]; 71 71 72 streamcold2. F = 50 * 'kmol/h';73 streamcold2. P = 1 * 'atm';74 streamcold2. T = 315 * 'K';75 streamcold2. z = [0,0.1,0.65,0.25];72 streamcold2.Outlet.F = 50 * 'kmol/h'; 73 streamcold2.Outlet.P = 1 * 'atm'; 74 streamcold2.Outlet.T = 315 * 'K'; 75 streamcold2.Outlet.z = [0,0.1,0.65,0.25]; 76 76 77 77 #===================================================================== 78 78 # Hot Streams 79 79 #===================================================================== 80 streamhot1. F = 100* 'kmol/h';81 streamhot1. P = 1 * 'atm';82 streamhot1. T = 400* 'K';83 streamhot1. z = [1,0,0,0];80 streamhot1.Outlet.F = 100* 'kmol/h'; 81 streamhot1.Outlet.P = 1 * 'atm'; 82 streamhot1.Outlet.T = 353 * 'K'; 83 streamhot1.Outlet.z = [1,0,0,0]; 84 84 85 85 #===================================================================== 86 86 # Temperature Outlet 87 87 #===================================================================== 88 Mheater.OutletHot(1).T = 370*'K';88 Mheater.OutletHot(1).T = 340*'K'; 89 89 Mheater.OutletCold(2).T = 330*'K'; 90 90 … … 108 108 Mheater as Mheatex; 109 109 110 streamhot1 as liquid_stream;111 streamcold1 as liquid_stream;112 streamcold2 as liquid_stream;110 streamhot1 as source; 111 streamcold1 as source; 112 streamcold2 as source; 113 113 114 114 PARAMETERS … … 129 129 CONNECTIONS 130 130 131 streamcold1 to Mheater.InletCold(1);132 streamhot1 to Mheater.InletHot(1);133 streamcold2 to Mheater.InletCold(2);131 streamcold1.Outlet to Mheater.InletCold(1); 132 streamhot1.Outlet to Mheater.InletHot(1); 133 streamcold2.Outlet to Mheater.InletCold(2); 134 134 135 135 SPECIFY … … 143 143 # Cold Streams 144 144 #===================================================================== 145 streamcold1. F = 500 * 'kmol/h';146 streamcold1. P = 1 * 'atm';147 streamcold1. T = 293 * 'K';148 streamcold1. z = [1,0,0,0];145 streamcold1.Outlet.F = 500 * 'kmol/h'; 146 streamcold1.Outlet.P = 1 * 'atm'; 147 streamcold1.Outlet.T = 293 * 'K'; 148 streamcold1.Outlet.z = [1,0,0,0]; 149 149 150 streamcold2. F = 50 * 'kmol/h';151 streamcold2. P = 1 * 'atm';152 streamcold2. T = 315 * 'K';153 streamcold2. z = [0,0.1,0.65,0.25];150 streamcold2.Outlet.F = 50 * 'kmol/h'; 151 streamcold2.Outlet.P = 1 * 'atm'; 152 streamcold2.Outlet.T = 315 * 'K'; 153 streamcold2.Outlet.z = [0,0.1,0.65,0.25]; 154 154 155 155 #===================================================================== 156 156 # Hot Streams 157 157 #===================================================================== 158 streamhot1. F = 100* 'kmol/h';159 streamhot1. P = 1 * 'atm';160 streamhot1. T = 400* 'K';161 streamhot1. z = [1,0,0,0];158 streamhot1.Outlet.F = 100* 'kmol/h'; 159 streamhot1.Outlet.P = 1 * 'atm'; 160 streamhot1.Outlet.T = 353 * 'K'; 161 streamhot1.Outlet.z = [1,0,0,0]; 162 162 163 163 #===================================================================== 164 164 # Temperature Outlet 165 165 #===================================================================== 166 Mheater.OutletHot(1).T = 3 70*'K';166 Mheater.OutletHot(1).T = 340*'K'; 167 167 Mheater.OutletCold(2).T = 330*'K'; 168 168
Note: See TracChangeset
for help on using the changeset viewer.