Changeset 649 for branches/gui/eml/stage_separators/condenser.mso
- Timestamp:
- Sep 30, 2008, 6:42:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/stage_separators/condenser.mso
r648 r649 122 122 * the heat supply. 123 123 "; 124 125 126 outer PP as Plugin(Brief = "External Physical Properties", Type="PP");124 125 PARAMETERS 126 outer PP as Plugin (Brief = "External Physical Properties", Type="PP"); 127 127 outer NComp as Integer; 128 128 129 VARIABLES 130 in InletV as stream(Brief="Vapour inlet stream", PosX=0.3431, PosY=0, Symbol="_{inV}"); 131 out OutletL as liquid_stream(Brief="Liquid outlet stream", PosX=0.34375, PosY=1, Symbol="_{outL}"); 132 in InletQ as power (Brief="Cold supplied", PosX=1, PosY=0.5974, Symbol="_{in}"); 133 DP as press_delta (Brief="Pressure Drop in the condenser"); 134 135 EQUATIONS 136 "Molar Balance" 129 VARIABLES 130 in InletV as stream (Brief="Vapour inlet stream", PosX=0.3431, PosY=0, Symbol="_{inV}"); 131 out OutletL as liquid_stream (Brief="Liquid outlet stream", PosX=0.34375, PosY=1, Symbol="_{outL}"); 132 in InletQ as power (Brief="Cold supplied", PosX=1, PosY=0.5974, Symbol="_{in}"); 133 DP as press_delta (Brief="Pressure Drop in the condenser"); 134 135 EQUATIONS 136 137 "Molar Balance" 137 138 InletV.F = OutletL.F; 138 139 InletV.z = OutletL.z; 139 140 140 141 "Energy Balance" 141 142 InletV.F*InletV.h = OutletL.F*OutletL.h + InletQ; 142 143 143 144 "Pressure" 144 145 DP = InletV.P - OutletL.P; 146 145 147 end 146 148
Note: See TracChangeset
for help on using the changeset viewer.