Changeset 42 for mso/sample/stage_separators/sample_reboiler.mso
- Timestamp:
- Oct 26, 2006, 4:44:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mso/sample/stage_separators/sample_reboiler.mso
r33 r42 57 57 time = [0:20:1000]; 58 58 end 59 60 61 FlowSheet reboilerSteady_Test 62 PARAMETERS 63 PP as CalcObject(Brief="Physical Properties",File="vrpp"); 64 NComp as Integer; 65 66 VARIABLES 67 Q as heat_rate (Brief="Heat supplied"); 68 69 SET 70 PP.Components = [ "isobutane", "n-pentane"]; 71 PP.LiquidModel = "PR"; 72 PP.VapourModel = "PR"; 73 NComp = PP.NumberOfComponents; 74 75 DEVICES 76 r1 as reboilerSteady; 77 s1 as stream_therm; 78 79 CONNECTIONS 80 s1 to r1.InletL; 81 Q to r1.Q; 82 83 SPECIFY 84 s1.P = 185 * "kPa"; 85 s1.T = 327.7 * "K"; 86 s1.F = 180 * "kmol/h"; 87 s1.z = [0.006061, 0.9939]; 88 s1.v = 0.0; 89 90 # Q = 3.7743e6 * "kJ/h"; 91 r1.OutletV.T = 350 * "K"; 92 93 SET 94 r1.DP = 10 * "kPa"; 95 96 OPTIONS 97 relativeAccuracy = 1e-5; 98 mode = "steady"; 99 end
Note: See TracChangeset
for help on using the changeset viewer.