- Timestamp:
- Apr 14, 2008, 3:57:48 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/stage_separators/column.mso
r498 r500 1280 1280 * the InletL stream of the top tray; 1281 1281 * the InletV stream of the bottom tray; 1282 * the pressure drop (deltaP) of each tray.1282 * the total pressure drop (dP) of the section. 1283 1283 1284 1284 == Initial Conditions == … … 1299 1299 VARIABLES 1300 1300 stage(NStages) as packedStage; 1301 dP as pressure; 1301 1302 1302 1303 SET … … 1305 1306 stage.hs = H/NStages; 1306 1307 stage.V = stage.hs * stage.d^2*3.14159/4; 1308 1309 EQUATIONS 1310 stage.deltaP = dP/NStages; 1307 1311 1308 1312 CONNECTIONS … … 1320 1324 *---------------------------------------------------------------------*# 1321 1325 Model PackedDistillation_kettle_cond as Packed_Section_Column 1326 ATTRIBUTES 1327 Pallete = true; 1328 Icon = "icon/DistillationKettleCond"; 1329 Brief = "Model of a distillation column with dynamic condenser and dynamic reboiler."; 1330 Info = 1331 "== Specify == 1332 * the feed stream of each tray (Inlet); 1333 * the pump pressure difference; 1334 * the total pressure drop (dP) of the packing; 1335 * the heat supllied in reboiler and condenser; 1336 * the condenser vapor outlet flow (OutletV.F); 1337 * the reboiler liquid outlet flow (OutletL.F); 1338 * both splitter outlet flows OR one of the splitter outlet flows and the splitter frac. 1339 1340 == Initial Conditions == 1341 * the stages temperature (OutletL.T); 1342 * the stages initial molar holdup; 1343 * (NoComps - 1) OutletL (OR OutletV) compositions for each stage; 1344 1345 * the condenser temperature (OutletL.T); 1346 * the condenser liquid level (Level); 1347 * (NoComps - 1) OutletL (OR OutletV) compositions; 1348 1349 * the reboiler temperature (OutletL.T); 1350 * the reboiler liquid level (Level); 1351 * (NoComps - 1) OutletL (OR OutletV) compositions. 1352 "; 1353 1322 1354 PARAMETERS 1323 1355 VapourFlow as Switcher(Valid = ["on", "off"], Default = "on"); -
trunk/sample/stage_separators/sample_column.mso
r499 r500 555 555 reb.z = [0.16, 0.542, 0.013, 0.008, 0.277]; 556 556 557 sec. stage.deltaP = 0.001* 'atm';557 sec.dP = 0.008 * 'atm'; 558 558 559 559 SET … … 631 631 col.pump1.dP = 16 * 'kPa'; 632 632 633 col. stage.deltaP = 0.003* 'atm';633 col.dP = 0.024 * 'atm'; 634 634 635 635 SET … … 823 823 col.pump1.dP = 16 * 'kPa'; 824 824 825 col. stage.deltaP = 0.003* 'atm';825 col.dP = 0.024 * 'atm'; 826 826 827 827 SET
Note: See TracChangeset
for help on using the changeset viewer.