Last change
on this file since 78 was
25,
checked in by Rafael de Pelegrini Soares, 17 years ago
|
Updated tanks tutorial
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
918 bytes
|
Rev | Line | |
---|
[1] | 1 | #*--------------------------------------------------------------------- |
---|
| 2 | * This file is property of the author and cannot be used, copyed |
---|
| 3 | * or modified without permission. |
---|
| 4 | * |
---|
| 5 | * Copyright (C) 2002-2004 the author |
---|
| 6 | *---------------------------------------------------------------------- |
---|
| 7 | * Author: Rafael de Pelegrini Soares |
---|
| 8 | * $Id: ThreeTank2.mso 25 2006-09-06 19:41:38Z rafael $ |
---|
| 9 | *---------------------------------------------------------------------- |
---|
| 10 | * |
---|
| 11 | * Arquivo de exemplo do EMSO |
---|
| 12 | * |
---|
| 13 | * Sistema de uma série de tanques. |
---|
| 14 | * |
---|
| 15 | *-------------------------------------------------------------------*# |
---|
| 16 | |
---|
[25] | 17 | using "stage_separators/tank"; |
---|
[1] | 18 | |
---|
| 19 | FlowSheet ThreeTank |
---|
[15] | 20 | VARIABLES |
---|
| 21 | Feed as flow_vol; |
---|
| 22 | |
---|
[1] | 23 | DEVICES |
---|
| 24 | Tank1 as tank_simplified; |
---|
| 25 | Tank2 as tank_simplified; |
---|
| 26 | Tank3 as tank_simplified; |
---|
| 27 | |
---|
| 28 | CONNECTIONS |
---|
[15] | 29 | Feed to Tank1.Fin; |
---|
[1] | 30 | Tank1.Fout to Tank2.Fin; |
---|
| 31 | Tank2.Fout to Tank3.Fin; |
---|
| 32 | |
---|
| 33 | SPECIFY |
---|
[16] | 34 | Feed = 10 * "m^3/h"; |
---|
[1] | 35 | |
---|
| 36 | INITIAL |
---|
| 37 | Tank1.h = 1 * "m"; |
---|
| 38 | Tank2.h = 2 * "m"; |
---|
| 39 | Tank3.h = 1 * "m"; |
---|
| 40 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.