Changeset 215 for branches/newlanguage/sample
- Timestamp:
- Mar 15, 2007, 5:46:35 PM (16 years ago)
- Location:
- branches/newlanguage/sample
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newlanguage/sample/mixers_splitters/sample_mixer.mso
r208 r215 28 28 29 29 PARAMETERS 30 PP as Plugin(Brief="Physical Properties",File="vrpp"); 30 PP as Plugin(Brief="Physical Properties",Type="PP",Components = [ "isobutane", "benzene", "methane" ], 31 LiquidModel = "PR", 32 VapourModel = "PR"); 33 31 34 NComp as Integer; 32 35 Ninlet as Integer; … … 39 42 40 43 SET 41 PP.Components = [ "isobutane", "benzene", "methane" ]; 42 PP.LiquidModel = "PR"; 43 PP.VapourModel = "PR"; 44 44 45 NComp = PP.NumberOfComponents; 45 46 mixer1.Ninlet = 2; -
branches/newlanguage/sample/mixers_splitters/sample_sepComp.mso
r175 r215 30 30 PARAMETERS 31 31 32 PP as Plugin (Brief="Physical Properties",File="vrpp"); 32 PP as Plugin (Brief="Physical Properties",Type="PP",Components = [ "isobutane", "benzene"], 33 LiquidModel = "PR", 34 VapourModel = "PR"); 33 35 NComp as Integer; 34 36 … … 41 43 42 44 SET 43 PP.Components = [ "isobutane", "benzene"]; 44 PP.LiquidModel = "PR"; 45 PP.VapourModel = "PR"; 45 46 46 NComp = PP.NumberOfComponents; 47 47 … … 70 70 FlowSheet Sample_sepComp 71 71 PARAMETERS 72 PP as Plugin(Brief="Physical Properties",File="vrpp"); 72 PP as Plugin(Brief="Physical Properties",Type="PP",Components = [ "isobutane", "benzene"], 73 LiquidModel = "PR", 74 VapourModel = "PR"); 73 75 NComp as Integer; 74 76 … … 81 83 82 84 SET 83 PP.Components = [ "isobutane", "benzene"]; 84 PP.LiquidModel = "PR"; 85 PP.VapourModel = "PR"; 85 86 86 NComp = PP.NumberOfComponents; 87 87 sep.mainComp = 1; -
branches/newlanguage/sample/mixers_splitters/sample_splitter.mso
r175 r215 28 28 FlowSheet TestSplitter 29 29 PARAMETERS 30 PP as Plugin (Brief="Physical Properties",File="vrpp"); 30 PP as Plugin (Brief="Physical Properties",Type="PP",Components = [ "isobutane", "benzene"], 31 LiquidModel = "PR", 32 VapourModel = "PR"); 31 33 NComp as Integer; 32 34 NOutlet as Integer; … … 40 42 41 43 SET 42 PP.Components = [ "isobutane", "benzene"]; 43 PP.LiquidModel = "PR"; 44 PP.VapourModel = "PR"; 44 45 45 NComp = PP.NumberOfComponents; 46 46 Splitter.NOutlet = 3; -
branches/newlanguage/sample/optimization/ammonia.mso
r185 r215 108 108 FlowSheet Ammonia 109 109 PARAMETERS 110 PP as Plugin(Brief="Physical Properties", File="vrpp"); 110 PP as Plugin(Brief="Physical Properties", Type="PP",Components = ["hydrogen", "nitrogen", "argon", "methane", "ammonia"], 111 LiquidModel = "APR", VapourModel = "APR"); 111 112 NComp as Integer; 112 113 SET 113 PP.Components = ["hydrogen", "nitrogen", "argon", "methane", "ammonia"]; 114 PP.LiquidModel = "APR"; 115 PP.VapourModel = "APR"; 114 116 115 NComp = PP.NumberOfComponents; 117 116 -
branches/newlanguage/sample/optimization/flash_opt.mso
r184 r215 29 29 FlowSheet FlashSteadyTest 30 30 PARAMETERS 31 PP as Plugin(Brief="Physical Properties",File="vrpp"); 31 PP as Plugin(Brief="Physical Properties",Type="PP",Components = ["1,3-butadiene", "isobutene", "n-pentane", "1-pentene", "1-hexene", "benzene"], 32 LiquidModel = "PR", 33 VapourModel = "PR"); 32 34 NComp as Integer; 33 35 … … 37 39 38 40 SET 39 PP.Components = ["1,3-butadiene", "isobutene", "n-pentane", "1-pentene", "1-hexene", "benzene"]; 40 PP.LiquidModel = "PR"; 41 PP.VapourModel = "PR"; 41 42 42 NComp = PP.NumberOfComponents; 43 43
Note: See TracChangeset
for help on using the changeset viewer.