[79] | 1 | #*------------------------------------------------------------------- |
---|
| 2 | * EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC. |
---|
[1] | 3 | * |
---|
[79] | 4 | * This LIBRARY is free software; you can distribute it and/or modify |
---|
| 5 | * it under the therms of the ALSOC FREE LICENSE as available at |
---|
| 6 | * http://www.enq.ufrgs.br/alsoc. |
---|
| 7 | * |
---|
| 8 | * EMSO Copyright (C) 2004 - 2007 ALSOC, original code |
---|
| 9 | * from http://www.rps.eng.br Copyright (C) 2002-2004. |
---|
| 10 | * All rights reserved. |
---|
| 11 | * |
---|
| 12 | * EMSO is distributed under the therms of the ALSOC LICENSE as |
---|
| 13 | * available at http://www.enq.ufrgs.br/alsoc. |
---|
| 14 | * |
---|
| 15 | *-------------------------------------------------------------------- |
---|
| 16 | * Model of basic streams |
---|
[1] | 17 | *---------------------------------------------------------------------- |
---|
[79] | 18 | * Author: Paula B. Staudt and Rafael de P. Soares |
---|
[1] | 19 | * $Id: streams.mso 123 2007-01-19 14:03:14Z rafael $ |
---|
| 20 | *---------------------------------------------------------------------*# |
---|
| 21 | |
---|
| 22 | using "types"; |
---|
| 23 | |
---|
| 24 | Model stream |
---|
[117] | 25 | ATTRIBUTES |
---|
| 26 | Pallete = false; |
---|
| 27 | Brief = "General Material Stream"; |
---|
[123] | 28 | Info = |
---|
[117] | 29 | "This is the basic building block for the EML models. |
---|
| 30 | Every model should have input and output streams derived |
---|
| 31 | from this model."; |
---|
| 32 | |
---|
[1] | 33 | PARAMETERS |
---|
[117] | 34 | outer NComp as Integer (Brief = "Number of chemical components", Lower = 1); |
---|
[1] | 35 | |
---|
| 36 | VARIABLES |
---|
| 37 | F as flow_mol; |
---|
| 38 | T as temperature; |
---|
| 39 | P as pressure; |
---|
[117] | 40 | z(NComp) as fraction(Brief = "Overall Molar Fraction"); |
---|
[1] | 41 | h as enth_mol; |
---|
[117] | 42 | v as fraction(Brief = "Vapourisation fraction"); |
---|
[1] | 43 | end |
---|
| 44 | |
---|
[117] | 45 | Model liquid_stream as stream |
---|
| 46 | ATTRIBUTES |
---|
| 47 | Pallete = false; |
---|
| 48 | Brief = "Liquid Material Stream"; |
---|
[123] | 49 | Info = |
---|
[117] | 50 | "Model for liquid material streams. |
---|
| 51 | This model should be used only when the phase of the stream |
---|
| 52 | is known ''a priori''."; |
---|
| 53 | |
---|
[1] | 54 | PARAMETERS |
---|
[117] | 55 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
[1] | 56 | |
---|
| 57 | EQUATIONS |
---|
[117] | 58 | "Liquid Enthalpy" |
---|
| 59 | h = PP.LiquidEnthalpy(T, P, z); |
---|
| 60 | "Liquid stream" |
---|
| 61 | v = 0; |
---|
[1] | 62 | end |
---|
| 63 | |
---|
[117] | 64 | Model vapour_stream as stream |
---|
| 65 | ATTRIBUTES |
---|
| 66 | Pallete = false; |
---|
| 67 | Brief = "Vapour Material Stream"; |
---|
[123] | 68 | Info = |
---|
[117] | 69 | "Model for vapour material streams. |
---|
| 70 | This model should be used only when the phase of the stream |
---|
| 71 | is known ''a priori''."; |
---|
| 72 | |
---|
[1] | 73 | PARAMETERS |
---|
[117] | 74 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
[1] | 75 | |
---|
| 76 | EQUATIONS |
---|
[117] | 77 | "Vapour Enthalpy" |
---|
| 78 | h = PP.VapourEnthalpy(T, P, z); |
---|
| 79 | "Vapour stream" |
---|
| 80 | v = 1; |
---|
[1] | 81 | end |
---|
| 82 | |
---|
[117] | 83 | Model source |
---|
| 84 | ATTRIBUTES |
---|
[123] | 85 | Info = |
---|
[117] | 86 | "Material stream source. |
---|
| 87 | This model should be used for boundary streams. |
---|
| 88 | Usually these streams are known and come from another process |
---|
| 89 | units."; |
---|
| 90 | |
---|
| 91 | PARAMETERS |
---|
| 92 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
| 93 | outer NComp as Integer (Brief = "Number of chemical components", Lower = 1); |
---|
| 94 | |
---|
| 95 | VARIABLES |
---|
| 96 | out Outlet as stream; |
---|
| 97 | x(NComp) as fraction(Brief = "Liquid Molar Fraction"); |
---|
| 98 | y(NComp) as fraction(Brief = "Vapour Molar Fraction"); |
---|
[123] | 99 | hl as enth_mol; |
---|
| 100 | hv as enth_mol; |
---|
[117] | 101 | |
---|
| 102 | EQUATIONS |
---|
| 103 | "Flash Calculation" |
---|
| 104 | [Outlet.v, x, y] = PP.Flash(Outlet.T, Outlet.P, Outlet.z); |
---|
| 105 | "Overall Enthalpy" |
---|
| 106 | Outlet.h = (1-Outlet.v)*PP.LiquidEnthalpy(Outlet.T, Outlet.P, x) + |
---|
| 107 | Outlet.v*PP.VapourEnthalpy(Outlet.T, Outlet.P, y); |
---|
[123] | 108 | |
---|
| 109 | hl = PP.LiquidEnthalpy(Outlet.T, Outlet.P, x); |
---|
| 110 | hv = PP.VapourEnthalpy(Outlet.T, Outlet.P, y); |
---|
[117] | 111 | end |
---|
| 112 | |
---|
[123] | 113 | Model sink2 |
---|
| 114 | VARIABLES |
---|
| 115 | in Inlet as stream; |
---|
| 116 | end |
---|
| 117 | |
---|
[117] | 118 | Model sink |
---|
| 119 | ATTRIBUTES |
---|
[123] | 120 | Info = |
---|
[117] | 121 | "Material stream sink. |
---|
| 122 | This model should be used for boundary streams."; |
---|
| 123 | |
---|
| 124 | PARAMETERS |
---|
| 125 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
| 126 | outer NComp as Integer (Brief = "Number of chemical components", Lower = 1); |
---|
| 127 | |
---|
| 128 | VARIABLES |
---|
| 129 | in Inlet as stream; |
---|
| 130 | v as fraction; |
---|
| 131 | x(NComp) as fraction(Brief = "Liquid Molar Fraction"); |
---|
| 132 | y(NComp) as fraction(Brief = "Vapour Molar Fraction"); |
---|
| 133 | |
---|
| 134 | EQUATIONS |
---|
| 135 | "Flash Calculation" |
---|
[123] | 136 | [v, x, y] = PP.FlashPH(Inlet.P, Inlet.h, Inlet.z); |
---|
[117] | 137 | end |
---|