source: trunk/sample/heat_exchangers/sampleLMTD.mso @ 114

Last change on this file since 114 was 100, checked in by gerson bicca, 16 years ago

updated

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
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* Sample file for model HeatExchanger_LMTD
17*--------------------------------------------------------------------
18*
19* This sample file needs VRTherm (www.vrtech.com.br) to run.
20*
21*----------------------------------------------------------------------
22* Author: Gerson B. Bicca
23* $Id: sampleLMTD.mso 100 2007-01-09 14:15:56Z bicca $
24*--------------------------------------------------------------------*#
25using "heat_exchangers/HeatExchangerSimplified.mso";
26
27FlowSheet LMTD_Method
28
29PARAMETERS
30
31PP               as CalcObject (Brief="Physical Properties",File="vrpp");
32NComp   as Integer;
33       
34
35       
36DEVICES
37exchanger       as HeatExchanger_LMTD;
38streamhot       as streamTP;
39streamcold  as streamTP;
40SET
41
42PP.LiquidModel          = "PR";
43PP.VapourModel          = "PR";
44PP.Components           = ["water","n-butane", "benzene", "n-octane" ];
45NComp                           = PP.NumberOfComponents;
46exchanger.HE.FlowDirection    = "Cocurrent";   
47CONNECTIONS
48
49streamhot       to exchanger.Inlet.Hot;
50streamcold      to exchanger.Inlet.Cold;
51       
52SPECIFY
53
54"LMTD Correction Factor"
55        exchanger.Fc = 1;
56       
57"Overall Heat Transfer Coefficient"     
58        exchanger.Details.Ud = 210*"W/(m^2*K)";
59        exchanger.Details.Uc = 210*"W/(m^2*K)";
60
61exchanger.PressureDrop.Hot.Pdrop        = 0.1*"kPa";
62exchanger.PressureDrop.Cold.Pdrop   = 0.2*"kPa";
63
64streamhot.F             = 20    * "kmol/h";
65streamhot.T             = 450     * "K";
66streamhot.P             = 120    * "kPa";
67streamhot.z             = [1,0,0,0];
68
69streamcold.F            = 10 * "kmol/h";
70streamcold.P            = 120 * "kPa";
71streamcold.T            = 300 * "K";   
72streamcold.z            = [0,0.5, 0.1, 0.4];
73
74exchanger.Outlet.Cold.T = 340*"K";
75       
76OPTIONS
77 mode                     = "steady";
78 end
Note: See TracBrowser for help on using the repository browser.