Next Article in Journal
Prevalence of Prehypertension and Associated Cardiovascular Risk Profiles among Adults in Peru: Findings from a Nationwide Population-Based Study
Previous Article in Journal
Promote Green Innovation in Manufacturing Enterprises in the Aspect of Government Subsidies in China
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Intelligent Evacuation Route Planning Algorithm Based on Maximum Flow

1
College of Digital Technology and Engineering, Ningbo University of Finance and Economics, Ningbo 315175, China
2
Department of Computer Science, University of Nottingham Ningbo China, Ningbo 315100, China
3
College of Finance and Information, Ningbo University of Finance and Economics, Ningbo 315175, China
*
Authors to whom correspondence should be addressed.
Int. J. Environ. Res. Public Health 2022, 19(13), 7865; https://doi.org/10.3390/ijerph19137865
Submission received: 5 May 2022 / Revised: 22 June 2022 / Accepted: 24 June 2022 / Published: 27 June 2022

Abstract

:
This paper focuses on the problem of intelligent evacuation route planning for emergencies, including natural and human resource disasters and epidemic disasters, such as the COVID-19 pandemic. The goal of this study was to quickly generate an evacuation route for a community for victims to be evacuated to safe areas as soon as possible. The evacuation route planning problem needs to determine appropriate routes and allocate a specific number of victims to each route. This paper formulates the problem as a maximum flow problem and proposes a binary search algorithm based on a maximum flow algorithm, which is an intelligent optimization evacuation route planning algorithm for the community. Furthermore, the formulation is a nonlinear optimization problem because each route’s suggested evacuation time is a convex nonlinear function of the number of victims assigned to that route. Finally, numerical examples and Matlab simulations demonstrate not only the algorithm’s effectiveness, but also that the algorithm has low complexity and high precision. The study’s findings offer a practical solution for nonlinear models of evacuation route planning, which will be widely used in human society and robot path planning schemes.

1. Introduction

Evacuation is a key task in the emergency management response stage. For any public safety incident, especially in the global prevention and control of COVID-19, the evacuation of victims and potential victims from the victim site to a safe area has become a top priority [1]. In the process of personnel evacuation, people need to make decisions or deal with a series of subproblems as a key strategy in the emergency response stage, including predicting the evolution of disaster impacts, dividing evacuation areas, issuing evacuation instructions, estimating evacuation traffic needs, and determining evacuation plans. Then, evacuees must be guided to adjacent evacuation routes, and traffic signals must be updated to effectively evacuate traffic [2]. According to the actual situation, people determine the evacuation plan. That is to say, selecting the appropriate means of transportation and distributing the number of evacuees to each evacuation route according to the traffic conditions is the core issue of the evacuation problem. An effective evacuation plan reduces disaster losses, especially the occurrence of mass casualties [3].
The purpose of an evacuation plan is to establish procedures for orderly and coordinated evacuation routes for a community. This can be applied to different types of emergencies that may require evacuation from homes to shelters or quarantined areas. For natural and human resource disaster emergencies such as typhoons, floods, volcanoes, tsunamis, tornadoes, and home fires, evacuation plans can be applied to evacuate people from homes to shelters. For epidemic disasters, such as COVID-19, the proposed plan can be applied to evacuate affected people from homes to quarantined areas in a timely manner. For different communities, it is essential to identify the common hazards that may occur and identify appropriate evacuation routes.
Regional evacuation refers to the process of moving people from a dangerous area to a safe area within a certain period. The study of regional evacuation involves the division of evacuation areas, the estimation of evacuation traffic needs, and the formulation of evacuation plans [4,5,6]. Community evacuation refers to the problem of evacuating the community population from a hazardous area to a safe area, which is a type of regional evacuation. With the increases in human resource and natural disasters, the government has established many shelters for various disasters. The primary purpose is to quickly transfer the disaster victims in the endangered area to the shelter when an emergency breaks out, to reduce the losses caused by the disaster [7]. In this paper, we formulate the community-based evacuation route planning problem as a maximum flow problem, which is a classical network flow problem. This formulation will determine the best evacuation routes from communities to shelters, and assign a specific number of victims to each route such that all victims can be transferred to destination areas. The main distinction of our model from the classical maximum flow formulation is that our model is a nonlinear model where each route’s suggested evacuation time is a convex nonlinear function of the number of victims assigned to that route. This nonlinearity raises challenges for solving the model. We propose a binary search algorithm based on the classical maximum flow solution approach, which can quickly generate solutions for the proposed model.
Emergency evacuation research first appeared in the 1960s in the form of proposing and discussing the concept and framework of emergency evacuation [8]. Later, the problem of emergency evacuation attracted the attention of many researchers. The main research methods are divided into micromodel research and macromodel research. Micromodels focus on the evacuated individuals’ behavior, psychology, and mutual influence. The influences of these factors on selecting evacuation paths and evaluating evacuation effectiveness is analyzed. The main microscopic models are the probability model, cellular automata model, social force model, and evacuation simulation model. The macromodel treats the people to be evacuated as a group and uses the optimization model method to solve the lower bound of the evacuation time for the evacuation path planning problem, and plans the entire evacuation route and plan from a macro perspective.
In this paper, the research on emergency evacuation path planning is based on the macromodel algorithm. A nonlinear model is established, and a polynomial time approximation algorithm is given, assuming no crossover between different paths and considering the nonlinear relationship between crowd density and evacuation speed. The main contributions of the paper are as follows. (1) We consider the evacuated people as a group and formulate the problem as an optimization model. (2) We assume no mutual influence between any two roads; the traffic conditions on one road do not affect those of another. The approximation algorithm based on network flow is provided to solve the model. (3) We theoretically analyze the complexity of the proposed algorithm, and simulation experiments prove the algorithm’s effectiveness.

2. Related Works

2.1. Macromodel of the Evacuation Path Problem

Macromodel research can study the model and algorithm of evacuation path planning. A good evacuation path planning model and algorithm can give a better evacuation planning scheme to effectively shorten the evacuation time. Hamacher [9] presented a detailed review of the macromodels of evacuation problems and introduced several models based on network flow. For example, minimum turnstile cost dynamic network flow models are used to estimate the average evacuation time of each evacuation individual; maximum dynamic flows and universally maximum dynamic flow models are used to calculate the maximum number of people evacuated within a given time limit; the fastest flow method (QFM) is used to estimate the minimum time to evacuate a certain number of people [10]. Most of these models assume that travel time is a fixed constant. If the nonlinear relationship between crowd density and evacuation time is considered, the complexity of the model will be greatly increased [11]. In this paper, the method to deal with the nonlinear relation replaces the nonlinear relation with an approximately linear function.
From the point of view of solving methods and algorithms of the macro evacuation model, it can be divided into a polynomial algorithm based on linear programming to solve the optimal evacuation scheme and various heuristic algorithms based on nonlinear programming [12,13,14,15]. The first method mainly uses the network flow method, especially the dynamic network flow method, to give the polynomial algorithm for various evacuation problems. A dynamic network [16] is defined on a directed graph G = ( V ,   E ) , in which vertex set V contains source point sources, endpoint sinks, and a medium point set. Every arc ( x ,   y ) E has a non-negative capacity uxy and a non-negative transmission time u x y . The two classical dynamic network flow problems are the maximum dynamic flow problem (MDFP) and the quick flow problem (QFP). MDFP refers to the dynamic flow of sinks to the endpoint under a given time limit T. QFP refers to moving a predetermined amount of traffic from a source point to an endpoint [17]. Burkard [18] presented the first strong polynomial algorithm for the QFP problem in the case of a single source point and single endpoint. Hoppe and Tardos [19] gave a polynomial algorithm for the evacuation problem with a fixed number of source points and endpoints. For a multi-source point and multi-endpoint QFP evacuation problem, they first used the binary search method to give an upper bound of optimal time T. Then, a polynomial algorithm of QFP through multi-source multi-end sinks was given by the ellipsoid method [20].
In addition to the dynamic network flow method, many studies use classical network flow methods, such as the algorithm of the least short circuit, least cost flow, and maximum flow to solve the evacuation path optimization problem. Dunn and Newton [21] used the maximum flow method to solve the problem of evacuation path allocation, aiming to transfer the evacuation crowd to the optimal path as far as possible within the capacity of the road network from the dangerous area to the safe area. Yamada [22] applied the least cost flow problem to allocate evacuation traffic paths and proposed the shortest evacuation plan (SEP), aiming at minimizing the total journeys of all the people to be evacuated to the designated shelter. Therefore, according to this optimization goal, each vehicle in the traffic network will choose the exit of the area nearest to it for evacuation. However, in a complex traffic network, such allocation rules can easily cause traffic congestion. In the lane-based evacuation network flow model proposed by Cova [23], the extended minimum cost flow model was established to prevent intersection conflicts and limit intersections while minimizing the total travel distance. Finally, the model outputs the possible road map of each intersection.
In summary, most researchers describe the evacuation problem as a network flow graph G ( V ,   E ) with nodes and edges with capacity constraints, in which some nodes are called source points, and each source point has a certain number of evacuees; and some nodes are called endpoints, and each endpoint can accommodate a certain number of evacuees. The edges in the figure represent evacuation paths. The evacuation problem is to evacuate all the people to the destination by allocating a reasonable number of people to each evacuation path to minimize the total evacuation time. The advantage of using the network flow theory to solve the problem is that the evacuation problem is transformed into a classic network flow problem and can be solved using the mature polynomial network flow algorithm, which is convenient and effective. However, the network flow problem can generally only solve the linear programming problem. The abovementioned articles can only solve linear problems; that is, the possible nonlinear relationship between crowd density and evacuation time cannot be considered in the model. Therefore, the model cannot reflect some evacuation traffic phenomena, such as slowing down due to traffic congestion.

2.2. Nonlinear Evacuation Planning

The nonlinear programming of the evacuation problem mainly considers the nonlinear relationship between crowd density and evacuation speed. At present, there is no polynomial algorithm for solving the nonlinear programming of evacuation problems, only a variety of heuristic algorithms. Pursals [24] considered building evacuation when crowd movement speed was affected by crowd density. First of all, referring to Nelson and McLennan’s analysis of crowd movement speed in an emergency, they gave the convex function relation between crowd evacuation time and crowd number at each exit [25]. This function is related to the length and width of the exit, the area occupied by the crowd before entering the exit, and the walking speed of the crowd under normal conditions. Then, the inverse function is the function of the time required to evacuate a specific number of people. In this paper, the inverse function of the evacuation function of all exits is summed, and the functional relationship between the total number of evacuations and evacuation time is obtained. Therefore, given the total number of people evacuated, K, the time required to evacuate them can be found by the function, M. Meanwhile, Carey [26] used a piecewise linear function to approximate the nonlinear relationship between evacuation time and the number of people and established a linear model to solve it.
As mentioned before, there are two types of methods for solving the evacuation problem in the literature. One is to model the problem as nonlinear programming and design a heuristic algorithm to solve it. The other is to model the problem as a network flow problem. The first type of method generally obtains an approximate solution, and the approximation ratio is not guaranteed. The advantage of the second method is that the evacuation problem is transformed into a classic network flow problem, and can be solved by using the mature polynomial network flow algorithm, which is convenient and effective. In this paper, we adopted the second method, and the nonlinear evacuation time with respect to the crowd density is considered in the model.

3. Materials and Methods

3.1. Community Evacuation Problem

The problem is how to transfer everyone that needs to be evacuated to designated shelters as soon as possible within the limited traffic network [27]. There is a nonlinear function relationship between crowd movement speed and crowd density. Furthermore, since crowd movement speed will slow down with increased density, the functional relationship between crowd movement speed and crowd density is a convex function [28,29].
To sum up, this problem can be described as evacuating the population of M communities to N shelters, as shown in Figure 1. The problem includes the number of people to be evacuated in each community, the capacity limit of each shelter, the nonlinear function between evacuation time and the number of people evacuated on each path, and the values of parameters on each path from the community to the shelter (e.g., road length, road width, and intersection area). The fastest evacuation plan is to transfer all evacuated people in the community to the shelter—that is, the number of evacuees allocated to each road. Our goal is to minimize the time it takes to evacuate all communities to emergency shelters.
The sets I = 1 ,   2 ,   ,   m and J = 1 ,   2 ,   ,   n are used to denote the collections of communities and shelters, respectively. b I represents the number of people in community i. c j represents the capacity of community j. p i j represents the path between community i and shelter j. x i j is the decision-making variable and represents the number of evacuees allocated to path p i j . Then, the corresponding evacuation time on this road is a convex function, represented by g i j ( x i j ) . Since different numbers of allocated evacuees will correspond to different evacuation times, the function g i j ( x i j ) must be a one-to-one mapping. The model can be written as the following convex program:
min g max i , j { g i j ( x i j ) }
j = 1 n x i j = b i , i = 1 , 2 , , m ;
i = 1 m x i j c j , j = 1 , 2 , , n ;
x i , j 0 , x Z
It is assumed that there is no mutual influence between any two roads; the traffic conditions on a road do not affect those of another. The problem can be described by bipartite graph G = I 1 , J 1 , in which the vertex set I 1 and the vertex set J 1 correspond to the community set I and the shelter set J, respectively. There is an edge connection between vertex i I 1 and vertex j J 1 only when there is a path between community i and shelter j.

3.2. Approximation Algorithm Based on Network Flow

3.2.1. Network Flow Graph Structure Construction

The network flow graph is constructed on the bipartite graph G = I 1 , J 1 , as shown in Figure 2. For any given parameter t, vertex set V = s 0 , t 0 , I , J , where s 0 is the super-source point and t 0 is the over-closing point. The arc set A includes the following three types:
  • When s 0 , i , i I , the corresponding capacity is b i .
  • When j , t 0 , j J , the corresponding capacity is c j .
  • In the arc between I and J, the set of arcs whose time required for a single person i to j transfer to the network is less than the parameter t is incorporated into the network. That is, if  i I , j J , i , j A and only if g i j 1 t , then the capacity limit on this arc is g i j 1 t , where g i j 1 t represents the inverse function of g i j and ⌊⌋ represents the same but rounded down. Since the function g i j ( x i j ) is a one-to-one mapping, its inverse function g i j 1 must exist.
When the problem is described as the network flow graph in Figure 2, once the functional relationship g i j t of the number of people to be evacuated and the time on each path is given, the inverse function can be used to find the capacity of each path under the limit of t; then, it constitutes a network flow graph with all parameters known. The maximum flow problem is a classical network flow problem. One may refer to Schrijver [30] for further details of this problem. The most popular algorithm for solving the maximum flow problem is the Ford–Fulkerson algorithm. When using this maximum flow algorithm on the graph to find the maximum flow value on the network, this maximum flow value is the maximum number of people who can evacuate in the network under parameter t. If the total number of people evacuated is equal to the total number of people to be evacuated, then everyone can be evacuated to a safe area within time t. However, we require the shortest evacuation time to evacuate all the crowd to the shelter, so t is not necessarily the shortest evacuation time. Next, we use a larger time limit T as the initial solution, take the middle value of [0, T], T/2, and calculate the maximum flow under this time limit. Then, according to the calculation results, the binary search method is used to search step by step, and the optimal evacuation time is gradually reduced to a small temporal interval. When the length of the interval is less than a certain small number ϵ , we obtain a nearly optimal evacuation time t with high precision, and correspondingly obtain a specific evacuation plan under the evacuation time t.

3.2.2. Binary Search Algorithm Based on Network Flow

An approximate algorithm for this problem is given for the network flow graph. It should be emphasized that the algorithm proposed below does not directly calculate the number of people allocated to each path to minimize the evacuation time, but takes the parameter t on the network flow graph as the decision variable and a sufficiently large constant T as the initial value. By searching for the optimal evacuation time t * step by step, the maximum flow algorithm is used on the network flow graph N t * to obtain the number of evacuees allocated on each path.
Theorem 1.
The accuracy of Algorithm 1 can be t t * 1 + ε , where t * refers to the optimal solution of the problem.
Algorithm 1: Binary search algorithm based on network flow
Ijerph 19 07865 i001
Proof of Theorem 1.
Suppose that the evacuation time on each path is a convex function of the number of evacuees allocated on the path [24]; that is, g i j 1 t is a convex function. Then, it is guaranteed that the local optimum found by k iterations is the global optimum. Assume that the time interval of the KTH iteration is [ t , t ] ; then, t = t + t 2 , and since t * is in the interval of [ t , t ] , t * t .
Thus, the accuracy of Algorithm 1 is: t t * = t + t 2 t * . Else, because t t t 2 ε , t 2 ε t + t ,   t t * = t + t 2 t * 2 ε t + t + t 2 t = 1 + ε .
Theorem 2.
The complexity of Algorithm 1 is:
O log T ε · n 3 + n 4 .
Proof of Theorem 2. 
For each iteration in Algorithm 1, the length of the interval of [ t , t ] is reduced to half of the previous iteration. Then, on the network N ( t + t 2 ) , the labeling algorithm is used to calculate the maximum flow value on the network.
The complexity of the labeling algorithm is n 3 + n 4 [31], so the complexity generated by each iteration is n 3 + n 4 .
Starting from the initial value T, it is assumed that after k iterations of the algorithm, precision of parameter t can be achieved as t t * 1 + ε , namely, t = O 1 + ε · t * = O ε · t * ; then, T 2 k = O ε · t * .
When the number of iterations k is:
k = O log T ε · t * = O log T ε .
As n is the number of vertices on the directed graph G, the complexity of Algorithm 1 can be obtained as:
O log T ε · n 3 + n 4

3.2.3. Theoretical Comparison

In this paper, a nonlinear model is established, and a polynomial time approximation algorithm is given, assuming no crossover between different paths and considering the nonlinear relationship between crowd density and evacuation speed. The complexity and accuracy of the algorithm are proved by theory, and the method’s effectiveness is verified by an example. The classical evacuation model only needs to satisfy the capacity limitation of road and shelter, but the relationship between evacuation time and evacuation number is a nonlinear convex function [32]. The innovative point of this paper is to propose an approximate algorithm with very good complexity and precision, which provides an effective solution for a nonlinear model of evacuation path planning.
Compared to the existing network flow algorithm that generally can only solve the linear programming problem, we consider the nonlinear evacuation time with respect to the crowd density in the model, and first formulate the problem as a nonlinear network flow model. It is a binary search model based on the classical maximum flow algorithm (namely, the Ford—Fulkerson algorithm) and the accuracy ratio is guaranteed to be within a pre-defined number (say, 0.05%). The existing methods in the literature either are unable to guarantee the accuracy ratio or are unable to deal with the nonlinear function in the model.
Theoretically, this research proves the accuracy of the algorithm to be within any pre-defined small number in Theorem 1, and we also prove the complexity of the algorithm is polynomial in Theorem 2. These two theorems have shown the algorithm has high accuracy and polonomial computational complexity.

4. Empirical Study of the Evacuation Route Planning Problem

Experiment Description

Take the earthquake evacuation of the local community as an example. There are 16 buildings in this community; and there are three exits, namely, the north gate, the main entrance, and the south gate, as shown in Figure 3. The population of the community is divided into three parts and evacuated through the three gates, as shown in Table 1.
There are seven open shelters on Financial Street, and the capacity of each shelter is shown in Table 2.
The functional relationship between evacuation speed and density adopts the functional relationship between evacuation speed and crowd density proposed by Pursals [24], as follows:
v ρ i j = 0.8568 λ i j , 0 < ρ i j 0.5382 ( 1 0.266 ρ i j ) λ i j , 0.5382 < ρ i j 3.5
where v is the crowd evacuation speed and λ i j is the average walking speed on the road P i j , both in unit m/s. ρ i j is the crowd density able to enter the road in person/m2. Formula (1) is converted into a functional relationship between time and crowd number:
t i j x i j = 1 0.8568 λ i j l i j + a i j w i j , 0 < x i j < x i j , I a i j ( a i j 0.266 x i j ) λ i j l i j + a i j w i j , x i j , I < x i j < x i j , S
x i j , I = 0.5382 a i j and x i j , S = 3.5 a i j refer to the lower and upper bounds of the number of evacuees allocated to the road P i j , respectively. t i j x i j represents the time taking to allocate the number of x i j people on the path P i j . l i j represents the length of the road P i j . w i j is the width of the road P i j . a i j represents the occupied area of evacuees allocated to road P i j when they reach the intersection of P i j . λ i j represents the normal walking speed on P i j . When λ i j = 1.4 m/s, the analysis shows that the evacuation time increases with the increase in number of people, so the relationship between the evacuation time and the number of people evacuated is a convex function, as shown in Figure 4.
The inverse function of t i j x i j is the function of the evacuation time on a path and the number of evacuees assigned to the path.
P i j t i j = t i j 1 x i j = 0 , 0 t i j < t i j , I x i j , I , t i j = t i j , I a i j 0.266 1 l i j w i j + a i j x i j λ i j w i j , t i j , I < t i j t i j , S
where t i j , I and t i j , S refer to the lengths of time required for the evacuation of a certain number of people at densities of 0.5382 person/m2 and 3.5 person/m2 to the destination, as shown in Figure 5, which is a concave function. In addition, parameter values of each path, including road length, road width, and intersection area, are measured using Google Maps, as shown in Table 3. There are 21 paths from 3 evacuation points to 7 shelters.

5. Computational Results of the Empirical Study

Algorithm 1 was simulated using Matlab software. The algorithm’s accuracy was set to be less than 0.05%, i.e., ε = 0.05 % . We calculated the optimal evacuation scheme of the above example, including evacuation allocated on each path, crowd evacuation speed, and time. The results are shown in Table 4.
The total evacuation time and algorithm accuracy are shown in Table 5.
The results show that the accuracy of the optimal target value obtained by the algorithm reached 0.0005 over 13 iterative operations. The total evacuation time was around 24.92 min. The upper bound and lower bound in the 13th iteration had a gap of 0.041%. This indicates that the optimal evacuation time located in between the upper and lower bounds must be within 0.04% deviation from the optimal value, which is lower than the predefined accuracy level of 0.005. Finally, the network flow diagram obtained is shown in Figure 6.

Analysis of Results and Discussion

In this empirical study of the Fenghuiyuan community, we used Algorithm 1 and obtained the routing results in seconds. The accuracy of the obtained evacuation results reached 0.05%. The theoretical and practical results show that the algorithm has four advantages. Firstly, the algorithm is simple, intuitive, and easy to implement in programming languages. Secondly, an effective method for solving nonlinear evacuation problems is provided, with high precision, low complexity, and fast calculation speed. Thirdly, no matter how complex the specific nonlinear function relationship between the number of evacuated people and the evacuation time, as long as the function is invertible, the algorithm can be used to solve it. Therefore, the scope of application is wide. Fourthly, the precision is high, and precision of any preset value can be achieved.
The results in Table 4 and Figure 6 show the detailed evacuation plan for the earthquake emergencies of this empirical study. We found that 4129 people were evacuated in 24.92 min, which is an executable plan for emergencies. In this evacuation plan, six paths were used in the network. The maximum evacuation flow occurred on path (4,5) with 998 persons, while the minimum flow bottleneck was on path (4,7) with only 27 persons. Thus, we might need to improve the capacity on path (4,7) so that more flow can be shared on this path to reduce flow on other paths. Correspondingly, the evacuation time could be reduced. Using Algorithm 1, we can quickly obtain the evacuation plan for a community and provide suggestions for improving the plan’s efficiency, making it a valuable tool for the decision making of relevant authorities or managers.

6. Conclusions

This paper studied the nonlinear model construction of intelligent route planning in community evacuation. The nonlinear model reflects the nonlinear relationship between the evacuation time and the number of people evacuated; that is, as the number of people increases, the evacuation speed will slow down, and the evacuation time will increase. In order to solve the nonlinear model of evacuation route planning in the community evacuation problem, we proposed a binary search method based on the maximum flow algorithm within the network flow method to solve the nonlinear model. Finally, we empirically studied Fenghuiyuan community’s earthquake evacuation. Our proposed algorithm provides efficient and highly accurate results.
In a nutshell, the algorithm designed in this paper provides an ingenious idea for solving evacuation problems, especially nonlinear evacuation problems. Avoiding starting from the problem itself, the algorithm starts indirectly, taking the evacuation time as the solution variable. By searching for the optimal evacuation time step by step, the maximum flow algorithm finds the number of evacuees allocated on each path under the determined evacuation time.
However, the proposed algorithm has some limitations. It is currently only applicable for the situation where there is no intersection between the evacuation paths. For the situation where the roads intersect, the complexity of the model and algorithm will be increased. Therefore, in cases of more complex road conditions, the algorithm needs to be further expanded and further analyzed.

Author Contributions

Conceptualization, L.L. and H.J.; methodology, L.L.; software, H.J.; validation, Y.L. and X.Z.; formal analysis, L.L.; investigation, X.Z.; resources, Y.L.; writing—original draft preparation, L.L.; writing—review and editing, H.J.; visualization, Y.L.; supervision, X.Z.; project administration, L.L.; funding acquisition, L.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research was supported in part by the Zhejiang Philosophy and Social Science Planning Project (grant number 19NDJC103YB), the Humanities and Social Science Research Youth Foundation of the Ministry of Education (grant number 19YJC880053), the General Scientific Research Project of Zhejiang Provincial Education Department (grant number Y201840312), the Zhejiang Provincial Basic Public Welfare Research Program (grant number LGF21H180010), and the Education and Teaching Reform project of Ningbo University of Finance and Economics (grant number 20jyyb16).

Institutional Review Board Statement

The study was conducted in accordance with the Declaration of Helsinki, and approved by the Institutional Review Board of Ningbo University of Finance and Economics (protocol code 2020007, 16 September 2020).

Informed Consent Statement

Informed consent was obtained from all subjects involved in the study.

Data Availability Statement

The data presented in this study are available on request from the corresponding author. The data are not publicly available due to privacy reasons.

Acknowledgments

All the participants are gratefully acknowledged.

Conflicts of Interest

The authors declare no conflict of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript, or in the decision to publish the results.

References

  1. Lekkas, A.M.; Fossen, T.I. Integral LOS Path Following for Curved Paths Based on a Monotone Cubic Hermite Spline Parametrization. IEEE Trans. Control Syst. Technol. 2014, 22, 2287–2301. [Google Scholar] [CrossRef]
  2. Aldair, A.A.; Rashid, M.T.; Rashid, A.T. Navigation of Mobile Robot with Polygon Obstacles Avoidance Based on Quadratic Bezier Curves. Iran. J. Sci. Technol. Trans. Electr. Eng. 2019, 43, 757–771. [Google Scholar] [CrossRef]
  3. Tharwat, A.; Elhoseny, M.; Hassanien, A.E.; Gabel, T.; Sangaiah, A.K. Intelligent Bézier curve-based path planning model using Chaotic Particle Swarm Optimization algorithm. Clust. Comput. 2019, 22, 4745–4766. [Google Scholar] [CrossRef]
  4. Beknazarov, Z.; Rustamov, D. A review of existing pension services in developed and developing countries. E3S Web Conf. 2021, 258, 05040. [Google Scholar] [CrossRef]
  5. Neshat, M.; Pourahmad, A.A.; Rohani, Z. Improving the cooperation of fuzzy simplified memory A* search and particle swarm optimisation for path planning. Int. J. Swarm Intell. 2020, 5, 1–21. [Google Scholar] [CrossRef]
  6. Duchoň, F.; Babinec, A.; Kajan, M.; Beňo, P.; Florek, M.; Fico, T.; Jurišica, L. Path Planning with Modified a Star Algorithm for a Mobile Robot. Procedia Eng. 2014, 96, 59–69. [Google Scholar] [CrossRef] [Green Version]
  7. Sheng, J.; He, G.; Guo, W.; Li, J. An Improved Artificial Potential Field Algorithm for Virtual Human Path Planning. In Entertainment for Education. Digital Techniques and Systems. Edutainment 2010; Springer: Berlin/Heidelberg, Germany, 2010; pp. 592–601. [Google Scholar]
  8. Hoppe, B.; Tardos, E. Polynomial Time Algorithms for Some Evacuation Problems. In Proceedings of the Fifth Annual ACM-SIAM Symposium on Discrete Algorithms, Society for Industrial and Applied Mathematics (SODA ’94), Arlington, VA, USA, 23–25 January 1994; pp. 433–441. [Google Scholar]
  9. Hamacher, H.; Tjandra, S. Mathematical Modelling of Evacuation Problems: A State of Art; Technical Report 24; Fraunhofer (ITWM): Kaiserslautern, Germany, 2001. [Google Scholar]
  10. Kaur, M.; Singh, D. Fusion of medical images using deep belief networks. Clust. Comput. 2020, 23, 1439–1453. [Google Scholar] [CrossRef]
  11. Ali, R.; Siddiqi, M.H.; Idris, M.; Ali, T.; Hussain, S.; Huh, E.N.; Kang, B.H.; Lee, S. GUDM: Automatic Generation of Unified Datasets for Learning and Reasoning in Healthcare. Sensors 2015, 15, 15772–15798. [Google Scholar] [CrossRef] [Green Version]
  12. Li, K.; Hu, Q.; Liu, J. Path Planning of Mobile Robot Based on Improved Multiobjective Genetic Algorithm. Wirel. Commun. Mob. Comput. 2021, 2021, 8836615. [Google Scholar] [CrossRef]
  13. Guo, N.; Li, C.; Wang, D.; Song, Y.; Liu, G.; Gao, T. Local Path Planning of Mobile Robot Based on Long Short-Term Memory Neural Network. Autom. Control Comput. Sci. 2021, 55, 53–65. [Google Scholar] [CrossRef]
  14. Li, F.F.; Du, Y.; Jia, K.J. Path planning and smoothing of mobile robot based on improved artificial fish swarm algorithm. Sci. Rep. 2022, 12, 659. [Google Scholar] [CrossRef] [PubMed]
  15. Hu, X.; Zhang, H.; Li, Z.; Huang, Y.; Yin, Z. A Novel Self-Adaptation Hybrid Artificial Fish-Swarm Algorithm. IFAC Proc. Vol. 2013, 46, 583–588. [Google Scholar] [CrossRef]
  16. Babaee Tirkolaee, E.; Goli, A.; Weber, G.W. Fuzzy Mathematical Programming and Self-Adaptive Artificial Fish Swarm Algorithm for Just-in-Time Energy-Aware Flow Shop Scheduling Problem with Outsourcing Option. IEEE Trans. Fuzzy Syst. 2020, 28, 2772–2783. [Google Scholar] [CrossRef]
  17. Li, W.; Wang, G.G.; Gandomi, A.H. A Survey of Learning-Based Intelligent Optimization Algorithms. Arch. Comput. Methods Eng. 2021, 28, 3781–3799. [Google Scholar] [CrossRef]
  18. Burkard, R.E.; Dlaska, K.; Klinz, B. The quickest flow problem. Z. Oper. Res. 1993, 37, 31–58. [Google Scholar] [CrossRef]
  19. Hoppe, B.; Tardos, E. The Quickest Transshipment Problem. Math. Oper. Res. 2000, 25, 36–62. [Google Scholar] [CrossRef] [Green Version]
  20. Zeisberger, M.; Nowik, D.; Beck, L.; Märtin, S.; Beckmann, U.; Meyer, T. Quality management in medical rehabilitative care by the German statutory pension insurance scheme. Eur. J. Phys. Rehabil. Med. 2019, 55, 845–851. [Google Scholar] [CrossRef]
  21. Dunn, C.E.; Newton, D. Optimal Routes in GIS and Emergency Planning Applications. Area 1992, 24, 259–267. [Google Scholar]
  22. Yamada, T. A network flow approach to a city emergency evacuation planning. Int. J. Syst. Sci. 1996, 27, 931–936. [Google Scholar] [CrossRef]
  23. Cova, T.J.; Johnson, J.P. A network flow model for lane-based evacuation routing. Transp. Res. Part A Policy Pract. 2003, 37, 579–604. [Google Scholar] [CrossRef]
  24. Pursals, S.C.; Garzón, F.G. Optimal building evacuation time considering evacuation routes. Eur. J. Oper. Res. 2009, 192, 692–699. [Google Scholar] [CrossRef]
  25. Zhu, Z.; Quiel, S.E. Near-Field Radiant Heat Flux from Open-Air Gasoline and Diesel Pool Fires: Modified Point Source and Discretized Solid Flame Models. Fire Technol. 2021, 57, 1901–1926. [Google Scholar] [CrossRef]
  26. Carey, M.; Subrahmanian, E. An approach to modelling time-varying flows on congested networks. Transp. Res. Part B Methodol. 2000, 34, 157–183. [Google Scholar] [CrossRef]
  27. CHEN, G.; SHUAI, B. Traffic Evacuation of Cellular Network after Dangerous Goods Spill. J. Transp. Syst. Eng. Inf. Technol. 2012, 12, 143–148. [Google Scholar] [CrossRef]
  28. Atyabi, A.; Powers, D. Review of classical and heuristic-based navigation and path planning approaches. Int. J. Adv. Comput. Technol. (IJACT) 2013, 5. Available online: https://www.researchgate.net/profile/Adham-Atyabi/publication/257919874_Review_of_classical_and_heuristic-based_navigation_and_path_planning_approaches/links/00b7d52614e352a139000000/Review-of-classical-and-heuristic-based-navigation-and-path-planning-approaches.pdf (accessed on 15 May 2022).
  29. Wang, Q.; Wang, Y. Route Planning Based on Combination of Artificial Immune Algorithm and Ant Colony Algorithm. In Foundations of Intelligent Systems; Wang, Y., Li, T., Eds.; Springer: Berlin/Heidelberg, Germany, 2012; pp. 121–130. [Google Scholar]
  30. Schrijver, A. On the history of the transportation and maximum flow problems. Math. Program. 2002, 91, 437–445. [Google Scholar] [CrossRef]
  31. Soni, R.; Varma, S. Solving Maximum Flow and Minimum Cut Network Problems by Labeling Method. Int. J. Comput. Sci. Technol. (IJCST) 2015, 6, 103–104. [Google Scholar]
  32. Gilimyanov, R.F. Recursive method of smoothing curvature of path in path planning problems for wheeled robots. Autom. Remote. Control 2011, 72, 1548–1556. [Google Scholar] [CrossRef]
Figure 1. Schematic diagram of community evacuation route problem.
Figure 1. Schematic diagram of community evacuation route problem.
Ijerph 19 07865 g001
Figure 2. Network flow diagram N t .
Figure 2. Network flow diagram N t .
Ijerph 19 07865 g002
Figure 3. Building map and exit marker. The blue rectangular area indicates the building number of the evacuees and red lines indicate evacuation routes.
Figure 3. Building map and exit marker. The blue rectangular area indicates the building number of the evacuees and red lines indicate evacuation routes.
Ijerph 19 07865 g003
Figure 4. Function diagram of evacuation time and the number of evacuees.
Figure 4. Function diagram of evacuation time and the number of evacuees.
Ijerph 19 07865 g004
Figure 5. Function diagram of evacuation number and evacuation time.
Figure 5. Function diagram of evacuation number and evacuation time.
Ijerph 19 07865 g005
Figure 6. Network flow diagram of community evacuation path planning calculated by Algorithm 1.
Figure 6. Network flow diagram of community evacuation path planning calculated by Algorithm 1.
Ijerph 19 07865 g006
Table 1. Evacuation exit allocation table.
Table 1. Evacuation exit allocation table.
ExitBuilding No.Total Number of People
The north gate1, 2, 6749
Main entrance7, 8, 12, 13, 15, 171855
The south gate4, 9, 10, 16, 18, 19, 211525
Table 2. Statistical table of shelters in open spaces.
Table 2. Statistical table of shelters in open spaces.
No.LocationAvailable Area (m2)Capacity (2 m2/Person)
1The green belt on WSK Road10,0005000
2Shiyan Middle School1000500
3Lu Xun Secondary School1000500
4Fendou Primary School1000500
5No. 159 Middle School20001000
6Jiexin Park, Financial Street10,0005000
7Chenghuang Temple1000500
Table 3. Parameter values of each evacuation path.
Table 3. Parameter values of each evacuation path.
Path p ij Length: l ij (km)Width: w ij (m)Available Area: a ij (m2)
i = 1, j = 11.44450
i = 1, j = 21.354450
i = 1, j = 31.64450
i = 1, j = 41.14450
i = 1, j = 50.854450
i = 1, j = 61.14450
i = 1, j = 724450
i = 2, j = 11.95750
i = 2, j = 225750
i = 2, j = 32.15750
i = 2, j = 41.95750
i = 2, j = 52.35750
i = 2, j = 61.55750
i = 2, j = 71.45750
i = 3, j = 11.54600
i = 3, j = 21.44600
i = 3, j = 31.14600
i = 3, j = 41.54600
i = 3, j = 51.54600
i = 3, j = 61.24600
i = 3, j = 71.64600
Table 4. Algorithm 1 calculation results.
Table 4. Algorithm 1 calculation results.
No.Path: p ij Toll: x ij Speed: v ij (m/s)Time: t ij (s)
1(2, 5)7490.81447574.0769
2(3, 5)8290.801312,734.4399
3(4, 5)9981.17666565.7510
4(4, 6)5000.721312,810.9734
5(4, 7)271.199511,871.4152
6(3, 8)5000.752310,290.5930
7(3, 10)5261.162012,723.9683
Table 5. Algorithm 1 calculation effects and target values.
Table 5. Algorithm 1 calculation effects and target values.
Total Evacuation Time t = 1495.5 s 24.92 min
Upper and lower bounds of last iteration
[ t , t ]
[1495.18, 1495.79]
The number of iterations k = 13
Results in the accuracy ε = 0.0005
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Liu, L.; Jin, H.; Liu, Y.; Zhang, X. Intelligent Evacuation Route Planning Algorithm Based on Maximum Flow. Int. J. Environ. Res. Public Health 2022, 19, 7865. https://doi.org/10.3390/ijerph19137865

AMA Style

Liu L, Jin H, Liu Y, Zhang X. Intelligent Evacuation Route Planning Algorithm Based on Maximum Flow. International Journal of Environmental Research and Public Health. 2022; 19(13):7865. https://doi.org/10.3390/ijerph19137865

Chicago/Turabian Style

Liu, Li, Huan Jin, Yangguang Liu, and Xiaomin Zhang. 2022. "Intelligent Evacuation Route Planning Algorithm Based on Maximum Flow" International Journal of Environmental Research and Public Health 19, no. 13: 7865. https://doi.org/10.3390/ijerph19137865

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop