Changeset 448 for branches/packed/sample/stage_separators/sample_tray.mso
- Timestamp:
- Jan 22, 2008, 3:14:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/packed/sample/stage_separators/sample_tray.mso
r436 r448 110 110 111 111 VARIABLES 112 deltaP as pressure;112 deltaP as Real (Unit='Pa/m'); 113 113 114 114 DEVICES 115 t1 as packedStage 2;115 t1 as packedStage; 116 116 feed as source; 117 117 inL as liquid_stream; … … 124 124 125 125 EQUATIONS 126 deltaP = t1.InletV.P - t1.OutletV.P;126 deltaP = (t1.InletV.P - t1.OutletV.P)/ (t1.V/t1.Across); 127 127 128 128 SPECIFY … … 137 137 inL.z = [0.1641, 0.8359]; 138 138 139 inV.F = 201.25 * 'kmol/h';140 #inV.F = 240 * 'kmol/h';139 #inV.F = 201.25 * 'kmol/h'; 140 inV.F = 240 * 'kmol/h'; 141 141 inV.P = 1.48 * 'atm'; 142 142 inV.T = 321 * 'K'; … … 146 146 147 147 SET 148 t1.PressureDropModel = "Leva";149 t1.PackingType = "random";150 t1.V = 4 .1* 'ft^3';148 # t1.PressureDropModel = "Leva"; 149 # t1.PackingType = "random"; 150 t1.V = 4 * 'ft^3'; 151 151 t1.Q = 0 * 'kW'; 152 t1.Across = 3.94 * 'ft^2';#3.94 * 'ft^2'; 153 t1.Ap = 3.94 * 'ft^2'; 152 t1.Across = 3.94 * 'ft^2'; 154 153 155 154 INITIAL … … 160 159 OPTIONS 161 160 InitialFile = "/home/paula/tray_Test.rlt"; 162 TimeStep = 0. 5;161 TimeStep = 0.1; 163 162 TimeEnd = 10; 164 163 end
Note: See TracChangeset
for help on using the changeset viewer.