source: branches/gui/sample/pressure_changers/sample_turbine.mso @ 585

Last change on this file since 585 was 585, checked in by gerson bicca, 15 years ago

fixed

  • Property svn:keywords set to Id
File size: 1.8 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 model Hidraulic turbine
17*--------------------------------------------------------------------
18*
19* This sample file needs VRTherm DEMO (www.vrtech.com.br) to run.
20*
21*----------------------------------------------------------------------
22* Author: Andrey Copat, Estefane S. Horn, Marcos L. Alencastro
23* $Id: sample_turbine.mso 585 2008-07-28 23:31:29Z bicca $
24*--------------------------------------------------------------------*#
25
26using "pressure_changers/turbine";
27
28FlowSheet HTurbine_HT1
29       
30        DEVICES
31        S1 as source;
32        HT1 as HidraulicTurbine;
33       
34        CONNECTIONS
35        S1.Outlet to HT1.Inlet;
36       
37        PARAMETERS
38        PP              as Plugin               (Brief="External Physical Properties",
39                Type="PP",
40                Components = ["water", "benzene"],
41                LiquidModel = "PR",
42                VapourModel = "PR"
43        );
44        Mw              as positive     (Brief = "Molar Mass", Unit = 'kg/kmol');
45        NComp   as Integer              (Default= 1);
46       
47        SET
48        NComp = PP.NumberOfComponents();
49       
50        S1.ValidPhases = "Vapour-Liquid";
51        S1.CompositionBasis = "Molar";
52
53        SPECIFY
54        HT1.Beta = 425e-6 / 'K';
55        HT1.Meff = 0.95;
56        HT1.Eff = 0.72;
57       
58        S1.F = 1000                     * 'kmol/h';
59        S1.P = 5                        * 'atm' ;
60        S1.T = 298                      * 'K' ;
61        S1.Composition = [1];
62       
63        #HT1.Pdrop = 100        * 'kPa';
64        HT1.Outlet.P = 1        * 'atm';
65       
66end
Note: See TracBrowser for help on using the repository browser.