Changeset 507 for branches/rate
- Timestamp:
- Apr 28, 2008, 4:17:48 PM (15 years ago)
- Location:
- branches/rate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/rate/eml/stage_separators/tray.mso
r505 r507 507 507 hL as enth_mol (Brief = "Liquid Molar Enthalpy"); 508 508 hV as enth_mol (Brief = "Vapour Molar Enthalpy"); 509 ConcL as conc_mol (Brief = "Liquid Molar Concentration");510 ConcV as conc_mol (Brief = "Vapour Molar Concentration");511 509 kL(NC1,NC1) as velocity (Brief = "Mass Transfer Coefficients"); 512 510 kV(NC1,NC1) as velocity (Brief = "Mass Transfer Coefficients"); … … 600 598 interf.E_liq = interf.E_vap; 601 599 602 603 600 "Mol fraction normalisation" 604 601 sum(OutletL.z)= 1.0; … … 621 618 "Level of clear liquid over the weir" 622 619 Level = ML*vL/Ap; 623 620 624 621 "Total Mass Transfer Fluxes" 625 interf.NL(1:NC1)= interf.ConcL*sumt(interf.kL*(interf.x(1:NC1)-OutletL.z(1:NC1)))+622 interf.NL(1:NC1)=sumt(interf.kL*(interf.x(1:NC1)-OutletL.z(1:NC1)))/vL+ 626 623 OutletL.z(1:NC1)*sum(interf.NL); 627 624 628 interf.NV(1:NC1)= interf.ConcV*sumt(interf.kV*(OutletV.z(1:NC1)-interf.y(1:NC1)))+625 interf.NV(1:NC1)=sumt(interf.kV*(OutletV.z(1:NC1)-interf.y(1:NC1)))/vV+ 629 626 OutletV.z(1:NC1)*sum(interf.NV); 630 627 -
branches/rate/sample/stage_separators/sample_tray.mso
r506 r507 271 271 t1.interf.kL=0.001*'m/s'; 272 272 t1.interf.kV=0.001*'m/s'; 273 t1.ML=3*'mol';274 t1.MV=3*'mol';275 273 276 274 SET … … 285 283 t1.Q = 0 * 'kW'; 286 284 287 288 285 INITIAL 289 286 t1.OutletL.T = 290 *'K'; 290 287 t1.OutletV.T = 290 *'K'; 291 #t1.Level = 0.9*'m' ;288 t1.Level = 0.9*'m' ; 292 289 t1.OutletL.z(1) = 0.5; 293 290 t1.OutletV.z(1) = 0.5; 294 #t1.MV = 0.01*'mol' ; 295 296 OPTIONS 291 t1.MV = 0.01*'mol' ; 292 293 OPTIONS 294 TimeStep = 0.1; 297 295 TimeEnd = 100; 298 end 296 TimeUnit = 's'; 297 # GuessFile = "tray_Test.rlt"; 298 end
Note: See TracChangeset
for help on using the changeset viewer.