Changeset 511
- Timestamp:
- May 12, 2008, 2:25:33 PM (15 years ago)
- Location:
- trunk/eml/stage_separators
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/stage_separators/column.mso
r500 r511 1270 1270 ATTRIBUTES 1271 1271 Pallete = true; 1272 Icon = "icon/ SectionColumn";1272 Icon = "icon/PackedSectionColumn"; 1273 1273 Brief = "Model of a packed column section."; 1274 1274 Info = … … 1326 1326 ATTRIBUTES 1327 1327 Pallete = true; 1328 Icon = "icon/ DistillationKettleCond";1328 Icon = "icon/PackedDistillationKettleCond"; 1329 1329 Brief = "Model of a distillation column with dynamic condenser and dynamic reboiler."; 1330 1330 Info = -
trunk/eml/stage_separators/tray.mso
r498 r511 130 130 beta as fraction (Brief="Aeration fraction"); 131 131 alfa as fraction (Brief="Dry pressure drop coefficient"); 132 w as Real (Brief="Feehery's correlation coefficient", Unit='1/m^4', Default=1); 133 Mw(NComp) as molweight (Brief = "Component Mol Weight"); 132 134 133 135 VapourFlow as Switcher(Valid = ["on", "off"], Default = "on"); 134 136 LiquidFlow as Switcher(Valid = ["on", "off"], Default = "on"); 137 VapourFlowModel as Switcher(Valid = ["Reepmeyer", "Feehery", "Roffel"], Default = "Reepmeyer"); 138 # LiquidFlow as Switcher(Valid = ["on", "off"], Default = "on"); 139 140 SET 141 Mw = PP.MolecularWeight(); 135 142 136 143 VARIABLES … … 159 166 switch VapourFlow 160 167 case "on": 161 InletV.F*vV = sqrt((InletV.P - OutletV.P)/(rhoV*alfa))*Ah; 168 switch VapourFlowModel 169 case "Reepmeyer": 170 InletV.F*vV = sqrt((InletV.P - OutletV.P)/(rhoV*alfa))*Ah; 171 172 case "Feehery": 173 InletV.F = rhoV/Ap/w/sum(Mw*OutletV.z) * sqrt(((InletV.P - OutletV.P)-(rhoV*g*ML*vL/Ap))/rhoV); 174 175 case "Roffel": 176 InletV.F^1.08 * 0.0013 * 'kg/m/mol^1.08/s^0.92' = (InletV.P - OutletV.P) - (beta*sum(M*Mw)/(Ap*1)*g) * (rhoV*Ah/sum(Mw*OutletV.z))^1.08 * 'm^1.08/mol^1.08'; 177 end 162 178 when InletV.F < 1e-6 * 'kmol/h' switchto "off"; 163 179 … … 330 346 ATTRIBUTES 331 347 Pallete = false; 332 Icon = "icon/ Tray";348 Icon = "icon/PackedStage"; 333 349 Brief = "Complete model of a packed column stage."; 334 350 Info =
Note: See TracChangeset
for help on using the changeset viewer.