source: branches/new_gui/sample/stage_separators/sample_flash_steady.mso

Last change on this file was 894, checked in by gerson bicca, 14 years ago

fixed

File size: 1.2 KB
Line 
1#*----------------------------------------------
2* FlowSheet generated automaticaly by EMSO-GUI
3*----------------------------------------------*#
4
5using "streams/streams";
6using "streams/sources";
7using "streams/sinks";
8using "stage_separators/flash";
9
10FlowSheet sample_flash_steady
11        PARAMETERS
12        PP as Plugin(Brief="Physical Properties",
13                Type="PP",
14                Components = ["n-butane","benzene","n-octane"],
15                LiquidModel = "SRK",
16                VapourModel = "SRK"
17        );
18        NComp as Integer;
19        SET
20        NComp = PP.NumberOfComponents;
21
22        DEVICES
23        Heat as energy_source;
24        Feed as simple_source;
25        VaporProduct as sink;
26        LiquidProduct as sink;
27        flash_steady_1 as flash_steady;
28
29        CONNECTIONS
30        flash_steady_1.OutletVapour to VaporProduct.Inlet;
31        flash_steady_1.OutletLiquid to LiquidProduct.Inlet;
32        Feed.Outlet to flash_steady_1.Inlet;
33        Heat.OutletQ to flash_steady_1.InletQ;
34
35        SET
36        Feed.ValidPhases = "Vapour-Liquid";
37
38        SPECIFY
39        Feed.MolarComposition(1) = 0.3;
40        Feed.MolarComposition(2) = 0.3;
41        Feed.MolarComposition(3) = 0.4;
42        Feed.F = 622.84 * 'kmol/h';
43        Feed.T_Cdeg = 64.85 * 'K';
44        Feed.P = 5 * 'atm';
45
46        flash_steady_1.OutletLiquid.T = 330 * 'K';
47        flash_steady_1.OutletLiquid.P = 0.6 * 'atm';
48
49        OPTIONS
50        Dynamic = false;
51end
Note: See TracBrowser for help on using the repository browser.