source: branches/newlanguage/sample/pressure_changers/sample_turbine.mso @ 210

Last change on this file since 210 was 210, checked in by Argimiro Resende Secchi, 16 years ago

Remove convergence problems of some samples.

  • 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 210 2007-03-15 12:52:28Z arge $
24*--------------------------------------------------------------------*#
25
26using "pressure_changers/turbine";
27
28FlowSheet HTurbine_HT1
29       
30        DEVICES
31        S1 as source;
32        HT1 as Hidraulic_Turbine;
33       
34        CONNECTIONS
35        S1.Outlet to HT1.Inlet;
36       
37        PARAMETERS
38        PP              as Plugin               (Brief="External Physical Properties", File="vrpp");
39        Mw              as positive     (Brief = "Molar Mass", Unit = 'kg/kmol');
40        NComp   as Integer              (Default= 1);
41       
42        SET
43        PP.Components = ["water", "benzene"];   
44        PP.LiquidModel = "PR";
45        PP.VapourModel = "PR";
46        PP.Derivatives = 0;
47        NComp = PP.NumberOfComponents;
48       
49        SPECIFY
50        HT1.Beta = 425e-6 / 'K';
51        HT1.Meff = 0.95;
52        HT1.Eff = 0.72;
53        S1.Outlet.F = 1000                      * 'kmol/h';
54        S1.Outlet.P = 5                         * 'atm' ;
55        S1.Outlet.T = 298                       * 'K' ;
56        S1.Outlet.z = [1];
57        #HT1.Pdiff = 100        * 'kPa';
58        HT1.Outlet.P = 1        * 'atm';
59       
60end
Note: See TracBrowser for help on using the repository browser.