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 models valve_simplified and valve |
---|
17 | *-------------------------------------------------------------------- |
---|
18 | * |
---|
19 | * This sample file needs VRTherm DEMO (www.vrtech.com.br) to run. |
---|
20 | * |
---|
21 | *---------------------------------------------------------------------- |
---|
22 | * Author: Paula B. Staudt, Estefane Horn, Núbia do Carmo Ferreira |
---|
23 | * $Id: sample_valve.mso 587 2008-08-04 22:45:14Z bicca $ |
---|
24 | *--------------------------------------------------------------------*# |
---|
25 | |
---|
26 | using "pressure_changers/valve"; |
---|
27 | |
---|
28 | FlowSheet valve_Test_V |
---|
29 | # with vapour conditions |
---|
30 | PARAMETERS |
---|
31 | PP as Plugin(Brief="Physical Properties", |
---|
32 | Type="PP", |
---|
33 | Components = [ "isobutane", "benzene"], |
---|
34 | LiquidModel = "PR", |
---|
35 | VapourModel = "PR" |
---|
36 | ); |
---|
37 | NComp as Integer; |
---|
38 | |
---|
39 | SET |
---|
40 | NComp = PP.NumberOfComponents; |
---|
41 | |
---|
42 | DEVICES |
---|
43 | v1 as valve_simplified; |
---|
44 | s1 as source; |
---|
45 | |
---|
46 | CONNECTIONS |
---|
47 | s1.Outlet to v1.Inlet; |
---|
48 | |
---|
49 | SPECIFY |
---|
50 | s1.P = 150 * 'kPa'; |
---|
51 | s1.T = 281.75 * 'K'; |
---|
52 | s1.Composition = [0.664, 0.336]; |
---|
53 | |
---|
54 | v1.x = 0.866; |
---|
55 | v1.Outlet.P = 148 * 'kPa'; |
---|
56 | |
---|
57 | SET |
---|
58 | v1.k = 20 * 'gal/min/psi^0.5'; |
---|
59 | |
---|
60 | OPTIONS |
---|
61 | Dynamic = false; |
---|
62 | NLASolver( |
---|
63 | RelativeAccuracy = 1e-6 |
---|
64 | ); |
---|
65 | end |
---|
66 | |
---|
67 | FlowSheet valve_Test_L |
---|
68 | #with liquid conditions |
---|
69 | PARAMETERS |
---|
70 | PP as Plugin(Brief="Physical Properties", |
---|
71 | Type="PP", |
---|
72 | Components = [ "isobutane", "benzene"], |
---|
73 | LiquidModel = "PR", |
---|
74 | VapourModel = "PR" |
---|
75 | ); |
---|
76 | NComp as Integer; |
---|
77 | |
---|
78 | SET |
---|
79 | NComp = PP.NumberOfComponents; |
---|
80 | |
---|
81 | DEVICES |
---|
82 | v1 as valve_simplified; |
---|
83 | s1 as source; |
---|
84 | |
---|
85 | CONNECTIONS |
---|
86 | s1.Outlet to v1.Inlet; |
---|
87 | |
---|
88 | SPECIFY |
---|
89 | s1.P = 185 * 'kPa'; |
---|
90 | s1.T = 328.12 * 'K'; |
---|
91 | s1.Composition = [0.001848, 0.9982]; |
---|
92 | |
---|
93 | v1.x = 0.3363; |
---|
94 | v1.Outlet.P = 183 * 'kPa'; |
---|
95 | |
---|
96 | SET |
---|
97 | v1.k = 20 * 'gal/min/psi^0.5'; |
---|
98 | |
---|
99 | OPTIONS |
---|
100 | Dynamic = false; |
---|
101 | NLASolver( |
---|
102 | RelativeAccuracy = 1e-6 |
---|
103 | ); |
---|
104 | end |
---|
105 | |
---|