source: mso/sample/miscellaneous/sample_tanks.mso @ 100

Last change on this file since 100 was 83, checked in by Paula Bettio Staudt, 16 years ago

Updated miscelaneous sample files header

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#*-------------------------------------------------------------------
2* EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC.
3*
4* This LIBRARY is free software; you can distribute it and/or modify
5* it under the therms of the ALSOC FREE LICENSE as available at
6* http://www.enq.ufrgs.br/alsoc.
7*
8* EMSO Copyright (C) 2004 - 2007 ALSOC, original code
9* from http://www.rps.eng.br Copyright (C) 2002-2004.
10* All rights reserved.
11*
12* EMSO is distributed under the therms of the ALSOC LICENSE as
13* available at http://www.enq.ufrgs.br/alsoc.
14*
15*--------------------------------------------------------------------
16* Sample file for buffer tank series.
17*--------------------------------------------------------------------
18* Author: Rafael de Pelegrini Soares
19* $Id: sample_tanks.mso 83 2006-12-08 20:29:34Z paula $
20*--------------------------------------------------------------------*#
21
22using "stage_separators/tank";
23
24FlowSheet TresTanques
25        DEVICES
26        Fin     as flow_vol;
27        Tanque1 as tank_simplified;
28        Tanque2 as tank_simplified;
29        Tanque3 as tank_simplified;
30       
31        CONNECTIONS
32        Fin          to Tanque1.Fin;
33        Tanque1.Fout to Tanque2.Fin;
34        Tanque2.Fout to Tanque3.Fin;
35       
36        SET
37        Tanque2.k = 8 * "m^2.5/h";
38        Tanque2.A = 4 * "m^2";
39       
40        SPECIFY
41        "Vazao de entrada"
42        Fin = 10 * "m^3/h";
43
44        INITIAL
45        "altura inicial"
46        Tanque1.h = 1 * "m";
47        Tanque2.h = 2 * "m";
48        Tanque3.h = 1 * "m";
49       
50        OPTIONS
51        time = [0:0.1:2] * "h" ;
52end
Note: See TracBrowser for help on using the repository browser.