source: mso/sample/pressure_changers/sample_pump.mso @ 33

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

clean up.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 566 bytes
Line 
1using "pressure_changers/pump";
2
3FlowSheet pump_Test
4        PARAMETERS
5        PP      as CalcObject(Brief="Physical Properties",File="vrpp");
6        NComp   as Integer;
7
8        SET
9        PP.Components = ["ethane", "propane", "propylene","1,3-butadiene","n-hexane"];
10        PP.LiquidModel = "PR";
11        PP.VapourModel = "PR";
12        NComp = PP.NumberOfComponents;
13       
14        DEVICES
15        p1 as pump;
16        s1 as stream_therm;
17       
18        CONNECTIONS
19        s1 to p1.Inlet;
20
21        SPECIFY
22        s1.F = 826 * "kmol/h";
23        s1.P = 549 * "kPa";
24        s1.T = 313 * "K";
25        s1.z = 1/NComp;
26        s1.v = 0.68;
27        p1.dP = 90 * "kPa";
28
29        OPTIONS
30        time = [0:20:1000];
31        mode = "steady";
32end
Note: See TracBrowser for help on using the repository browser.