Changeset 318 for trunk/sample/stage_separators/sample_batch_dist.mso
- Timestamp:
- Jul 19, 2007, 1:23:31 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sample/stage_separators/sample_batch_dist.mso
r247 r318 42 42 DEVICES 43 43 batch as Diff_Dist; 44 reflux as stream; 45 feed as stream; 44 reflux as liquid_stream; 45 feed as source; 46 Q as energy_source; 46 47 47 48 CONNECTIONS 48 49 reflux to batch.InletL; 49 feed to batch.Inlet; 50 feed.Outlet to batch.Inlet; 51 Q.OutletQ to batch.InletQ; 50 52 51 53 EQUATIONS 52 54 if batch.Level > 1E-3 then 53 55 batch.OutletV.F = 150 * 'kmol/h'; 54 batch.Q = 3.7743e6 * 'kJ/h';56 Q.OutletQ.Q = 3.7743e6 * 'kJ/h'; 55 57 else 56 58 batch.OutletV.F = 0 * 'kmol/h'; 57 batch.Q = 0 * 'kJ/h';59 Q.OutletQ.Q = 0 * 'kJ/h'; 58 60 end 59 61 … … 63 65 reflux.P = 180 * 'kPa'; 64 66 reflux.z = [0.5, 0.5]; 65 reflux.v = 0;66 reflux.h = 0 * 'kJ/kmol';67 67 68 feed.F = 0 * 'kmol/h'; 69 feed.T = 328 * 'K'; 70 feed.P = 180 * 'kPa'; 71 feed.z = [0.5, 0.5]; 72 feed.v = 0; 73 feed.h = 0 * 'kJ/kmol'; 68 feed.Outlet.F = 0 * 'kmol/h'; 69 feed.Outlet.T = 328 * 'K'; 70 feed.Outlet.P = 180 * 'kPa'; 71 feed.Outlet.z = [0.5, 0.5]; 74 72 75 73 SET
Note: See TracChangeset
for help on using the changeset viewer.