1 | #*------------------------------------------------------------------- |
---|
2 | * EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC. |
---|
3 | * |
---|
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 | * Author: Paula B. Staudt |
---|
17 | * $Id: tray.mso 848 2009-10-03 22:15:28Z rafael $ |
---|
18 | *--------------------------------------------------------------------*# |
---|
19 | |
---|
20 | using "streams"; |
---|
21 | |
---|
22 | Model trayBasic |
---|
23 | ATTRIBUTES |
---|
24 | Pallete = false; |
---|
25 | Icon = "icon/Tray"; |
---|
26 | Brief = "Basic equations of a tray column model."; |
---|
27 | Info = |
---|
28 | "This model contains only the main equations of a column tray equilibrium model without |
---|
29 | the hidraulic equations. |
---|
30 | |
---|
31 | == Assumptions == |
---|
32 | * both phases (liquid and vapour) exists all the time; |
---|
33 | * thermodymanic equilibrium with Murphree plate efficiency; |
---|
34 | * no entrainment of liquid or vapour phase; |
---|
35 | * no weeping; |
---|
36 | * the dymanics in the downcomer are neglected. |
---|
37 | "; |
---|
38 | |
---|
39 | PARAMETERS |
---|
40 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
41 | outer NComp as Integer; |
---|
42 | V as volume(Brief="Total Volume of the tray"); |
---|
43 | Q as heat_rate (Brief="Rate of heat supply"); |
---|
44 | Ap as area (Brief="Plate area = Atray - Adowncomer"); |
---|
45 | |
---|
46 | VARIABLES |
---|
47 | in Inlet as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); |
---|
48 | in InletL as stream (Brief="Inlet liquid stream", PosX=0.5195, PosY=0, Symbol="_{inL}"); |
---|
49 | in InletV as stream (Brief="Inlet vapour stream", PosX=0.4994, PosY=1, Symbol="_{inV}"); |
---|
50 | out OutletL as liquid_stream (Brief="Outlet liquid stream", PosX=0.8277, PosY=1, Symbol="_{outL}"); |
---|
51 | out OutletV as vapour_stream (Brief="Outlet vapour stream", PosX=0.8043, PosY=0, Symbol="_{outV}"); |
---|
52 | |
---|
53 | M(NComp) as mol (Brief="Molar Holdup in the tray"); |
---|
54 | ML as mol (Brief="Molar liquid holdup"); |
---|
55 | MV as mol (Brief="Molar vapour holdup"); |
---|
56 | E as energy (Brief="Total Energy Holdup on tray"); |
---|
57 | vL as volume_mol (Brief="Liquid Molar Volume"); |
---|
58 | vV as volume_mol (Brief="Vapour Molar volume"); |
---|
59 | Level as length (Brief="Height of clear liquid on plate"); |
---|
60 | yideal(NComp) as fraction; |
---|
61 | Emv as Real (Brief = "Murphree efficiency"); |
---|
62 | |
---|
63 | EQUATIONS |
---|
64 | "Component Molar Balance" |
---|
65 | diff(M)=Inlet.F*Inlet.z + InletL.F*InletL.z + InletV.F*InletV.z |
---|
66 | - OutletL.F*OutletL.z - OutletV.F*OutletV.z; |
---|
67 | |
---|
68 | "Energy Balance" |
---|
69 | diff(E) = ( Inlet.F*Inlet.h + InletL.F*InletL.h + InletV.F*InletV.h |
---|
70 | - OutletL.F*OutletL.h - OutletV.F*OutletV.h + Q ); |
---|
71 | |
---|
72 | "Molar Holdup" |
---|
73 | M = ML*OutletL.z + MV*OutletV.z; |
---|
74 | |
---|
75 | "Energy Holdup" |
---|
76 | E = ML*OutletL.h + MV*OutletV.h - OutletL.P*V; |
---|
77 | |
---|
78 | "Mol fraction normalisation" |
---|
79 | sum(OutletL.z)= 1.0; |
---|
80 | sum(OutletL.z)= sum(OutletV.z); |
---|
81 | |
---|
82 | "Liquid Volume" |
---|
83 | vL = PP.LiquidVolume(OutletL.T, OutletL.P, OutletL.z); |
---|
84 | "Vapour Volume" |
---|
85 | vV = PP.VapourVolume(OutletV.T, OutletV.P, OutletV.z); |
---|
86 | |
---|
87 | "Chemical Equilibrium" |
---|
88 | PP.LiquidFugacityCoefficient(OutletL.T, OutletL.P, OutletL.z)*OutletL.z = |
---|
89 | PP.VapourFugacityCoefficient(OutletV.T, OutletV.P, yideal)*yideal; |
---|
90 | |
---|
91 | "Murphree Efficiency" |
---|
92 | OutletV.z = Emv * (yideal - InletV.z) + InletV.z; |
---|
93 | |
---|
94 | "Thermal Equilibrium" |
---|
95 | OutletV.T = OutletL.T; |
---|
96 | |
---|
97 | "Mechanical Equilibrium" |
---|
98 | OutletV.P = OutletL.P; |
---|
99 | |
---|
100 | "Geometry Constraint" |
---|
101 | V = ML* vL + MV*vV; |
---|
102 | |
---|
103 | "Level of clear liquid over the weir" |
---|
104 | Level = ML*vL/Ap; |
---|
105 | end |
---|
106 | |
---|
107 | Model tray as trayBasic |
---|
108 | ATTRIBUTES |
---|
109 | Pallete = false; |
---|
110 | Icon = "icon/Tray"; |
---|
111 | Brief = "Complete model of a column tray."; |
---|
112 | Info = |
---|
113 | "== Specify == |
---|
114 | * the Feed stream |
---|
115 | * the Liquid inlet stream |
---|
116 | * the Vapour inlet stream |
---|
117 | * the Vapour outlet flow (OutletV.F) |
---|
118 | |
---|
119 | == Initial == |
---|
120 | * the plate temperature (OutletL.T) |
---|
121 | * the liquid height (Level) OR the liquid flow OutletL.F |
---|
122 | * (NoComps - 1) OutletL compositions |
---|
123 | |
---|
124 | == Options == |
---|
125 | You can choose the equation for the liquid outlet flow and the vapour |
---|
126 | inlet flow calculation through the VapourFlowModel and LiquidFlowModel |
---|
127 | switchers. |
---|
128 | |
---|
129 | == References == |
---|
130 | * ELGUE, S.; PRAT, L.; CABASSUD, M.; LANN, J. L.; CéZERAC, J. Dynamic models for start-up operations of batch distillation columns with experimental validation. Computers and Chemical Engineering, v. 28, p. 2735-2747, 2004. |
---|
131 | * FEEHERY, W. F. Dynamic Optimization with Path Constraints. Tese (Doutorado) - Massachusetts Institute of Technology, June 1998. |
---|
132 | * KLINGBERG, A. Modeling and Optimization of Batch Distillation. Dissertação (Mestrado) - Department of Automatic Control, Lund Institute of Technology, Lund, Sweden, fev. 2000. |
---|
133 | * OLSEN, I.; ENDRESTOL, G. O.; SIRA, T. A rigorous and efficient distillation column model for engineering and training simulators. Computers and Chemical Engineering,v. 21, n. Suppl, p. S193-S198, 1997. |
---|
134 | * REEPMEYER, F.; REPKE, J.-U.; WOZNY, G. Analysis of the start-up process for reactive distillation. Chemical Engineering Technology, v. 26, p. 81-86, 2003. |
---|
135 | * ROFFEL, B.; BETLEM, B.; RUIJTER, J. de. First principles dynamic modeling and multivariable control of a cryogenic distillation column process. Computers and Chemical Engineering, v. 24, p. 111-123, 2000. |
---|
136 | * WANG, L.; LI, P.; WOZNY, G.; WANG, S. A start-up model for simulation of batch distillation starting from a cold state. Computers and Chemical Engineering, v. 27, p.1485-1497, 2003. |
---|
137 | "; |
---|
138 | |
---|
139 | PARAMETERS |
---|
140 | Ah as area (Brief="Total holes area"); |
---|
141 | lw as length (Brief="Weir length"); |
---|
142 | g as acceleration (Default=9.81); |
---|
143 | hw as length (Brief="Weir height"); |
---|
144 | beta as fraction (Brief="Aeration fraction"); |
---|
145 | alfa as fraction (Brief="Dry pressure drop coefficient"); |
---|
146 | w as Real (Brief="Feehery correlation coefficient", Unit='1/m^4', Default=1); |
---|
147 | btray as Real (Brief="Elgue correlation coefficient", Unit='kg/m/mol^2', Default=1); |
---|
148 | fw as Real (Brief = "Olsen correlation coefficient", Default=1); |
---|
149 | Np as Real (Brief = "Number of liquid passes in the tray", Default=1); |
---|
150 | Mw(NComp) as molweight (Brief = "Component Mol Weight"); |
---|
151 | |
---|
152 | VapourFlow as Switcher(Valid = ["on", "off"], Default = "on"); |
---|
153 | LiquidFlow as Switcher(Valid = ["on", "off"], Default = "on"); |
---|
154 | VapourFlowModel as Switcher(Valid = ["Reepmeyer", "Feehery_Fv", "Roffel_Fv", "Klingberg", "Wang_Fv", "Elgue"], Default = "Reepmeyer"); |
---|
155 | LiquidFlowModel as Switcher(Valid = ["default", "Wang_Fl", "Olsen", "Feehery_Fl", "Roffel_Fl"], Default = "default"); |
---|
156 | |
---|
157 | SET |
---|
158 | Mw = PP.MolecularWeight(); |
---|
159 | |
---|
160 | VARIABLES |
---|
161 | rhoL as dens_mass; |
---|
162 | rhoV as dens_mass; |
---|
163 | |
---|
164 | EQUATIONS |
---|
165 | "Liquid Density" |
---|
166 | rhoL = PP.LiquidDensity(OutletL.T, OutletL.P, OutletL.z); |
---|
167 | "Vapour Density" |
---|
168 | rhoV = PP.VapourDensity(InletV.T, InletV.P, InletV.z); |
---|
169 | |
---|
170 | switch LiquidFlow |
---|
171 | case "on": |
---|
172 | switch LiquidFlowModel |
---|
173 | case "default": |
---|
174 | "Francis Equation" |
---|
175 | OutletL.F*vL = 1.84*'1/s'*lw*((Level-(beta*hw))/(beta))^2; |
---|
176 | |
---|
177 | case "Wang_Fl": |
---|
178 | OutletL.F*vL = 1.84*'m^0.5/s'*lw*((Level-(beta*hw))/(beta))^1.5; |
---|
179 | |
---|
180 | case "Olsen": |
---|
181 | OutletL.F / 'mol/s'= lw*Np*rhoL/sum(Mw*OutletV.z)/(0.665*fw)^1.5 * ((ML*sum(Mw*OutletL.z)/rhoL/Ap)-hw)^1.5 * 'm^0.5/mol'; |
---|
182 | |
---|
183 | case "Feehery_Fl": |
---|
184 | OutletL.F = lw*rhoL/sum(Mw*OutletL.z) * ((Level-hw)/750/'mm')^1.5 * 'm^2/s'; |
---|
185 | |
---|
186 | case "Roffel_Fl": |
---|
187 | OutletL.F = 2/3*rhoL/sum(Mw*OutletL.z)*lw*(ML*sum(Mw*OutletL.z)/(Ap*1.3)/rhoL)^1.5*sqrt(2*g/ |
---|
188 | (2*(1 - 0.3593/'Pa^0.0888545'*(OutletV.F*sum(Mw*OutletV.z)/(Ap*1.3)/sqrt(rhoV))^0.177709)-1)); |
---|
189 | end |
---|
190 | when Level < (beta * hw) switchto "off"; |
---|
191 | |
---|
192 | case "off": |
---|
193 | "Low level" |
---|
194 | OutletL.F = 0 * 'mol/h'; |
---|
195 | when Level > (beta * hw) + 1e-6*'m' switchto "on"; |
---|
196 | end |
---|
197 | |
---|
198 | switch VapourFlow |
---|
199 | case "on": |
---|
200 | switch VapourFlowModel |
---|
201 | case "Reepmeyer": |
---|
202 | InletV.F*vV = sqrt((InletV.P - OutletV.P)/(rhoV*alfa))*Ah; |
---|
203 | |
---|
204 | case "Feehery_Fv": |
---|
205 | InletV.F = rhoV/Ap/w/sum(Mw*OutletV.z) * sqrt(((InletV.P - OutletV.P)-(rhoV*g*ML*vL/Ap))/rhoV); |
---|
206 | |
---|
207 | case "Roffel_Fv": |
---|
208 | InletV.F^1.08 * 0.0013 * 'kg/m/mol^1.08/s^0.92*1e5' = (InletV.P - OutletV.P)*1e5 - (beta*sum(M*Mw)/(Ap*1.3)*g*1e5) * (rhoV*Ah/sum(Mw*OutletV.z))^1.08 * 'm^1.08/mol^1.08'; |
---|
209 | |
---|
210 | case "Klingberg": |
---|
211 | InletV.F * vV = Ap * sqrt(((InletV.P - OutletV.P)-rhoL*g*Level)/rhoV); |
---|
212 | |
---|
213 | case "Wang_Fv": |
---|
214 | InletV.F * vV = Ap * sqrt(((InletV.P - OutletV.P)-rhoL*g*Level)/rhoV*alfa); |
---|
215 | |
---|
216 | case "Elgue": |
---|
217 | InletV.F = sqrt((InletV.P - OutletV.P)/btray); |
---|
218 | end |
---|
219 | when InletV.F < 1e-6 * 'kmol/h' switchto "off"; |
---|
220 | |
---|
221 | case "off": |
---|
222 | InletV.F = 0 * 'mol/s'; |
---|
223 | when InletV.P > OutletV.P + Level*g*rhoL + 1e-1 * 'atm' switchto "on"; |
---|
224 | end |
---|
225 | |
---|
226 | end |
---|
227 | |
---|
228 | #*------------------------------------------------------------------- |
---|
229 | * Model of a tray with reaction |
---|
230 | *-------------------------------------------------------------------*# |
---|
231 | Model trayReact |
---|
232 | ATTRIBUTES |
---|
233 | Pallete = false; |
---|
234 | Icon = "icon/Tray"; |
---|
235 | Brief = "Model of a tray with reaction."; |
---|
236 | Info = |
---|
237 | "== Assumptions == |
---|
238 | * both phases (liquid and vapour) exists all the time; |
---|
239 | * thermodymanic equilibrium with Murphree plate efficiency; |
---|
240 | * no entrainment of liquid or vapour phase; |
---|
241 | * no weeping; |
---|
242 | * the dymanics in the downcomer are neglected. |
---|
243 | |
---|
244 | == Specify == |
---|
245 | * the Feed stream; |
---|
246 | * the Liquid inlet stream; |
---|
247 | * the Vapour inlet stream; |
---|
248 | * the Vapour outlet flow (OutletV.F); |
---|
249 | * the reaction related variables. |
---|
250 | |
---|
251 | == Initial == |
---|
252 | * the plate temperature (OutletL.T) |
---|
253 | * the liquid height (Level) OR the liquid flow OutletL.F |
---|
254 | * (NoComps - 1) OutletL compositions |
---|
255 | "; |
---|
256 | |
---|
257 | PARAMETERS |
---|
258 | outer PP as Plugin(Type="PP"); |
---|
259 | outer NComp as Integer; |
---|
260 | V as volume(Brief="Total Volume of the tray"); |
---|
261 | Q as power (Brief="Rate of heat supply"); |
---|
262 | Ap as area (Brief="Plate area = Atray - Adowncomer"); |
---|
263 | |
---|
264 | Ah as area (Brief="Total holes area"); |
---|
265 | lw as length (Brief="Weir length"); |
---|
266 | g as acceleration (Default=9.81); |
---|
267 | hw as length (Brief="Weir height"); |
---|
268 | beta as fraction (Brief="Aeration fraction"); |
---|
269 | alfa as fraction (Brief="Dry pressure drop coefficient"); |
---|
270 | |
---|
271 | stoic(NComp) as Real(Brief="Stoichiometric matrix"); |
---|
272 | Hr as energy_mol; |
---|
273 | Pstartup as pressure; |
---|
274 | |
---|
275 | VapourFlow as Switcher(Valid = ["on", "off"], Default = "off"); |
---|
276 | LiquidFlow as Switcher(Valid = ["on", "off"], Default = "off"); |
---|
277 | |
---|
278 | VARIABLES |
---|
279 | in Inlet as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); |
---|
280 | in InletL as stream (Brief="Inlet liquid stream", PosX=0.5195, PosY=0, Symbol="_{inL}"); |
---|
281 | in InletV as stream (Brief="Inlet vapour stream", PosX=0.4994, PosY=1, Symbol="_{inV}"); |
---|
282 | out OutletL as liquid_stream (Brief="Outlet liquid stream", PosX=0.8277, PosY=1, Symbol="_{outL}"); |
---|
283 | out OutletV as vapour_stream (Brief="Outlet vapour stream", PosX=0.8043, PosY=0, Symbol="_{outV}"); |
---|
284 | |
---|
285 | yideal(NComp) as fraction; |
---|
286 | Emv as Real (Brief = "Murphree efficiency"); |
---|
287 | |
---|
288 | M(NComp) as mol (Brief="Molar Holdup in the tray"); |
---|
289 | ML as mol (Brief="Molar liquid holdup"); |
---|
290 | MV as mol (Brief="Molar vapour holdup"); |
---|
291 | E as energy (Brief="Total Energy Holdup on tray"); |
---|
292 | vL as volume_mol (Brief="Liquid Molar Volume"); |
---|
293 | vV as volume_mol (Brief="Vapour Molar volume"); |
---|
294 | Level as length (Brief="Height of clear liquid on plate"); |
---|
295 | Vol as volume; |
---|
296 | |
---|
297 | rhoL as dens_mass; |
---|
298 | rhoV as dens_mass; |
---|
299 | r3 as reaction_mol (Brief = "Reaction resulting ethyl acetate", DisplayUnit = 'mol/l/s'); |
---|
300 | C(NComp) as conc_mol (Brief = "Molar concentration", Lower = -1); #, Unit = "mol/l"); |
---|
301 | |
---|
302 | EQUATIONS |
---|
303 | "Molar Concentration" |
---|
304 | OutletL.z = vL * C; |
---|
305 | |
---|
306 | "Reaction" |
---|
307 | r3 = exp(-7150*'K'/OutletL.T)*(4.85e4*C(1)*C(2) - 1.23e4*C(3)*C(4))*'l/mol/s'; |
---|
308 | |
---|
309 | "Component Molar Balance" |
---|
310 | diff(M)=Inlet.F*Inlet.z + InletL.F*InletL.z + InletV.F*InletV.z |
---|
311 | - OutletL.F*OutletL.z - OutletV.F*OutletV.z + stoic*r3*ML*vL; |
---|
312 | |
---|
313 | "Energy Balance" |
---|
314 | diff(E) = ( Inlet.F*Inlet.h + InletL.F*InletL.h + InletV.F*InletV.h |
---|
315 | - OutletL.F*OutletL.h - OutletV.F*OutletV.h + Q ) + Hr * r3 * vL*ML; |
---|
316 | |
---|
317 | "Molar Holdup" |
---|
318 | M = ML*OutletL.z + MV*OutletV.z; |
---|
319 | |
---|
320 | "Energy Holdup" |
---|
321 | E = ML*OutletL.h + MV*OutletV.h - OutletL.P*V; |
---|
322 | |
---|
323 | "Mol fraction normalisation" |
---|
324 | sum(OutletL.z)= 1.0; |
---|
325 | |
---|
326 | "Liquid Volume" |
---|
327 | vL = PP.LiquidVolume(OutletL.T, OutletL.P, OutletL.z); |
---|
328 | "Vapour Volume" |
---|
329 | vV = PP.VapourVolume(OutletV.T, OutletV.P, OutletV.z); |
---|
330 | |
---|
331 | "Thermal Equilibrium" |
---|
332 | OutletV.T = OutletL.T; |
---|
333 | |
---|
334 | "Mechanical Equilibrium" |
---|
335 | OutletV.P = OutletL.P; |
---|
336 | |
---|
337 | "Level of clear liquid over the weir" |
---|
338 | Level = ML*vL/Ap; |
---|
339 | |
---|
340 | Vol = ML*vL; |
---|
341 | |
---|
342 | "Liquid Density" |
---|
343 | rhoL = PP.LiquidDensity(OutletL.T, OutletL.P, OutletL.z); |
---|
344 | "Vapour Density" |
---|
345 | rhoV = PP.VapourDensity(InletV.T, InletV.P, InletV.z); |
---|
346 | |
---|
347 | switch LiquidFlow |
---|
348 | case "on": |
---|
349 | "Francis Equation" |
---|
350 | OutletL.F*vL = 1.84*'1/s'*lw*((Level-(beta*hw)+1e-6*'m')/(beta))^2; |
---|
351 | when Level < (beta * hw) switchto "off"; |
---|
352 | |
---|
353 | case "off": |
---|
354 | "Low level" |
---|
355 | OutletL.F = 0 * 'mol/h'; |
---|
356 | when Level > (beta * hw) + 1e-6*'m' switchto "on"; |
---|
357 | end |
---|
358 | |
---|
359 | switch VapourFlow |
---|
360 | case "on": |
---|
361 | #InletV.P = OutletV.P + Level*g*rhoL + rhoV*alfa*(InletV.F*vV/Ah)^2; |
---|
362 | InletV.F*vV = sqrt((InletV.P - OutletV.P - Level*g*rhoL + 1e-8 * 'atm')/(rhoV*alfa))*Ah; |
---|
363 | when InletV.P < OutletV.P + Level*g*rhoL switchto "off"; |
---|
364 | |
---|
365 | case "off": |
---|
366 | InletV.F = 0 * 'mol/s'; |
---|
367 | when InletV.P > OutletV.P + Level*g*rhoL + 3e-2 * 'atm' switchto "on"; |
---|
368 | #when InletV.P > OutletV.P + Level*beta*g*rhoL + 1e-2 * 'atm' switchto "on"; |
---|
369 | end |
---|
370 | |
---|
371 | "Chemical Equilibrium" |
---|
372 | PP.LiquidFugacityCoefficient(OutletL.T, OutletL.P, OutletL.z)*OutletL.z = |
---|
373 | PP.VapourFugacityCoefficient(OutletV.T, OutletV.P, yideal)*yideal; |
---|
374 | |
---|
375 | OutletV.z = Emv * (yideal - InletV.z) + InletV.z; |
---|
376 | |
---|
377 | sum(OutletL.z)= sum(OutletV.z); |
---|
378 | |
---|
379 | "Geometry Constraint" |
---|
380 | V = ML* vL + MV*vV; |
---|
381 | end |
---|
382 | |
---|
383 | #*------------------------------------- |
---|
384 | * Model of a packed column stage |
---|
385 | -------------------------------------*# |
---|
386 | Model packedStage |
---|
387 | ATTRIBUTES |
---|
388 | Pallete = false; |
---|
389 | Icon = "icon/PackedStage"; |
---|
390 | Brief = "Complete model of a packed column stage."; |
---|
391 | Info = |
---|
392 | "== Specify == |
---|
393 | * the Feed stream |
---|
394 | * the Liquid inlet stream |
---|
395 | * the Vapour inlet stream |
---|
396 | * the stage pressure drop (deltaP) |
---|
397 | |
---|
398 | == Initial == |
---|
399 | * the plate temperature (OutletL.T) |
---|
400 | * the liquid molar holdup ML |
---|
401 | * (NoComps - 1) OutletL compositions |
---|
402 | "; |
---|
403 | |
---|
404 | PARAMETERS |
---|
405 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
406 | outer NComp as Integer; |
---|
407 | |
---|
408 | V as volume(Brief="Total Volume of the tray"); |
---|
409 | Q as heat_rate (Brief="Rate of heat supply"); |
---|
410 | d as length (Brief="Column diameter"); |
---|
411 | |
---|
412 | a as Real (Brief="surface area per packing volume", Unit='m^2/m^3'); |
---|
413 | g as acceleration; |
---|
414 | e as Real (Brief="Void fraction of packing, m^3/m^3"); |
---|
415 | Mw(NComp) as molweight (Brief = "Component Mol Weight"); |
---|
416 | hs as length (Brief="Height of the packing stage"); |
---|
417 | Qsil as positive (Brief="Resistance coefficient on the liquid load", Default=0.6); |
---|
418 | |
---|
419 | VapourFlow as Switcher(Valid = ["on", "off"], Default = "on"); |
---|
420 | |
---|
421 | VARIABLES |
---|
422 | in Inlet as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); |
---|
423 | in InletL as stream (Brief="Inlet liquid stream", PosX=0.5195, PosY=0, Symbol="_{inL}"); |
---|
424 | in InletV as stream (Brief="Inlet vapour stream", PosX=0.4994, PosY=1, Symbol="_{inV}"); |
---|
425 | out OutletL as liquid_stream (Brief="Outlet liquid stream", PosX=0.8277, PosY=1, Symbol="_{outL}"); |
---|
426 | out OutletV as vapour_stream (Brief="Outlet vapour stream", PosX=0.8043, PosY=0, Symbol="_{outV}"); |
---|
427 | |
---|
428 | M(NComp) as mol (Brief="Molar Holdup in the tray", Default=0.01, Lower=0, Upper=100); |
---|
429 | ML as mol (Brief="Molar liquid holdup", Default=0.01, Lower=0, Upper=100); |
---|
430 | MV as mol (Brief="Molar vapour holdup", Default=0.01, Lower=0, Upper=100); |
---|
431 | E as energy (Brief="Total Energy Holdup on tray", Default=-500); |
---|
432 | vL as volume_mol (Brief="Liquid Molar Volume"); |
---|
433 | vV as volume_mol (Brief="Vapour Molar volume"); |
---|
434 | |
---|
435 | miL as viscosity (Brief="Liquid dynamic viscosity", DisplayUnit='kg/m/s'); |
---|
436 | rhoL as dens_mass; |
---|
437 | rhoV as dens_mass; |
---|
438 | |
---|
439 | deltaP as pressure(Lower=-10); |
---|
440 | |
---|
441 | uL as velocity (Brief="volume flow rate of liquid, m^3/m^2/s", Lower=0, Upper=100); |
---|
442 | uV as velocity (Brief="volume flow rate of vapor, m^3/m^2/s", Lower=0, Upper=100); |
---|
443 | Al as area (Brief="Area occupied by the liquid", Default=0.001, Upper=10); |
---|
444 | hl as positive (Brief="Column holdup", Unit='m^3/m^3', Default=0.04,Upper=1); |
---|
445 | |
---|
446 | SET |
---|
447 | Mw = PP.MolecularWeight(); |
---|
448 | |
---|
449 | EQUATIONS |
---|
450 | "Component Molar Balance" |
---|
451 | diff(M)=Inlet.F*Inlet.z + InletL.F*InletL.z + InletV.F*InletV.z |
---|
452 | - OutletL.F*OutletL.z - OutletV.F*OutletV.z; |
---|
453 | |
---|
454 | "Energy Balance" |
---|
455 | diff(E) = ( Inlet.F*Inlet.h + InletL.F*InletL.h + InletV.F*InletV.h |
---|
456 | - OutletL.F*OutletL.h - OutletV.F*OutletV.h + Q ); |
---|
457 | |
---|
458 | "Molar Holdup" |
---|
459 | M = ML*OutletL.z + MV*OutletV.z; |
---|
460 | |
---|
461 | "Energy Holdup" |
---|
462 | E = ML*OutletL.h + MV*OutletV.h - OutletL.P*V; |
---|
463 | |
---|
464 | "Mol fraction normalisation" |
---|
465 | sum(OutletL.z)= 1.0; |
---|
466 | sum(OutletL.z)=sum(OutletV.z); |
---|
467 | |
---|
468 | "Liquid Volume" |
---|
469 | vL = PP.LiquidVolume(OutletL.T, OutletL.P, OutletL.z); |
---|
470 | "Vapour Volume" |
---|
471 | vV = PP.VapourVolume(OutletV.T, OutletV.P, OutletV.z); |
---|
472 | |
---|
473 | "Chemical Equilibrium" |
---|
474 | PP.LiquidFugacityCoefficient(OutletL.T, OutletL.P, OutletL.z)*OutletL.z = |
---|
475 | PP.VapourFugacityCoefficient(OutletV.T, OutletV.P, OutletV.z)*OutletV.z; |
---|
476 | |
---|
477 | "Thermal Equilibrium" |
---|
478 | OutletV.T = OutletL.T; |
---|
479 | |
---|
480 | "Mechanical Equilibrium" |
---|
481 | OutletL.P = OutletV.P; |
---|
482 | |
---|
483 | "Geometry Constraint" |
---|
484 | V*e = ML*vL + MV*vV; |
---|
485 | |
---|
486 | "Liquid Density" |
---|
487 | rhoL = PP.LiquidDensity(OutletL.T, OutletL.P, OutletL.z); |
---|
488 | "Vapour Density" |
---|
489 | rhoV = PP.VapourDensity(InletV.T, InletV.P, InletV.z); |
---|
490 | "Liquid viscosity" |
---|
491 | miL = PP.LiquidViscosity(OutletL.T, OutletL.P, OutletL.z); |
---|
492 | |
---|
493 | "Area occupied by the liquid" |
---|
494 | Al = ML*vL/hs; |
---|
495 | |
---|
496 | "Volume flow rate of liquid, m^3/m^2/s" |
---|
497 | uL * Al = OutletL.F * vL; |
---|
498 | "Volume flow rate of vapor, m^3/m^2/s" |
---|
499 | uV * (V*e/hs - Al) = InletV.F * vV; |
---|
500 | |
---|
501 | "Liquid holdup" |
---|
502 | hl*V*e = ML*vL; |
---|
503 | |
---|
504 | "Liquid velocity as a function of liquid holdup, Billet (4-27)" |
---|
505 | hl^3 = (12/g) * a^2 * (miL/rhoL) * uL; |
---|
506 | |
---|
507 | switch VapourFlow |
---|
508 | case "on": |
---|
509 | "Pressure drop and Vapor flow, Billet (4-58)" |
---|
510 | deltaP/hs = Qsil * (a/2 + 2/d) * 1/((e-hl)^3) * (uV^2) * rhoV; |
---|
511 | |
---|
512 | when InletV.F < 1e-6 * 'kmol/h' switchto "off"; |
---|
513 | |
---|
514 | case "off": |
---|
515 | InletV.F = 0 * 'mol/s'; |
---|
516 | when deltaP > 1e-4 * 'atm' switchto "on"; |
---|
517 | end |
---|
518 | |
---|
519 | "Pressure profile" |
---|
520 | deltaP = InletV.P - OutletV.P; |
---|
521 | end |
---|
522 | |
---|
523 | #*------------------------------------- |
---|
524 | * Nonequilibrium Model |
---|
525 | -------------------------------------*# |
---|
526 | Model interface |
---|
527 | |
---|
528 | ATTRIBUTES |
---|
529 | Pallete = false; |
---|
530 | Icon = "icon/Tray"; |
---|
531 | Brief = "Descrition of variables of the equilibrium interface."; |
---|
532 | Info = |
---|
533 | "This model contains only the variables of the equilibrium interface."; |
---|
534 | |
---|
535 | PARAMETERS |
---|
536 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
537 | outer NComp as Integer; |
---|
538 | outer NC1 as Integer; |
---|
539 | |
---|
540 | VARIABLES |
---|
541 | NL(NComp) as flow_mol_delta (Brief = "Stream Molar Rate on Liquid Phase"); |
---|
542 | NV(NComp) as flow_mol_delta (Brief = "Stream Molar Rate on Vapour Phase"); |
---|
543 | T as temperature (Brief = "Stream Temperature"); |
---|
544 | P as pressure (Brief = "Stream Pressure"); |
---|
545 | x(NComp) as fraction (Brief = "Stream Molar Fraction on Liquid Phase"); |
---|
546 | y(NComp) as fraction (Brief = "Stream Molar Fraction on Vapour Phase"); |
---|
547 | a as area (Brief = "Interface Area"); |
---|
548 | htL as heat_trans_coeff (Brief = "Heat Transference Coefficient on Liquid Phase"); |
---|
549 | htV as heat_trans_coeff (Brief = "Heat Transference Coefficient on Vapour Phase"); |
---|
550 | E_liq as heat_rate (Brief = "Liquid Energy Rate at interface"); |
---|
551 | E_vap as heat_rate (Brief = "Vapour Energy Rate at interface"); |
---|
552 | hL as enth_mol (Brief = "Liquid Molar Enthalpy"); |
---|
553 | hV as enth_mol (Brief = "Vapour Molar Enthalpy"); |
---|
554 | kL(NC1,NC1) as velocity (Brief = "Mass Transfer Coefficients"); |
---|
555 | kV(NC1,NC1) as velocity (Brief = "Mass Transfer Coefficients"); |
---|
556 | |
---|
557 | EQUATIONS |
---|
558 | "Liquid Enthalpy" |
---|
559 | hL = PP.LiquidEnthalpy(T, P, x); |
---|
560 | |
---|
561 | "Vapour Enthalpy" |
---|
562 | hV = PP.VapourEnthalpy(T, P, y); |
---|
563 | |
---|
564 | end |
---|
565 | |
---|
566 | Model trayRateBasic |
---|
567 | ATTRIBUTES |
---|
568 | Pallete = false; |
---|
569 | Icon = "icon/Tray"; |
---|
570 | Brief = "Basic equations of a tray rate column model."; |
---|
571 | Info = |
---|
572 | "This model contains only the main equations of a column tray nonequilibrium model without |
---|
573 | the hidraulic equations. |
---|
574 | |
---|
575 | == Assumptions == |
---|
576 | * both phases (liquid and vapour) exists all the time; |
---|
577 | * no entrainment of liquid or vapour phase; |
---|
578 | * no weeping; |
---|
579 | * the dymanics in the downcomer are neglected. |
---|
580 | "; |
---|
581 | |
---|
582 | PARAMETERS |
---|
583 | outer PP as Plugin(Brief = "External Physical Properties", Type="PP"); |
---|
584 | outer NComp as Integer; |
---|
585 | NC1 as Integer; |
---|
586 | V as volume(Brief="Total Volume of the tray"); |
---|
587 | Q as heat_rate (Brief="Rate of heat supply"); |
---|
588 | Ap as area (Brief="Plate area = Atray - Adowncomer"); |
---|
589 | |
---|
590 | VARIABLES |
---|
591 | in Inlet as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); |
---|
592 | in InletFV as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); |
---|
593 | in InletL as stream (Brief="Inlet liquid stream", PosX=0.5195, PosY=0, Symbol="_{inL}"); |
---|
594 | in InletV as stream (Brief="Inlet vapour stream", PosX=0.4994, PosY=1, Symbol="_{inV}"); |
---|
595 | out OutletL as liquid_stream (Brief="Outlet liquid stream", PosX=0.8277, PosY=1, Symbol="_{outL}"); |
---|
596 | out OutletV as vapour_stream (Brief="Outlet vapour stream", PosX=0.8043, PosY=0, Symbol="_{outV}"); |
---|
597 | |
---|
598 | M_liq(NComp) as mol (Brief="Liquid Molar Holdup in the tray"); |
---|
599 | M_vap(NComp) as mol (Brief="Vapour Molar Holdup in the tray"); |
---|
600 | ML as mol (Brief="Molar liquid holdup"); |
---|
601 | MV as mol (Brief="Molar vapour holdup"); |
---|
602 | E_liq as energy (Brief="Total Liquid Energy Holdup on tray"); |
---|
603 | E_vap as energy (Brief="Total Vapour Energy Holdup on tray"); |
---|
604 | vL as volume_mol (Brief="Liquid Molar Volume"); |
---|
605 | vV as volume_mol (Brief="Vapour Molar volume"); |
---|
606 | Level as length (Brief="Height of clear liquid on plate"); |
---|
607 | interf as interface; |
---|
608 | |
---|
609 | SET |
---|
610 | NC1=NComp-1; |
---|
611 | |
---|
612 | EQUATIONS |
---|
613 | "Component Molar Balance" |
---|
614 | diff(M_liq)=Inlet.F*Inlet.z + InletL.F*InletL.z |
---|
615 | - OutletL.F*OutletL.z + interf.NL; |
---|
616 | |
---|
617 | diff(M_vap)=InletFV.F*InletFV.z + InletV.F*InletV.z |
---|
618 | - OutletV.F*OutletV.z - interf.NV; |
---|
619 | |
---|
620 | "Energy Balance" |
---|
621 | diff(E_liq) = Inlet.F*Inlet.h + InletL.F*InletL.h |
---|
622 | - OutletL.F*OutletL.h + Q + interf.E_liq; |
---|
623 | |
---|
624 | diff(E_vap) = InletFV.F*InletFV.h + InletV.F*InletV.h |
---|
625 | - OutletV.F*OutletV.h - interf.E_vap; |
---|
626 | |
---|
627 | "Molar Holdup" |
---|
628 | M_liq = ML*OutletL.z; |
---|
629 | |
---|
630 | M_vap = MV*OutletV.z; |
---|
631 | |
---|
632 | "Energy Holdup" |
---|
633 | E_liq = ML*(OutletL.h - OutletL.P*vL); |
---|
634 | |
---|
635 | E_vap = MV*(OutletV.h - OutletV.P*vV); |
---|
636 | |
---|
637 | "Energy Rate through the interface" |
---|
638 | interf.E_liq = interf.htL*interf.a*(interf.T-OutletL.T)+sum(interf.NL)*interf.hL; |
---|
639 | |
---|
640 | interf.E_vap = interf.htV*interf.a*(OutletV.T-interf.T)+sum(interf.NV)*interf.hV; |
---|
641 | |
---|
642 | "Mass Conservation" |
---|
643 | interf.NL = interf.NV; |
---|
644 | |
---|
645 | "Energy Conservation" |
---|
646 | interf.E_liq = interf.E_vap; |
---|
647 | |
---|
648 | "Mol fraction normalisation" |
---|
649 | sum(OutletL.z)= 1.0; |
---|
650 | sum(OutletL.z)= sum(OutletV.z); |
---|
651 | sum(interf.x)=1.0; |
---|
652 | sum(interf.x)=sum(interf.y); |
---|
653 | |
---|
654 | "Liquid Volume" |
---|
655 | vL = PP.LiquidVolume(OutletL.T, OutletL.P, OutletL.z); |
---|
656 | "Vapour Volume" |
---|
657 | vV = PP.VapourVolume(OutletV.T, OutletV.P, OutletV.z); |
---|
658 | |
---|
659 | "Chemical Equilibrium" |
---|
660 | PP.LiquidFugacityCoefficient(interf.T, interf.P, interf.x)*interf.x = |
---|
661 | PP.VapourFugacityCoefficient(interf.T, interf.P, interf.y)*interf.y; |
---|
662 | |
---|
663 | "Geometry Constraint" |
---|
664 | V = ML*vL + MV*vV; |
---|
665 | |
---|
666 | "Level of clear liquid over the weir" |
---|
667 | Level = ML*vL/Ap; |
---|
668 | |
---|
669 | "Total Mass Transfer Rates" |
---|
670 | interf.NL(1:NC1)=interf.a*sumt(interf.kL*(interf.x(1:NC1)-OutletL.z(1:NC1)))/vL+ |
---|
671 | OutletL.z(1:NC1)*sum(interf.NL); |
---|
672 | |
---|
673 | # interf.NL(1:NC1)=0.01*'kmol/s'; |
---|
674 | |
---|
675 | interf.NV(1:NC1)=interf.a*sumt(interf.kV*(OutletV.z(1:NC1)-interf.y(1:NC1)))/vV+ |
---|
676 | OutletV.z(1:NC1)*sum(interf.NV); |
---|
677 | |
---|
678 | "Mechanical Equilibrium" |
---|
679 | OutletV.P = OutletL.P; |
---|
680 | interf.P=OutletL.P; |
---|
681 | end |
---|
682 | |
---|
683 | Model trayRate as trayRateBasic |
---|
684 | ATTRIBUTES |
---|
685 | Pallete = false; |
---|
686 | Icon = "icon/Tray"; |
---|
687 | Brief = "Complete rate model of a column tray."; |
---|
688 | Info = |
---|
689 | "== Specify == |
---|
690 | * the Feed stream |
---|
691 | * the Liquid inlet stream |
---|
692 | * the Vapour inlet stream |
---|
693 | * the Vapour outlet flow (OutletV.F) |
---|
694 | |
---|
695 | == Initial == |
---|
696 | * the plate temperature of both phases (OutletL.T and OutletV.T) |
---|
697 | * the liquid height (Level) OR the liquid flow holdup (ML) |
---|
698 | * the vapor holdup (MV) |
---|
699 | * (NoComps - 1) OutletL compositions |
---|
700 | "; |
---|
701 | |
---|
702 | PARAMETERS |
---|
703 | Ah as area (Brief="Total holes area"); |
---|
704 | lw as length (Brief="Weir length"); |
---|
705 | g as acceleration (Default=9.81); |
---|
706 | hw as length (Brief="Weir height"); |
---|
707 | beta as fraction (Brief="Aeration fraction"); |
---|
708 | alfa as fraction (Brief="Dry pressure drop coefficient"); |
---|
709 | |
---|
710 | VapourFlow as Switcher(Valid = ["on", "off"], Default = "on"); |
---|
711 | LiquidFlow as Switcher(Valid = ["on", "off"], Default = "on"); |
---|
712 | |
---|
713 | VARIABLES |
---|
714 | rhoL as dens_mass; |
---|
715 | rhoV as dens_mass; |
---|
716 | |
---|
717 | EQUATIONS |
---|
718 | "Liquid Density" |
---|
719 | rhoL = PP.LiquidDensity(OutletL.T, OutletL.P, OutletL.z); |
---|
720 | "Vapour Density" |
---|
721 | rhoV = PP.VapourDensity(InletV.T, InletV.P, InletV.z); |
---|
722 | |
---|
723 | switch LiquidFlow |
---|
724 | case "on": |
---|
725 | "Francis Equation" |
---|
726 | # OutletL.F*vL = 1.84*'m^0.5/s'*lw*((Level-(beta*hw))/(beta))^1.5; |
---|
727 | OutletL.F*vL = 1.84*'1/s'*lw*((Level-(beta*hw))/(beta))^2; |
---|
728 | when Level < (beta * hw) switchto "off"; |
---|
729 | |
---|
730 | case "off": |
---|
731 | "Low level" |
---|
732 | OutletL.F = 0 * 'mol/h'; |
---|
733 | when Level > (beta * hw) + 1e-6*'m' switchto "on"; |
---|
734 | end |
---|
735 | |
---|
736 | switch VapourFlow |
---|
737 | case "on": |
---|
738 | InletV.F*vV = sqrt((InletV.P - OutletV.P)/(rhoV*alfa))*Ah; |
---|
739 | when InletV.F < 1e-6 * 'kmol/h' switchto "off"; |
---|
740 | |
---|
741 | case "off": |
---|
742 | InletV.F = 0 * 'mol/s'; |
---|
743 | when InletV.P > OutletV.P + Level*g*rhoL + 1e-1 * 'atm' switchto "on"; |
---|
744 | end |
---|
745 | end |
---|