Changeset 567 for branches/gui/eml/pressure_changers
- Timestamp:
- Jul 24, 2008, 10:45:34 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/pressure_changers/valve.mso
r558 r567 218 218 Pallete = true; 219 219 Icon = "icon/Valve"; 220 Brief = "Model of a very simple valve - used in distillation column models.";220 Brief = "Model of a very simple valve for setting the flow with a controller."; 221 221 Info = 222 222 "== Assumptions == 223 * no flashing liquid in the valve; 224 * the flow in the valve is adiabatic; 225 * dynamics in the valve are neglected; 226 * linear flow type. 223 * nothing happens in this valve 227 224 228 225 == Specify == 229 226 * the inlet stream 230 * the plug position (x) OR outlet temperature (Outlet.T) OR outlet pressure (Outlet.P) 231 232 OR 233 234 * the inlet stream excluding its flow (Inlet.F) 235 * the outlet pressure (Outlet.P) OR outlet flow (Outlet.F) 236 * the plug position (x) 227 * the flow fraction 237 228 "; 238 229 … … 246 237 VARIABLES 247 238 in Inlet as stream (Brief = "Inlet stream", PosX=0, PosY=0.7365, Symbol="_{in}"); 248 out Outlet as stream PH(Brief = "Outlet stream", PosX=1, PosY=0.7365, Symbol="_{out}");239 out Outlet as stream (Brief = "Outlet stream", PosX=1, PosY=0.7365, Symbol="_{out}"); 249 240 in FlowFraction as fraction (Brief="Flow Signal", PosX=0.5, PosY=0); 250 241 251 242 EQUATIONS 252 243 "Overall Molar Balance" 253 Inlet.F = Outlet.F; 254 244 Outlet.F = Inlet.F; 245 "Temperature" 246 Outlet.T = Inlet.T; 247 "Pressure" 248 Outlet.P = Inlet.P; 249 "Energy Balance" 250 Outlet.h = Inlet.h; 251 "Vapour fraction" 252 Outlet.v = Inlet.v; 253 255 254 "Componente Molar Balance" 256 Inlet.z = Outlet.z; 257 258 "Energy Balance" 259 Inlet.h = Outlet.h; 260 261 "Pressure" 262 Outlet.P = Inlet.P; 263 264 "Flow" 255 Outlet.z = Inlet.z; 256 257 "Flow computation" 265 258 Outlet.F = MinFlow + FlowFraction*(MaxFlow-MinFlow); 266 259 end
Note: See TracChangeset
for help on using the changeset viewer.