Changeset 468 for branches/packed
- Timestamp:
- Mar 3, 2008, 3:49:53 PM (16 years ago)
- Location:
- branches/packed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/packed/eml/stage_separators/tray.mso
r467 r468 369 369 dp as length (Brief="Particle diameter", Default=1e-3); 370 370 invK as Real (Brief="Wall factor"); 371 Rev as Real (Brief="Reynolds number of the vapor stream", Lower = 0, Default=100);371 #Rev as Real (Brief="Reynolds number of the vapor stream", Lower = 0, Default=100); 372 372 #Qsio as Real (Brief="Resistance coefficient", Lower = 0); 373 373 … … 399 399 invK = (1 + (2*dp/(3*ds*(1-e)))); 400 400 401 "Reynolds number of the vapor stream"402 Rev*invK = dp*uV*rhoV / (miV*(1-e));401 #"Reynolds number of the vapor stream" 402 #Rev*invK = dp*uV*rhoV / (miV*(1-e)); 403 403 404 404 #* if Rev > 1e-4 then -
branches/packed/sample/stage_separators/sample_column.mso
r467 r468 503 503 end 504 504 505 505 # section based on the Distillation_kettle_cond_Test 506 506 FlowSheet SectionColumnPacked 507 507 PARAMETERS … … 551 551 552 552 reb.F = 137.57 * 'kmol/h'; 553 reb.P = 7.46 * 'atm';553 reb.P = 2.46 * 'atm'; 554 554 reb.T = 325 * 'K'; 555 555 reb.z = [0.16, 0.542, 0.013, 0.008, 0.277]; … … 563 563 sec.stage.Cpo = 0.763; 564 564 sec.stage.e = 0.951; 565 sec.stage.a = 1 00*112.6 * 'm^2/m^3';565 sec.stage.a = 112.6 * 'm^2/m^3'; 566 566 sec.stage.Qsio = 1; 567 567 … … 574 574 #InitialFile = "/home/paula/SectionColumn_Test_with8tray.rlt"; 575 575 DAESolver(File="dassl"); 576 TimeStep = 0.01;577 TimeEnd = 1 ;576 TimeStep = 1; 577 TimeEnd = 10; 578 578 end 579 579 … … 635 635 636 636 SET 637 col.H = 2* 'm';637 col.H = 1 * 'm'; 638 638 col.NStages = 2; 639 639 -
branches/packed/sample/stage_separators/sample_tray.mso
r467 r468 25 25 using "stage_separators/tray"; 26 26 27 FlowSheet tray_Test 27 FlowSheet tray_Test_1 28 28 PARAMETERS 29 29 PP as Plugin(Brief="Physical Properties", … … 96 96 end 97 97 98 FlowSheet tray_Test_2 99 PARAMETERS 100 PP as Plugin(Brief="Physical Properties", 101 Type="PP", 102 Components = [ "isobutane", "n-pentane", "propylene", 103 "benzene", "isobutene" ], 104 LiquidModel = "PR", 105 VapourModel = "PR" 106 ); 107 NComp as Integer; 108 109 SET 110 NComp = PP.NumberOfComponents; 111 112 VARIABLES 113 deltaP as pressure; 114 phiL as Real; 115 116 DEVICES 117 t1 as tray; 118 feed as source; 119 inL as liquid_stream; 120 inV as vapour_stream; 121 122 CONNECTIONS 123 feed.Outlet to t1.Inlet; 124 inL to t1.InletL; 125 inV to t1.InletV; 126 127 EQUATIONS 128 deltaP = t1.InletV.P - t1.OutletV.P; 129 phiL = t1.ML*t1.vL / t1.V; 130 131 SPECIFY 132 feed.Outlet.F = 0 * 'kmol/h'; 133 feed.Outlet.T = 300 * 'K'; 134 feed.Outlet.P = 1.66 * 'atm'; 135 feed.Outlet.z = [0.5, 0.5]; 136 137 inL.P = 2.22 * 'atm'; 138 inL.T = 297.6 * 'K'; 139 inL.F = 71.21 * 'kmol/h'; 140 inL.z = [0.226, 0.425, 0.035, 0.025, 0.289]; 141 142 inV.F = 175.3 * 'kmol/h'; 143 inV.P = 2.3062 * 'atm'; 144 inV.T = 308.3 * 'K'; 145 inV.z = [0.265, 0.233, 0.150, 0.014, 0.338]; 146 147 t1.Emv = 1; 148 149 SET 150 t1.V = 4 * 'ft^3'; 151 t1.Ah = 0.394 * 'ft^2'; 152 t1.lw = 20.94 * 'in'; 153 t1.hw = 0.125 * 'ft'; 154 t1.Q = 0 * 'kW'; 155 t1.beta = 0.6; 156 t1.alfa = 4; 157 t1.Ap = 3.94 * 'ft^2'; 158 159 INITIAL 160 t1.OutletL.T = 304 *'K'; 161 t1.Level = 1.2 * t1.hw; 162 t1.OutletL.z([1:4]) = [0.2, 0.2, 0.2, 0.2]; 163 164 OPTIONS 165 #InitialFile = "/home/paula/tray_Test.rlt"; 166 TimeStep = 10; 167 TimeEnd = 100; 168 end 169 170 #to compare with tray_Test_1 98 171 FlowSheet packedStage_BilletSchultes_Test_1 99 172 PARAMETERS … … 146 219 t1.Q = 0 * 'kW'; 147 220 t1.Ap = 0.8 * 'm^2'; 148 t1.V = 0.8 * 'm^2' * 1* 'm';221 t1.V = 0.8 * 'm^2' * 0.4 * 'm'; 149 222 t1.ds = 1.009 * 'm'; 150 223 t1.Cpo = 0.763; 151 224 t1.e = 0.951; 152 225 t1.a = 112.6 * 'm^2/m^3'; 153 t1.hs = 1* 'm';226 t1.hs = 0.4 * 'm'; 154 227 t1.Qsio = 1; 155 228 … … 166 239 end 167 240 241 #the 3rd stage of the Distillation_kettle_cond_Test 168 242 FlowSheet packedStage_BilletSchultes_Test_2 169 243 PARAMETERS
Note: See TracChangeset
for help on using the changeset viewer.