Changeset 209
- Timestamp:
- Mar 15, 2007, 8:29:10 AM (16 years ago)
- Location:
- branches/newlanguage
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newlanguage/eml/stage_separators/condenser.mso
r208 r209 43 43 Model condenser 44 44 PARAMETERS 45 outer PP as Plugin ;45 outer PP as Plugin(Type="PP"); 46 46 outer NComp as Integer; 47 47 V as volume (Brief="Condenser total volume"); … … 135 135 Model condenserReact 136 136 PARAMETERS 137 outer PP as Plugin ;137 outer PP as Plugin(Type="PP"); 138 138 outer NComp as Integer; 139 139 V as volume (Brief="Condenser total volume"); -
branches/newlanguage/eml/stage_separators/flashPH.mso
r208 r209 38 38 Model FlashPHSteady 39 39 PARAMETERS 40 outer PP as Plugin ;40 outer PP as Plugin(Type="PP"); 41 41 outer NComp as Integer; 42 42 B as Real(Default=1000, Brief="Regularization Factor"); -
branches/newlanguage/eml/stage_separators/reboiler.mso
r200 r209 48 48 Model reboiler 49 49 PARAMETERS 50 outer PP as Plugin ;50 outer PP as Plugin(Type="PP"); 51 51 outer NComp as Integer; 52 52 Across as area (Brief="Cross Section Area of reboiler"); … … 119 119 Model reboilerSteady 120 120 PARAMETERS 121 outer PP as Plugin ;121 outer PP as Plugin(Type="PP"); 122 122 outer NComp as Integer; 123 123 DP as press_delta (Brief="Pressure Drop in the reboiler"); … … 155 155 Model reboilerSteady_fakeH 156 156 PARAMETERS 157 outer PP as Plugin ;157 outer PP as Plugin(Type="PP"); 158 158 outer NComp as Integer; 159 159 DP as press_delta (Brief="Pressure Drop in the reboiler"); … … 191 191 Model reboilerReact 192 192 PARAMETERS 193 outer PP as Plugin ;193 outer PP as Plugin(Type="PP"); 194 194 outer NComp as Integer; 195 195 Across as area (Brief="Cross Section Area of reboiler"); -
branches/newlanguage/eml/stage_separators/tank.mso
r183 r209 39 39 40 40 PARAMETERS 41 outer PP as Plugin ;41 outer PP as Plugin(Type="PP"); 42 42 outer NComp as Integer; 43 43 Across as area (Brief="Tank cross section area", Default=2); … … 84 84 85 85 PARAMETERS 86 outer PP as Plugin ;86 outer PP as Plugin(Type="PP"); 87 87 outer NComp as Integer; 88 88 radius as length(Brief="Tank radius"); … … 148 148 149 149 PARAMETERS 150 outer PP as Plugin ;150 outer PP as Plugin(Type="PP"); 151 151 outer NComp as Integer; 152 152 Across as area (Brief="Tank cross section area", Default=2); -
branches/newlanguage/eml/stage_separators/tray.mso
r200 r209 56 56 57 57 PARAMETERS 58 outer PP as Plugin ;58 outer PP as Plugin(Type="PP"); 59 59 outer NComp as Integer; 60 60 V as volume(Brief="Total Volume of the tray"); … … 145 145 if Level > (beta * hw) then 146 146 "Francis Equation" 147 OutletL.F = 1.84* "m^0.5/s"*lw*((Level-(beta*hw))/(beta))^2/vL;147 OutletL.F = 1.84*'1/s'*lw*((Level-(beta*hw))/(beta))^2/vL; 148 148 else 149 149 "Low level" 150 OutletL.F = 0 * "mol/h";150 OutletL.F = 0 * 'mol/h'; 151 151 end 152 152 … … 159 159 160 160 PARAMETERS 161 outer PP as Plugin ;161 outer PP as Plugin(Type="PP"); 162 162 outer NComp as Integer; 163 163 V as volume(Brief="Total Volume of the tray"); -
branches/newlanguage/sample/stage_separators/sample_stream.mso
r202 r209 28 28 FlowSheet stream_test 29 29 PARAMETERS 30 PP as Plugin(Brief="Physical Properties", File="vrpp"); 30 PP as Plugin(Brief="Physical Properties", 31 Type="PP", 32 Components = ["1,3-butadiene", "isobutene", "n-pentane", "1-pentene", "1-hexene", "benzene"], 33 LiquidModel = "PR", 34 VapourModel = "PR" 35 ); 31 36 NComp as Integer; 32 37 33 38 SET 34 PP.Components = ["1,3-butadiene", "isobutene", "n-pentane", "1-pentene", "1-hexene", "benzene"];35 PP.LiquidModel = "PR";36 PP.VapourModel = "PR";37 39 NComp = PP.NumberOfComponents; 38 40
Note: See TracChangeset
for help on using the changeset viewer.