1 | using "streams"; |
---|
2 | FlowSheet corrente |
---|
3 | |
---|
4 | |
---|
5 | DEVICES |
---|
6 | |
---|
7 | LGN as source; |
---|
8 | |
---|
9 | |
---|
10 | PARAMETERS |
---|
11 | |
---|
12 | PP as Plugin (Type ="PP", LiquidModel = "PR",VapourModel = "PR", |
---|
13 | Components = ["ethane","propane","n-butane", "isobutane", "n-pentane", "isopentane","n-hexane", "n-heptane"]); |
---|
14 | NComp as Integer; |
---|
15 | |
---|
16 | |
---|
17 | SET |
---|
18 | |
---|
19 | NComp = PP.NumberOfComponents; |
---|
20 | |
---|
21 | SPECIFY |
---|
22 | |
---|
23 | LGN.F = 301 * 'kmol/h'; |
---|
24 | LGN.P = 11.48 * 'kgf/cm^2'; |
---|
25 | LGN.T = (32.74+273.15) * 'K'; |
---|
26 | LGN.Composition = [0.1058,0.3858,0.1946,0.0932,0.0751,0.0721,0.0901,0]; |
---|
27 | |
---|
28 | end |
---|
29 | |
---|