Changeset 645 for branches/gui/eml/stage_separators
- Timestamp:
- Sep 30, 2008, 3:29:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/stage_separators/columnTeste.mso
r644 r645 322 322 * - NumberOfTrays like tray; 323 323 * - a kettle reboiler; 324 * - dy mamic condenser;324 * - dynamic condenser; 325 325 * - a splitter which separate reflux and distillate; 326 326 * - a pump in reflux stream; … … 370 370 RebNoFlow as sourceNoFlow (Brief="No Inlet Flow to Reboiler",Hidden=true); 371 371 372 out VapourDistillate as vapour_stream (Brief="Vapour outlet stream From Top Condenser", PosX=0.72, PosY=0); 373 in ConnectorCondenserVout as stream (Brief="Connector for Vapour outlet stream From Top Condenser", Hidden=true); 374 375 out LiquidDistillate as liquid_stream (Brief="Liquid outlet stream From Top Splitter", PosX=1, PosY=0.47); 376 in ConnectorSplitterOut as stream (Brief="Connector for Liquid outlet stream From Top Splitter", Hidden=true); 377 378 out BottomProduct as liquid_stream (Brief="Liquid outlet stream From Reboiler", PosX=1, PosY=1); 379 in ConnectorReboilerLout as stream (Brief="Connector for Liquid outlet stream From Reboiler", Hidden=true); 380 372 381 EQUATIONS 373 382 … … 384 393 385 394 end 395 396 # Condenser Connector Equations 397 ConnectorCondenserVout.T = VapourDistillate.T; 398 ConnectorCondenserVout.P = VapourDistillate.P; 399 ConnectorCondenserVout.F = VapourDistillate.F; 400 ConnectorCondenserVout.z = VapourDistillate.z; 401 402 # Splitter Connector Equations 403 ConnectorSplitterOut.T = LiquidDistillate.T; 404 ConnectorSplitterOut.P = LiquidDistillate.P; 405 ConnectorSplitterOut.F = LiquidDistillate.F; 406 ConnectorSplitterOut.z = LiquidDistillate.z; 407 408 # Reboiler Connector Equations 409 ConnectorReboilerLout.T = BottomProduct.T; 410 ConnectorReboilerLout.P = BottomProduct.P; 411 ConnectorReboilerLout.F = BottomProduct.F; 412 ConnectorReboilerLout.z = BottomProduct.z; 386 413 387 414 CONNECTIONS … … 400 427 HeatToCondenser to CondenserUnity.InletQ; 401 428 RebNoFlow.Outlet to ReboilerUnity.Inlet; 429 430 CondenserUnity.OutletV to ConnectorCondenserVout; 431 SplitterTop.Outlet1 to ConnectorSplitterOut; 432 ReboilerUnity.OutletL to ConnectorReboilerLout; 402 433 403 434 end
Note: See TracChangeset
for help on using the changeset viewer.