1 | #* |
---|
2 | * EMSO template file for new flowsheets. |
---|
3 | * |
---|
4 | * The user should edit the contents of this file in order |
---|
5 | * to develop a new flowsheet. |
---|
6 | * |
---|
7 | * $Id: flowsheet.mso 114 2007-01-15 14:20:51Z rafael $ |
---|
8 | *# |
---|
9 | |
---|
10 | #* |
---|
11 | * The using command makes available entities declared in another files. |
---|
12 | * |
---|
13 | * With this command the user can make use of the EML models |
---|
14 | *# |
---|
15 | using "Reator"; |
---|
16 | |
---|
17 | |
---|
18 | FlowSheet Leito_flu |
---|
19 | |
---|
20 | PARAMETERS |
---|
21 | PP as Plugin (Type="PP", Components = ["hydrogen", "nitrogen", "carbon dioxide", "carbon monoxide"], |
---|
22 | LiquidModel = "PR", |
---|
23 | VapourModel = "PR"); |
---|
24 | NComp as Integer; |
---|
25 | |
---|
26 | SET |
---|
27 | NComp = 4;#PP.NumberOfComponents; |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | DEVICES |
---|
32 | leito as Reator; |
---|
33 | |
---|
34 | SPECIFY |
---|
35 | #leito.Hmf = 1 * 'm'; |
---|
36 | leito.uo = 0.06243 * 'm/s'; |
---|
37 | #leito.umf = 0.03243 * 'm/s'; |
---|
38 | leito.ro = 19.4 * 'kg/m^3'; |
---|
39 | leito.rop = 1982.5 * 'kg/m^3'; |
---|
40 | leito.dp = 150e-6 * 'm'; |
---|
41 | leito.g = 9.8 * 'm/s^2'; |
---|
42 | leito.mi = 0.0165239 * 'cP'; |
---|
43 | leito.x = 1 * 'm'; |
---|
44 | leito.T = 533 * 'K'; |
---|
45 | leito.Te = [20.2,77,194.4,81.5] * 'K'; |
---|
46 | leito.P = 50 * 'bar'; |
---|
47 | leito.Mw = [2,28,44,28] * 'g/mol'; |
---|
48 | leito.Ç(1).z=[1,0,0,0]; |
---|
49 | leito.Ç(2).z=[0,1,0,0]; |
---|
50 | leito.Ç(3).z=[0,0,1,0]; |
---|
51 | leito.Ç(4).z=[0,0,0,1]; |
---|
52 | leito.z = [0.485437,0.0145631,0.485437,0.0145631]; |
---|
53 | |
---|
54 | SET |
---|
55 | leito.D = 0.026 * 'm'; |
---|
56 | leito.A = 3.14*(leito.D/2)^2; |
---|
57 | leito.An= 7.85e-5 * 'm^1.5*s'; |
---|
58 | #leito.B = 4.357e-9 * '(atm*m^8*kg)/(K^1.5)/mol^3/s'; |
---|
59 | |
---|
60 | OPTIONS |
---|
61 | Dynamic=false; |
---|
62 | RelativeAccuracy = 1e-6; |
---|
63 | |
---|
64 | end |
---|
65 | |
---|
66 | |
---|