Changeset 613 for branches/gui/sample
- Timestamp:
- Sep 1, 2008, 7:45:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/sample/stage_separators/sample_columnTeste.mso
r612 r613 28 28 using "stage_separators/columnTeste"; 29 29 30 # column section with 2 trays31 30 FlowSheet SectionColumn_Test_with2tray 32 31 33 32 PARAMETERS 34 33 PP as Plugin(Brief="Physical Properties", … … 41 40 42 41 DEVICES 43 sec 44 feed 45 reb 46 cond 47 42 sec as Section_ColumnTeste; 43 feed as liquid_stream; 44 reb as vapour_stream; 45 cond as liquid_stream; 46 48 47 SET 49 48 NComp = PP.NumberOfComponents; 50 sec.FeedTray = 2; 49 sec.FeedTray=1; 50 sec.NTrays = 2; 51 #COLUMN 52 sec.trays.V = 4 * 'ft^3'; 53 sec.Ah = 0.394 * 'ft^2'; 54 sec.lw = 20.94 * 'in'; 55 sec.hw = 0.125 * 'ft'; 56 sec.trays.Q = 0 * 'kW'; 57 sec.beta = 0.6; 58 sec.alfa = 4; 59 sec.trays.Ap = 3.94 * 'ft^2'; 51 60 52 61 CONNECTIONS 53 feed to sec.Inlet;#Feed at stage 2 54 62 feed to sec.Inlet; 63 reb to sec.Vin; 64 cond to sec.Lin; 65 55 66 SPECIFY 56 67 feed.F = 113.4 * 'kmol/h'; … … 71 82 sec.trays(1).OutletV.F = 150 * 'kmol/h'; 72 83 73 SET74 sec.NTrays = 2;75 #COLUMN76 sec.trays.V = 4 * 'ft^3';77 sec.trays.Ah = 0.394 * 'ft^2';78 sec.trays.lw = 20.94 * 'in';79 sec.trays.hw = 0.125 * 'ft';80 sec.trays.Q = 0 * 'kW';81 sec.trays.beta = 0.6;82 sec.trays.alfa = 4;83 sec.trays.Ap = 3.94 * 'ft^2';84 85 84 INITIAL 86 85 sec.trays.OutletL.T = 270 *'K'; 87 sec.trays.Level = 0.9 * sec. trays.hw;86 sec.trays.Level = 0.9 * sec.hw; 88 87 sec.trays.OutletL.z(1) = 0.5; 89 88 90 OPTIONS89 OPTIONS 91 90 TimeStep = 10; 92 91 TimeEnd = 1000; 93 92 94 93 end 95
Note: See TracChangeset
for help on using the changeset viewer.