Last change
on this file since 57 was
57,
checked in by Paula Bettio Staudt, 16 years ago
|
Added new pressure_changers models
|
File size:
1.3 KB
|
Line | |
---|
1 | #*------------------------------------------------------------------------ |
---|
2 | * This file is property of the author and cannot be used, copyed |
---|
3 | * or modified without permission. |
---|
4 | * |
---|
5 | * Copyright (C) 2002-2006 the author |
---|
6 | *------------------------------------------------------------------------- |
---|
7 | * Authors: Andrey Copat Estefane da Silveira Horn |
---|
8 | * $Id: $ Marcos Lovato Alencastro |
---|
9 | * Date: 20/02/2006 |
---|
10 | *------------------------------------------------------------------------- |
---|
11 | * -> Steady State |
---|
12 | * -> Only Liquid |
---|
13 | * -> Adiabatic |
---|
14 | * -> Isentropic |
---|
15 | *-------------------------------------------------------------------------*# |
---|
16 | using "pressure_changers/turbine"; |
---|
17 | |
---|
18 | FlowSheet HTurbine_HT1 |
---|
19 | |
---|
20 | DEVICES |
---|
21 | S1 as streamTP; |
---|
22 | HT1 as Hidraulic_Turbine; |
---|
23 | |
---|
24 | CONNECTIONS |
---|
25 | S1 to HT1.Inlet; |
---|
26 | |
---|
27 | PARAMETERS |
---|
28 | PP as CalcObject (Brief="External Physical Properties", File="vrpp"); |
---|
29 | Mw as positive (Brief = "Molar Mass", Unit = "kg/kmol"); |
---|
30 | NComp as Integer (Default= 1); |
---|
31 | |
---|
32 | SET |
---|
33 | PP.Components = ["water", "benzene"]; |
---|
34 | PP.LiquidModel = "PR"; |
---|
35 | PP.VapourModel = "PR"; |
---|
36 | PP.Derivatives = 0; |
---|
37 | NComp = PP.NumberOfComponents; |
---|
38 | HT1.Beta = 425e-6 * "1/K"; |
---|
39 | HT1.Meff = 0.95; |
---|
40 | HT1.Eff = 0.72; |
---|
41 | |
---|
42 | SPECIFY |
---|
43 | S1.F = 1000 * "kmol/h"; |
---|
44 | S1.P = 5 * "atm" ; |
---|
45 | S1.T = 298 * "K" ; |
---|
46 | S1.z = [1]; |
---|
47 | #HT1.Pdiff = 100 * "kPa"; |
---|
48 | HT1.Outlet.P = 1 * "atm"; |
---|
49 | |
---|
50 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.