CHEMICAL ENGINEERING TRANSACTIONS VOL. 61, 2017 A publication of The Italian Association of Chemical Engineering Online at www.aidic.it/cet Guest Editors: Petar S Varbanov, Rongxin Su, Hon Loong Lam, Xia Liu, Jiří J Klemeš Copyright © 2017, AIDIC Servizi S.r.l. ISBN 978-88-95608-51-8; ISSN 2283-9216 Particle Swarm Algorithm with Adaptive Constraint Handling Technique for Heat Exchanger Network Synthesis Zhaoyi Huoa,*, Xiaoling Zhangb aSchool of Material and Metallurgy, University of Science and Technology, Anshan, Liaoning 114051, China bAnsteel Engineering Technology Corporation Limited, Anshan, Liaoning 114021, China hzy10710010@163.com The heat exchanger networks synthesis (HENS) still remains an open problem due to its non-linear characteristics but also due to a great number of local optima in its solution space. This paper deals with the development of effective techniques to generate optimal heat exchanger network(HEN) automatically aiming to simultaneously balance the energy recovery target and investment costs. The optimization formulations of such a problem turn out to be a non-convex NLP/MINLP problem with equality and inequality constraints. The stochastic or meta-heuristic optimization algorithms seem to have some special advantages for the synthesis of complex HENS. However, one of the major issues for stochastic algorithms is how to handle the constraints. In this paper, we develop a robust particle swarm algorithm coupled with a novel adaptive constraint-handling technique to search for the global optimum of these formulations. The problem can be transformed into with no equality constraints through analyzing and tearing equality constraints. Two Classic HENS problems are performed to prove the applicability and efficiency of the proposed algorithm. 1. Introduction The optimal design for heat exchanger network (HEN) continues to be a major challenge throughout the world, due to its importance in energy-saving and environmental protection policies in process industry. The Synthesis/Retrofit of HEN is essentially a MINLP problem. To overcome nonlinear-problem solving difficulty in the MINLP model, effective initialization strategy and solution strategy are necessary (Koraviyotin and Siemanond, 2015). Many efficient optimization methods are developed for HEN synthesis (HENS), which can be grouped into three major categories: pinch analysis methods, mathematical programming methods and stochastic optimization methods (Gorji-Bandpy et al., 2011). Stochastic optimization methods do not suffer from the NP-hardness of the problem, and thus they are considered to be suitable for complex HENS problems (Zhang et al., 2016). Simulated annealing approach (SA) (Cardoso et al., 1997), genetic algorithm (GA) (Lewin, 1998), different evolution (DE) (Yerramsetty and Murty, 2008), Tabu search algorithm (Lin and Miller, 2004), randomized algorithm (Pariyani et al., 2006), and particle swarm algorithm (PSO) (Silva et al., 2006) are widely used for dealing with HENS problems. These algorithms do not depend on gradients and work on function evaluation alone. PSO is a population based stochastic optimization technique developed by Kennedy and Eberhart (1995), inspired by social behaviour of bird flocking, fish schooling and swarm theory. Comparing with other stochastic algorithms, PSO is simple in concept. It has few parameters to adjust and is easy to implement. However, since the plain PSO algorithm does not handle constraints on its own, an adaptive constraint-handling technique (CHT) need to be developed and integrated into the optimizer (Luo et al., 2007). A novel optimization strategy based on PSO algorithm is developed in this paper for solving HENS problem. For the solution of test previous works, the proposed PSO method shows a superior performance in overcoming local optima and improving efficiency. 2. HENS problem formulation The general simultaneous MINLP formulation first presented by Yee and Grossmann (1990) can be written as shown in Eq(1), based on the stage-wise superstructure representation. The stage-wise superstructure consists DOI: 10.3303/CET1761194 Please cite this article as: Huo Z., Zhang X., 2017, Particle swarm algorithm with adaptive constraint handling technique for heat exchanger network synthesis, Chemical Engineering Transactions, 61, 1177-1182 DOI:10.3303/CET1761194 1177 of several stages. At each stage, hot and cold streams are split to allow the potential existence of a heat exchanger to match any hot-cold pair of streams, and at the end of the stage, a mixer combines all split streams back into on single stream for the next stage without the assumption of isothermal mixing. For simplicity in the presentation, the utilities are placed on the extreme ends of the superstructure and no stream bypass exists. The number of stages can be selected at random or set by the designer.   ,CUMinimize , , ,CU ,CU 1 1 1 1 HU, HU, HU, 1 1 1 to BHN CN KN HN Bij iCF z C Ae CF zcu C Acu ij ijk i j k i i i i i j k i BCN HN CN j CF zhu C Ahu CCUqcu CHUqhu j j j j i j j i j Subject tph i                                                  , , ,in , , ,out , , , , , , ,out , , ,in , , , , , , , , , , 1 , , , , , , 1 1,2, , ; 1,2, , ; 1,2, , tph Fph q j k i j k i j k i j k tpc tpc Fpc q j i k j i k j i k i j k CN Fh t Fph tph i i k i j k i j k out j HN Fc t Fpc tpc j j k j i k j i k out i i HN j CN k KN                                         (1) where q, qhu and qcu are the heat load of the stream matches, hot utilities and cold utilities respectively; tph and tpc are branch temperatures of hot and cold streams relatively; Fph, Fpc are branch heat capacities of hot and cold streams relatively; Fh, Fc are total heat capacities of hot and cold streams relatively; The subscript in and out represent inlet and outlet of heat exchangers relatively; CF is fixed charge for exchangers; C is area cost coefficient; B is exponent for area cost; Ae, Acu, Ahu are area of heat exchangers, heaters and coolers respectively; z, zcu, zhu are binary variables representing the existence of heat exchangers, heaters and coolers respectively; The subscript HU and CU identify hot utility and cold utility; i represents index for hot process stream, j represents index for cold streams, k represents index for stages in the superstructure; HN is the number of hot process streams, CN is the number of cold process streams, KN is the number of stages. 3. Particle swarm optimization 3.1 The particle swarm optimization algorithm In the standard PSO, each individual is called a particle and a group of particles forms a swarm. Assume that a swarm consists of m particles, each of which is a D-dimensional vector denoted by Xid = (xi1, xi2, …, xiD)(I = 1, 2, … , m). The particles’ fitness could be calculated through position vectors using objective function. Pbestid = (pbesti1, pbesti2, … , pbestiD) represents the best position of the ith particle and Gbesti = (gbest1, gbest2, … , gbestD) indicates the best position in the swarm. Let vid be the velocity vector for the particle i (i=1, 2, … , m), then the update of each particle and its velocity can be carried out by the following equations:    ( 1) ( 1) ( ) ( ) ( ) ( )11 2 2v t w t v t c r Pbest t x t c r Gbest x tid id id id i id       (2) ( 1) ( ) ( 1)x t x t v t id id id     (3) where c1 and c2 are two positive constants, called the cognitive and social acceleration coefficients, respectively; r1 and r2 represent uniform random numbers between 0 and 1; w is an inertia weight controlling the influence of previous velocity on the new velocity. 3.2 Equality constrain handing process The usual way of dealing with constraints is by penalizing infeasible solutions. However, the performance of usual handling methods is not satisfactory for the HENS problems with heavy equality constraints. The point of this section is thus to propose an adequate method of handing equality constrains to improve the optimization efficiency. The first important work is to identify the independent variables, and then the reduced variables should be solved directly through the equality constraints. For HENS problems, identifying the reduced variables is a very complex work. In our work, through analyzing equality constraints, the split heat capacity flows and temperatures are assigned to independent variables. Therefore, these variables can be generated randomly and optimized through algorithm directly. The dependent variables should be expressed and calculated as follows: 1178 (1) Heat load for each exchanger Based on split stream heat flows and outlet temperatures of the cold stream, the heat loads between the hot stream i and the cold stream j in stage k is determined by Eq(4), which is the potential heat exchanging load when exchanger minimum temperature approach (EMAT) is set for each exchanger.         , , , , , , , , , , , min , , , , , , , , , , , , , , , , , , , , , , , , , min , , if Fph Fpc i j k i j k Fph tph Th i j k i j k in i out q i j k Fpc tpc Tc i j k i j k out j in else Fph tph Th i j k i j k in i out Fpc tpc Tc i j k i j k out j in tph EMAT tpc i j k in i q i j k                    , , , 1 1 , , , , j k out Fph Fpc i j k i j k end                       (4) (2) The stream temperatures at each stage The outlet temperatures of stages can be calculated through the equality constraints of energy balances for each mixer by Eq(5)-(6). , , , , , 1 , , CN Fph tph i j k i j k out j th i k out Fh i    (5) , , , , , 1 , , HN Fpc tpc i j k i j k out itc j k out Fc j   (6) In most cases, the calculated temperature difference exists between adjacent stages due to independent optimization for split heat capacity flows and temperatures, which can not satisfy the equality constraints. To get feasible solutions, the split temperatures need to be adjusted reasonably according to constraints. In this work, the minimum temperature between two adjacent stages is chosen as the final value. Then the corresponding split temperatures should be reduced by the calculated temperature difference while other parameters of stream matches can be guaranteed. 4. Case studies The proposed particle swarm algorithm coupled with a novel adaptive constraint-handling technique in this work has been applied to two medium-scale HENS problems reported in the published literature. The algorithm was implemented in a Matlab program running under Windows 7 system on Intel core i5 2.4GHz having 4 GB RAM. 4.1 Case 1 This case originally proposed by Linnhoff and Flower (1978) consists of five hot and five cold streams. It is also a popular problem studied by many researchers. The input data is summarized in Table 1. To get a better cost- optimal solution, there are many critical factors that need to be investigated and be set reasonably. In this case, the number of stages is set to 3 and the potential number of branches in each stage is set to 2. EMAT is originally set to 5 K and can be arranged to suit constraints in the searching procedure. Through numerous experiments, the optimal solution can be found reliably when the population size of PSO is set to 100 and the maximum iteration times is set to 5,000. The final structure was found after average computation time of 1,550 s, shown in Figure 1. It can be observed that the actual EMAT is 17.25 K, which is greater obviously than the initial value. In the optimal structure, the splitting matches H3-C3 and H3-C5 only exists in stage 1 with an isothermal mixing, although the non-isothermal mixing is considered in this work. The total annual cost for the obtained network is $43,422, which is only slightly larger than that obtained by Lin and Miller. The comparison between the results obtained from this paper and those obtained by other researchers is presented in table 2. 1179 Table 1: Problem data for case 1 Stream Tin(K) Tout(K) F(kW·K-1) H1 433 366 8.79 H2 522 411 10.55 H3 544 422 12.56 H4 500 339 14.77 H5 472 339 17.73 C1 355 450 17.28 C2 366 478 13.90 C3 311 494 8.44 C4 333 433 7.62 C5 389 495 6.08 Steam 509 509 - Cold water 311 355 - Cost data Exchanger annual cost: 145.63A0.6 Cost of hot utility: 37.64 $·kW-1·y-1 Cost of cold utility: 18.12 $·kW-1·y-1 Heat transfer coefficient for all matches involving utilities:1.136 kW·m-2·K-1 Heat transfer coefficient for all matches involving steam:0.852 kW·m-2·K-1 Figure 1: Optimal network for case 1 Table 2: Optimal results for case 1 Method No. of units qcu(kW) Total annual cost($) Linnhoff and Flower (1978) 10 1,975 43,934 Lewin et al. (1998) 10 1,879 43,452 Lin and Miller (2004) 10 1,879 43,329 Pariyani et al. (2006) 10 1,879 43,439 Yerramsetty and Murty (2008) 10 1,879 43,538 This work 10 1,879 43,422 4.2 Case 2 This case is the popular Aromatics plant problem, studied by many researchers, which involves four hot and five cold streams with hot oil and cold water as utilities. The supplying data for the problem is presented in Table 3. The maximum number of stages is initially set to 4. The maximum number of split-stream for each stream is assigned to 2. EMAT is fixed temporarily at 5 K for this problem. The parameters of the PSO are the same as those of case 1. 1180 Table 3: Problem data for case 2 Stream Tin(K) Tout(K) F(kW·K-1) h(kW·m-2·K-1) H1 600 313 100 0.50 H2 493 433 160 0.40 H3 493 333 60 0.14 H4 433 318 400 0.30 C1 373 573 100 0.35 C2 308 437 70 0.70 C3 358 411 350 0.50 C4 333 443 60 0.14 C5 413 573 200 0.60 Hot oil 603 523 - 0.50 Water 288 303 - 0.50 Cost data Exchanger annual cost: 2,000+70A Cost of hot utility: 60 $·kW-1·y-1 Cost of cold utility: 6 $·kW-1·y-1 Table 4: Optimal results for case 2 Methods No. of units Total heat exchanger area (m2) qhu (MW) qcu (MW) Total annual cost (M$) Linhoff and Ahmad (1990) 13 17,400 25.31 33.03 2.960 Zhu et al. (1995) 14 16,630 26.22 33.94 2.970 Lewin (1998) 12 17,050 25.09 32.81 2.936 Yerramsetty and Murty (2008) 15 16,536 25.88 33.60 2.942 Luo et al. (2009) 14 -- -- -- 2.9223 This work 14 18,159 23.96 31.68 2.9271 Figure 2. Optimal network for case 2 The output data show that after 1,200 generations the solution has already converged to the minimum, and the average computation time is 850 s. The obtained structure is shown in Figure 2, which has 14 heat exchangers, two heaters and three coolers, and the total annual cost is $2,927,064. It can be observed that no splitting match exists in this configuration. The actual EMAT is 14.79 K. The comparison between the costs of the networks is presented in Table 4. 5. Conclusions A robust particle swarm algorithm coupled with a novel adaptive constraint-handling technique was proposed for solving non-convex HENS problems with equality constraints. The approach is easy to implement and its computational cost is considerably reduced through effective constraints handling strategy. The results 1181 encourage further research of the application of PSO or improved PSO to some large HENS problems since the method performs better than many other algorithms during two cases studies. As shown in this study, the proposed method is a viable alternative for conventional HEN synthesis methods and has a good potentiality for solving real-world, industrial-sized HEN synthesis problems. However, It is worth noting that the performance of algorithm and the efficiency of the constraint handling strategy are key factors and need to be further investigated to improve this method. Acknowledgments The present research project was supported by the Scientific Study Project for Institutes of Higher Learning, Ministry of Education, Liaoning Province, P.R. China. (No. L2015257). References Cardoso, M.F., Salcedo R.L., Feyo de Azevedo, S. and Barbosa, D., 1997, A simulated annealing approach to the solution of MINLP problems, Computers & Chemical Engineering, 21, 1349-1364. Gorji-Bandpy, M., Yahyazadeh-Jelodar, H., Khalili, M., 2011, Optimization of heat exchanger network, Applied Thermal Engineering, 31, 779-784. Kennedy, J., Eberhart, R., 1995, Particle Swarm Optimization. Proceedings of IEEE International Conference on Neural Networks, Ⅵ, Piscataway, NJ: USA, 1942-1948, doi:10.1109/icnn.1995-488968. Koraviyotina, S., Siemanond, K., 2015, Heat Exchanger Network Synthesis/Retrofit using MINLP Stage-wise Superstructure with Non-isothermal Mixing, Chemical Engineering Transactions, 43, 1273-1278. Lewin, D.R., Wang, H., Shalev, O., 1998, A Generalized method for HEN synthesis using stochastic optimization: (I) General framework and MER optimal synthesis, Computers & Chemical Engineering, 22, 1503-1513. Lewin, D.R., 1998, A generalized method for HEN synthesis using stochastic optimization. II. Synthesis of cost- optimal networks, Computers & Chemical Engineering, 22, 1387-1405. Lin, B., Miller, D.C., 2004, Solving heat exchanger network synthesis problems with tabu search, Computers & Chemical Engineering, 28, 1451-1464. Linnhoff, B., Ahmad, S., 1990, Cost optimum heat exchanger networks. 1. Minimum energy and capital using simple models for capital cost, Computers & Chemical Engineering, 14, 729-750. Linnhoff, B., Flower, J.R., 1978, Synthesis of heat exchanger networks: I Systematic generation of energy optimal networks, A.I.Ch.E.J., 24, 633-642. Luo, X., Wen, Q., Fieg, G., 2009, A hybrid genetic algorithm for synthesis of heat exchanger networks, Computers & Chemical Engineering, 33, 1169-1181. Luo, Y., Yuan, X., Liu, Y., 2007, An improved PSO algorithm for solving non-convex NLP/MINLP problems with equality constraints, Computers & Chemical Engineering, 2007, 31, 153-162. Pariyani, A., Gupta, A., Ghosh, P., 2006, Design of heat exchanger networks using randomized algorithm, Computers & Chemical Engineering, 30, 1046-1053. Silva, A. P., Ravavnani, M. A. S. S., Biscaiajr, E. C., Caballero, J. A., 2010, Optimal heat exchanger network synthesis using particle swarm optimization, Optimization and Engineering, 11, 459-470. Yee, T. F., Grossmann, I. E., Kravanja, Z., 1990, Simultaneous optimization models for heat integration — I. Area and energy targeting and modeling of multi-stream exchangers, Computers & Chemical Engineering, 14, 1151-1184. Yerramsetty, K.M., Murty, C.V.S., 2008, synthesis of cost-optimal heat exchanger networks using differential evolution, Computers & Chemical Engineering, 32, 1861-1876. Zhang, C., Cui, G., Peng F., 2016, A novel hybrid chaotic ant swarm algorithm for heat exchanger networks synthesis, Applied Thermal Engineering, 104, 707-719. Zhu, X.X., O’Neill, B.K., Roach, J.R., Wood, R.M., 1995, A Method for Automated Heat Exchanger Network Synthesis Using Block Decomposition and Non-Linear Optimisation, Chemical Engineering Research & Design, Part A, 73, 919-930. 1182