Last change
on this file since 1 was
1,
checked in by Rafael de Pelegrini Soares, 17 years ago
|
Initial import of the library
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
591 bytes
|
Rev | Line | |
---|
[1] | 1 | using "pressure_changers/pump"; |
---|
| 2 | |
---|
| 3 | FlowSheet 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 | outputLevel = "medium"; |
---|
| 31 | time = [0:20:1000]; |
---|
| 32 | mode = "steady"; |
---|
| 33 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.