Changeset 214 for branches/newlanguage/sample/heat_exchangers
- Timestamp:
- Mar 15, 2007, 5:23:31 PM (16 years ago)
- Location:
- branches/newlanguage/sample/heat_exchangers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newlanguage/sample/heat_exchangers/Sample_DoublePipe.mso
r165 r214 29 29 30 30 PARAMETERS 31 PP as Plugin (File="vrpp"); 31 PP as Plugin (Type ="PP", LiquidModel = "PR", VapourModel = "PR", 32 Components = ["n-hexane","water"]); 32 33 NComp as Integer; 33 34 … … 50 51 SET 51 52 52 PP.LiquidModel = "PR"; 53 PP.VapourModel = "PR"; 54 PP.Components = ["n-hexane","water"]; 55 NComp = PP.NumberOfComponents; 53 NComp = PP.NumberOfComponents; 56 54 57 55 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ … … 109 107 PARAMETERS 110 108 111 PP as Plugin (File="vrpp"); 109 PP as Plugin (Type ="PP", LiquidModel = "PR", VapourModel = "PR", 110 Components = ["n-hexane","water"]); 112 111 NComp as Integer; 113 112 … … 130 129 SET 131 130 132 PP.LiquidModel = "PR"; 133 PP.VapourModel = "PR"; 134 PP.Components = ["n-hexane","water"]; 135 NComp = PP.NumberOfComponents; 131 NComp = PP.NumberOfComponents; 136 132 137 133 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -
branches/newlanguage/sample/heat_exchangers/Sample_Heater.mso
r208 r214 41 41 PARAMETERS 42 42 43 PP as Plugin (File="vrpp"); 43 PP as Plugin (Type ="PP", LiquidModel = "PR",VapourModel = "PR", 44 Components = ["water","ethanol"]); 44 45 NComp as Integer; 45 46 46 47 SET 47 48 48 PP.LiquidModel = "PR"; 49 PP.VapourModel = "PR"; 50 51 PP.Components = ["water","ethanol"]; 52 NComp = PP.NumberOfComponents; 49 NComp = PP.NumberOfComponents; 53 50 54 51 Heater.Ninlet = 2; -
branches/newlanguage/sample/heat_exchangers/Sample_Mheatex.mso
r179 r214 37 37 PARAMETERS 38 38 39 PP as Plugin (File="vrpp"); 39 PP as Plugin (Type="PP", LiquidModel= "PR", VapourModel = "PR", 40 Components = ["water","methanol","benzene","toluene"]); 40 41 NComp as Integer (Brief="Number Components"); 41 42 42 43 SET 43 44 44 PP.LiquidModel = "PR"; 45 PP.VapourModel = "PR"; 46 PP.Components = ["water","methanol","benzene","toluene"]; 47 NComp = PP.NumberOfComponents; 45 NComp = PP.NumberOfComponents; 48 46 49 47 Mheater.Nhot = 1; … … 116 114 PARAMETERS 117 115 118 PP as Plugin (File="vrpp"); 116 PP as Plugin (Type="PP", LiquidModel= "PR", VapourModel = "PR", 117 Components = ["water","methanol","benzene","toluene"]); 119 118 NComp as Integer (Brief="Number Components"); 120 119 121 120 SET 122 121 123 PP.LiquidModel = "PR";124 PP.VapourModel = "PR";125 PP.Components = ["water","methanol","benzene","toluene"];126 122 NComp = PP.NumberOfComponents; 127 123 -
branches/newlanguage/sample/heat_exchangers/Sample_Simplified.mso
r179 r214 40 40 41 41 PARAMETERS 42 PP as Plugin (File="vrpp"); 42 PP as Plugin (Type="PP",LiquidModel = "RK",VapourModel = "RK", 43 Components = ["water"]); 43 44 NComp as Integer; 45 44 46 SET 45 47 46 PP.LiquidModel = "RK"; 47 PP.VapourModel = "RK"; 48 PP.Components = ["water"]; 48 49 49 NComp = PP.NumberOfComponents; 50 50 … … 91 91 92 92 PARAMETERS 93 PP as Plugin (File="vrpp"); 93 PP as Plugin (Type="PP",LiquidModel = "RK",VapourModel = "RK", 94 Components = ["water"]); 94 95 NComp as Integer; 95 96 96 97 SET 97 98 98 PP.LiquidModel = "RK";99 PP.VapourModel = "RK";100 PP.Components = ["water"];101 99 NComp = PP.NumberOfComponents; 102 100 -
branches/newlanguage/sample/heat_exchangers/sample_ShellandTubes.mso
r186 r214 29 29 PARAMETERS 30 30 31 PP as Plugin (Brief="Physical Properties",File="vrpp"); 31 PP as Plugin (Brief="Physical Properties",Type="PP",LiquidModel = "PR",VapourModel = "PR", 32 Components = ["water","n-butane", "benzene" ]); 32 33 NComp as Integer; 33 34 … … 42 43 SET 43 44 44 PP.LiquidModel = "PR";45 PP.VapourModel = "PR";46 PP.Components = ["water","n-butane", "benzene" ];47 45 NComp = PP.NumberOfComponents; 48 46 … … 87 85 PARAMETERS 88 86 89 PP as Plugin (Brief="Physical Properties",File="vrpp"); 87 PP as Plugin (Brief="Physical Properties",Type="PP",LiquidModel = "PR",VapourModel = "PR", 88 Components = ["water","n-butane", "benzene" ]); 90 89 NComp as Integer; 91 90 … … 100 99 SET 101 100 102 PP.LiquidModel = "PR";103 PP.VapourModel = "PR";104 PP.Components = ["water","n-butane", "benzene" ];105 101 NComp = PP.NumberOfComponents; 106 102
Note: See TracChangeset
for help on using the changeset viewer.