Ignore:
Timestamp:
Jan 22, 2008, 3:14:11 PM (15 years ago)
Author:
Paula Bettio Staudt
Message:

Temporary tray files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/packed/sample/stage_separators/sample_column.mso

    r398 r448  
    183183       
    184184        OPTIONS
    185         TimeStep = 1;
     185        TimeStep = 10;
    186186        TimeEnd = 100;
    187187        #GuessFile="SectionColumn_Test_with8tray.rlt";
     
    504504
    505505
     506FlowSheet SectionColumnPacked
     507        PARAMETERS
     508        PP      as Plugin(Brief="Physical Properties",
     509                Type="PP",
     510                Components = [ "isobutane", "benzene"],
     511                LiquidModel = "PR",
     512                VapourModel = "PR"
     513        );
     514        NComp   as Integer;
     515
     516        SET
     517        NComp = PP.NumberOfComponents;
     518       
     519        DEVICES
     520        sec as Section_Column_Packed;
     521        feed as source;
     522        reb as vapour_stream;
     523        cond as liquid_stream;
     524        zero as stream;
     525       
     526        CONNECTIONS
     527        feed.Outlet to sec.stage(15).Inlet;
     528       
     529        zero to sec.stage([1:14]).Inlet;
     530        zero to sec.stage([16:24]).Inlet;
     531       
     532        reb to sec.stage(24).InletV;
     533        cond to sec.stage(1).InletL;
     534       
     535        SPECIFY
     536        feed.Outlet.F = 113.4 * 'kmol/h';
     537        feed.Outlet.T = 291 * 'K';
     538        feed.Outlet.P = 168.3 * 'kPa';
     539        feed.Outlet.z = [0.5, 0.5];
     540
     541        zero.F = 0 * 'kmol/h';
     542        zero.T = 300 * 'K';
     543        zero.P = 1 * 'atm';
     544        zero.z = [0.5, 0.5];
     545        zero.v = 0;
     546        zero.h = 0 * 'J/mol';
     547       
     548        cond.F = 68 * 'kmol/h';
     549        cond.P = 150 * 'kPa';
     550        cond.T = 281.75 * 'K';
     551        cond.z = [0.6664, 0.3336];
     552
     553        reb.F = 153 * 'kmol/h';
     554        reb.P = 185 * 'kPa';
     555        reb.T = 328.12 * 'K';
     556        reb.z = [0.001848, 0.9982];
     557       
     558        sec.stage.Emv = 1;
     559#       sec.stage(1).OutletV.F = 150 * 'kmol/h';
     560
     561        SET
     562        sec.NTrays = 24;
     563       
     564#       sec.stage.PressureDropModel = "Leva";
     565#       sec.stage.PackingType = "random";
     566
     567        sec.stage.V = 4 * 'ft^3';
     568        sec.stage.Q = 0 * 'kW';
     569        sec.stage.Ap = 3.94 * 'ft^2';
     570
     571        INITIAL
     572        sec.stage.OutletL.T = [290:(330-290)/(sec.NTrays-1):330] *'K';
     573        sec.stage.Level = 0.5 * 'ft';
     574        sec.stage.OutletL.z(1) = 0.5;
     575       
     576        OPTIONS
     577        InitialFile = "/home/paula/SectionColumn_Test_with8tray.rlt";
     578        TimeStep = 1;
     579        TimeEnd = 100;
     580        #GuessFile="SectionColumn_Test_with8tray.rlt";
     581        #Dynamic = false;
     582end
     583
Note: See TracChangeset for help on using the changeset viewer.