Next Article in Journal
Wnt/β-Catenin Signaling Inhibits Osteogenic Differentiation in Human Periodontal Ligament Fibroblasts
Next Article in Special Issue
Platform Design and Preliminary Test Result of an Insect-like Flapping MAV with Direct Motor-Driven Resonant Wings Utilizing Extension Springs
Previous Article in Journal
A Biomimetic Method to Replicate the Natural Fluid Movements of Swimming Snakes to Design Aquatic Robots
Previous Article in Special Issue
Starling-Behavior-Inspired Flocking Control of Fixed-Wing Unmanned Aerial Vehicle Swarm in Complex Environments with Dynamic Obstacles
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Path Planning with Time Windows for Multiple UAVs Based on Gray Wolf Algorithm

1
School of Technology, Beijing Forestry University, Beijing 100083, China
2
Research Center for Biodiversity Intelligent Monitoring, Beijing Forestry University, Beijing 100083, China
*
Author to whom correspondence should be addressed.
Biomimetics 2022, 7(4), 225; https://doi.org/10.3390/biomimetics7040225
Submission received: 30 September 2022 / Revised: 23 November 2022 / Accepted: 29 November 2022 / Published: 3 December 2022
(This article belongs to the Special Issue Bio-Inspired Flight Systems and Bionic Aerodynamics)

Abstract

:
The Gray Wolf (GWO) algorithm aims to address the path planning problem of multiple UAVs, and the scene setting is mainly to avoid threats, meet the constraints of UAVs themselves and avoid obstacles between UAVs. The scene setting is relatively simple. To address such problems, the problem of time windows is considered in this paper, so that the UAV can arrive at the same time, and the Gray Wolf algorithm is used to optimize the problem. Finally, the experimental results verify that the proposed method can plan a safe flight path in the process of multi-UAV flight and reach the goal point at the same time. The mean error of flight time between UAVs of the GWO is 0.213, which is superior to PSO (0.382), AFO (0.315) and GA (0.825).

1. Introduction

Unmanned aerial vehicles (UAVs) are a crucial symbol of military strength of all countries in the world, which can strengthen nation defense construction and accelerate information construction. The development of UAVs is driven by multi-disciplines and high technology in the information age. As UAVs are popularized in various fields—such as observations of Water Surface Elevation and Bathymetry and Shallow Water Bathymetry and Object Detection, and so on [1,2,3,4,5]—the working environment of a UAV becomes more and more complex, which is difficult to be solved by a single UAV. Therefore, it is more helpful to solve the increasingly complex mission environment and mission requirements for multiple UAVs to perform flight missions together. In the multi-UAV system, each UAV usually has no access to global information. By exchanging the information of neighbors, the group behavior of the cluster and the global coordinated goals can be realized [6].
When multiple UAVs perform tasks, they need to plan the path information. After planning the path information, they need to exchange information with neighbors and make certain adjustments according to their information, so as to better complete the task. Multi-UAV path planning requires the generation of flight paths from the starting position to the target position for each UAV, and requires that the total path cost of the cluster route is the lowest (lower), which can realize the mutual avoidance of UAV in the cluster and avoid collision with the environment.
Multi-UAV path planning belongs to the multi-UAV autonomous decision making and planning problem, which is essentially an optimization problem, and can be solved by using the optimization strategy. In recent years, many optimization algorithms have been proposed to solve such problems; for example, the Dijkstra algorithm, A* algorithm and artificial potential field method in the field of classical search [7,8,9]. However, one of the most important characteristics of multiple UAVs is to realize the group behavior of the UAV group with the help of the local interaction between UAVs, which has distributed characteristics, while classical search algorithms do not have distributed characteristics. To solve this problem—inspired by the fact that in nature, and in order to make up for the limited ability of individuals, many biological populations can present some kind of group behavior through the communication and cooperation between individuals or local regions—scholars at home and abroad have proposed a series of swarm intelligence methods, such as the Particle Swarm Optimization, PSO algorithm [10], Ant Colony Optimization, ACO algorithm [11,12,13], Artificial fish swarm, AFO algorithm [14,15,16], pigeon-inspired optimization, PIO algorithm [17], Firefly algorithm, FA algorithm [18], Genetic Algorithm and GA algorithm, and so on [19]. Coyotes have become the masters of the prairies, through their own strong cognitive ability and tight organization structure within the team. Under the severe living environment in nature, coyotes have created amazing cooperative hunting methods. Inspired by wolf hunting behavior, Mirjalili, A. and other scholars proposed a swarm intelligence algorithm based on Gray Wolf optimization, the GWO algorithm [20]. Since the Gray Wolf algorithm came out, it has attracted extensive attention of many scholars due to its good performance. The Gray Wolf algorithm has the characteristics of simple structure, fewer parameters to be adjusted and being easy to implement. Moreover, due to the adaptive convergence factor and information feedback mechanism in the algorithm design of the Gray Wolf algorithm, it can achieve a balance between local optimization and global search, and to a certain extent, can solve the common problem of the swarm intelligence optimization algorithm trapped in local optimization. In terms of function optimization, relevant studies have proven that the convergence speed and solution accuracy of GWO are superior to PSO, AFO and GA. After much research, the swarm intelligence algorithm is considered the most suitable method for UAV cluster path planning, due to its natural advantages of being distributed, self-organizing and scalable.
Currently, the GWO algorithm is mainly applied to multiple UAV route planning problems under a simple scenario, while for complex scenarios using GWO, solving the problem of UAV route planning research does not take much. To address this problem, the article sets UAVs to meet at the same time from different starting points and target points, at the same time, for each drone planning flight path. In addition, a series of performance constraints of UAVs are satisfied, and the GWO algorithm is used to plan the flight path with a faster convergence speed and lower flight path cost.
This paper is divided into five chapters. The first chapter is the relevant introduction of the research content; the second chapter uses the mathematical method to describe the problem; chapter 3 mainly introduces the Gray Wolf algorithm; chapter four analyzes the results; and chapter 5 is a summary and outlook.

2. Problem Statement

The chapter introduces graph theory basis, UAV restraint information and environment information and fitness, which enables related researchers to better understand the proposed methods and conclusion.

2.1. Graph Theory Basis

The multi-UAV system, composed of multiple UAVs, is a distributed system. The problem of path planning for multiple UAVs is essentially a distributed optimization problem. The distributed optimization problem needs to study the network, in which the topology is usually represented by graphs. This part will make a brief introduction to graph theory, so that readers can better understand the following content.
Graph is usually represented by   G = { V , ε , A } , V = {1, 2, …, N} is usually represented union of nodes, ε = { ( i , j ) ,   i , j V } V × V is set of edges, and A = [ a i j ] N × N an adjacency matrix. Here we only discuss digraphs, which can be used to model the mutual communication between nodes, and if j is a neighbor of i, then the corresponding element is a i j 0 of the adjacency matrix (usually set to 1) [21,22].
For any node, the node i in-degree is defined as d e g o u t ( t ) = j = 1 N a i j , and the node i in degree is defined as d e g i n ( t ) = j = 1 N a i j . A graph is said to be balanced if the in-degree and out-degree of any node of the graph are equal, as shown in Figure 1. The multi-UAV system studied in this paper is essentially a multi-agent system. There are N agents in the network, and i represents the a g e n t i . In this multi-agent system, agents will exchange information and form a communication network topology, and this network topology is the balance diagram [23,24,25].

2.2. UAV Restraint Information and Environment Information

In the problem of UAV flight path planning, the establishment of a UAV planning space environment and a flight path evaluation index is the prerequisite for flight path planning.
Planning space model. Different environmental information can directly affect the result of flight path planning and the effect of mission execution, so it is very important to accurately model the planned space environment.
In this paper, the scenario we study is a mountain environment unmanned aerial vehicle (UAV) delivery problem with time windows, in particular: when there is a mountain in the disaster; the need of UAV to deliver aid; a need to be in place to move supplies at a specified time; controlled speed at the same time; the height; angle; and distribution of the weight of the constraint. In order to effectively simulate the mountainous environment when the UAV performs the mission, the terrain mathematical model can be obtained by modeling the obstacles in the mountainous environment [26]
z ( x , y ) = h 0 + j = 1 N h j max exp { [ k j x ( x x j max ) x j max ] 2 [ k j y ( y y j max ) y j max ] }    
where h 0 is benchmark terrain height, N is number of peaks, h j max is the j peak vertex height, x j max and y j max are the j abscissa and ordinate of the peak vertex, and k j x and k j y are the j gradient-related quantities of peaks along the x   and y   axes.
Maximum turning angle. In the actual flight, the angle of UAV is limited, and can only fly within a certain angle range. Different UAV angles have different constraints.   A ( x i 1 , y i 1 , z i 1 ) is the previous route, B ( x i , y i , z i ) stands as the current route, and C ( x i + 1 , y i + 1 , z i + 1 ) indicates the next route. Remember a i = [ x i x i 1 , y i y i 1 ] T , φ max is the maximum allowable turning angle, requiring each turning angle to be subject to the rules which φ max or less. The constraints can be expressed as
cos ( φ ) = a i T a i + 1 | a i | | a i + 1 | cos ( φ max )   ( i = 2 , , n )
where | a i | is the length of the vector.
Maximum angle of climb/angle of dive. During flights, ideal flight situations do not exist; UAVs usually have to avoid obstacles by climbing and diving. The maximum climb/dive angle is determined by the UAV’s own ability, which limits the maximum angle at which the final track can climb and dive in the altitude direction (z). Assuming that the maximum allowable climb/dive Angle is θ , the constraint can be expressed as:
| z i z i 1 | | a i | tan ( θ )   ( i = 2 , , n )
Minimum turning radius. Considering the indicator is vital for path planning, as the turning radius is too small to ignore some track points. To prevent the turning radius from destroying path planning, we set a minimum turning radius, which can be calculated by the following formula
φ 2 arcsin ( r min r d + r min )
where r min is the minimum turning radius of UAV.
Minimum and maximum flight speed. When UAVs fly in a complex environment, the flight speed of the UAV can be too quick to avoid obstacles, but too slow to finish the task; thus, the flight speed of the UAV needs to be kept in a limited range. Remember that the flying speed of UAV is v , the maximum flying speed is v max and the minimum flying speed is v min , and then the constraint can be expressed as:
v min v v max
Minimum flight height. UAVs belong in the sky—the land isn’t their home. Setting a minimum flight height is necessary. Remember that the flight height is H and the minimum flight height is H min , and then the constraint can be expressed as:
H H min
Obstacle avoidance constraint between UAVs. UAVs must be prevented from colliding with each other. Assuming that each UAV is composed of N track points: the track points of each UAV can be represented by P n = ( X n , Y n , Z n , )   ( n = 1 ,   2 i j ) ; the track points of each UAV in the X direction are denoted as X i = ( x 1 , ,   x i   , x n ) ; the track points of each UAV in the Y direction are denoted as Y i = ( y 1 , , y i   , y n ) ;   and   t he track points of each UAV in the Z direction are denoted as Z i = ( z 1 , , z i   , z n ) , The intersection between the set of trajectory points in each dimension of each UAV is 0, which means that the trajectory points do not coincide. Then, the constraint can be expressed as:
X i X j = 0  
Y i   Y j = 0  
  Z i   Z j = 0

2.3. Fitness of Unmanned Aerial Vehicle

The f i t n e s s is a vital index to evaluate the performance of the algorithm. The f i t n e s s determines the quality of the optimization result. The optimization objective function of the Gray Wolf algorithm is the f i t n e s s function. The f i t n e s s of a UAV is determined by both mileage and fuel consumption. The f i t n e s s can be expressed as follows:
f i t n e s s = k × m i l e + ( 1 k ) × oil  
oil = K × m i l e
m i l e represents the mile of UAV, and oil represents the oil of UAV. The value of k ranges from 0 to 1, and the value of k determines whether f i t n e s s focuses more on mileage or fuel consumption. K is how much oil is consumed per thousand miles.
The calculation of the mileage depends on the track points in the space; assuming that there are n track points in the space, each track points can be expressed as P ( x i , y i , z l ˙ ) . m i l e can be represented as follows:
m i l e = i = 1 n ( x i ˙ + 1 x i ˙ ) 2 + ( y i ˙ + 1 y i ˙ ) 2 + ( z i ˙ + 1 z i ˙ ) 2

3. Gray Wolf Algorithm

The advantage of wolf pack hunting is to rely on strong bullying; to attack less [27,28,29,30,31]; clear division of labor; mutual help; and group attacks. The success of a wolf pack lies in cooperation, which has two meanings: the first is the information sharing of a situation, knowing oneself and the enemy, and winning a hundred battles. The more abundant information, the lower the uncertain risk of hunting, and strategies to capture prey are much more feasible. The other is when multiple wolves attack their prey in the same place at the same time, and some are responsible for disrupting it [32]. Because a wolf’s hunting behavior depends on the autonomous cognition of the wolves, strict division of labor, and wolves on the whole have this distributed feature, wolves have internal collaborative features. This attracted the attention of the researchers, and inspired by the related researchers abstracted from wolves hunting wolves in the social hierarchy and wandering and calling, rounded up three kinds of intelligent behavior. These three kinds of behavior’s order cannot changed, and with strict dependence, are irreversible. When wolves wander, they find prey, summon them, and round them up [33,34]. Figure 2 shows the wolves’ hunting model.

3.1. Intelligent Behavior of Wolves

This part focuses on describing the three kinds of intelligent behaviors presented by wolf swarms with mathematical expressions, which lays a mathematical foundation.
Wandering. In the solution space, the best S n u m   wolf, except the head wolf, is regarded as the scout wolf; wandering is designed for attaining a more available solution. The position of the wolf after moving forward one step along the direction p ( p = 1 , 2 , , n ) in the D -dimensional space can be expressed as follows [26]
x i d p = x i d + sin ( 2 π × p h ) × s t e p s d
where s t e p s is the walking step length and h is the number of directions.
Summoning. Summoning imitates the hunting that calls for companions to catch prey. The summoning is designed to renew the previous optimal value. For the k generation wolves, the position in the D -dimensional space can be expressed as follows [26]
x j d k + 1 = x j d k + s t e p b d × g d k x j d k | g d k x j d k |  
where s t e p b d is the walking step length and g d k   is the position of the k generation wolves in the D-dimensional space.
As wolves rush toward prey, they get closer and run quicker. To prevent missing prey, we set a determination distance. The determination distance d n e a r   can be expressed as [26]
d n e a r = 1 D ω × d = 1 D | M d m d |
where D is dimension of the solution space; ω is the distance determination factor; M d is the maximum value; and   m d is the minimum value in the d -dimensional.
Rounding up. The position of the wolf closest to the prey (the position of the lead wolf) can be regarded as the moving position of the prey. For k generation wolves, the prey’s position in the D -dimensional space is G d k , and then the wolf pack’s rounding up behavior can be expressed as follows [26]
x i d k + 1 = x i d k + λ × s t e p w d × | G d k x i d k |
where λ   is random number in the interval [1, 1] with uniform distribution, and s t e p w d   denotes the walking step length.
In the d -dimensional space, the relationship among the wandering step s t e p s d , summoning step s t e p b d and rounding up step s t e p w d of the wolf involved the three intelligent behaviors, which can be expressed as follows [26]
s t e p s d = s t e p b d 2 = 2 × s t e p w d = | M d m d | C  
where C represents the step size factor, which represents the search refinement degree of the wolf in the solution space.

3.2. Adjust the Flight Time of Each UAV

The Gray Wolf algorithm can only obtain fitness and mileage information, and cannot directly access time information, or obtain speed, mileage information or the information time, but time is hard to agree upon, and needs to satisfy the speed constraints to adjust the speed, so that the times converge.
Time adjustment factor b . b is the time adjustment factor, which can adjust the velocity of the UAV to make the times converge. The b can be represented as follows
b i = { t ( i ) / t ( j ) , t ( i ) < t ( j ) 1 , t ( i ) > t ( j )
when t ( i ) is less than t ( j ) , b can be represented as t(i)/t(j); otherwise b is one, where i represents the UAV’s serial number and j represents the neighbor of the UAV’s serial number.
Update the velocity of UAV. The UAV speed update depends on the time adjustment factor b, and the UAV time can be adjusted by adjusting the UAV speed. The new velocity of the UAV can be represented as follows
n e w v e l o c i t y i = { b i c u r r e n t _ v e l o c i t y i , t ( i ) < t ( j ) 1 c u r r e n t _ v e l o c i t y , t ( i ) > t ( j )
when t ( i ) is less than t ( j ) , n e w _ v e l o c i t y i   equal to b i c u r r e n t _ v e l o c i t y i , otherwise n e w _ v e l o c i t y i equal to 1 c u r r e n t _ v e l o c i t y i ; where n e w _ v e l o c i t y i represents the updated velocity of UAV i ; and c u r r e n t _ v e l o c i t y i represents the current velocity of UAV i . If the UAV completes the speed update, the UAV will then fly at the updated speed at a constant speed.
Update the flight time of UAV. The flying time of UAV is determined by both mileage and speed. The mileage of UAV is calculated by the Gray Wolf algorithm, and the speed of UAV is calculated by Formula (18). The update the flight time of UAV can be represented as follows
n e w _ f l i g h t _ t i m e i = c u r r e n t _ m i l e i / n e w _ v e l o c i t y i
where n e w _ f l i g h t _ t i m e i represents the updated flight time and c u r r e n t _ m i l e i represents the mile optimized by the Gray Wolf algorithm.

3.3. Steps of GWO to Solve the Multi-UAV Path Planning Problem

The GWO algorithm is used to solve the multi-UAV cooperative path planning problem as follows.
Step 1: Set the start point and the goal point. Set the maximum iteration number of the algorithm G max , the total number of gray wolves N , the Wolf detection proportion factor α, the step size factor C , and the maximum walk limit number T max . Initialize the wolf pack population and number of UAVs.
Step 2: Judge whether G G max is satisfied. If it meets this rule, return to Step 3; otherwise, end the algorithm. The global optimal position obtained in Step 7 is the global.
Step 3: Update the UAV number n = n + 1 to judge whether it meets n   < UAVs; if it meets this rule, go to Step 4; otherwise, go to Step 5 and save the value of the mile.
Step 4: According to Equations (13)–(17), calculate the individual fitness of the wolves for the UAV itself, and update the mile and fitness; return to Step 3.
Step 5: Conduct interaction according to UAV interaction; according to the mile and the velocity of the UAV, calculate the flight time of the UAV.
Step 6: According to Equations (18)–(20), update the flight time of each UAV; update the iteration number of the algorithm G = G + 1 ; return to Step 2.
Step7: Output: The flight time of each UAV, the mile of each UAV and the fitness of each UAV.

4. Simulation and Analysis

To evaluate the proposed method, a matlab-based simulator was built. The environment is an open space with the size of 100 M × 100 M × 100 M, which includes randomly generated obstacles. The simulation has a multi-agent system, which is composed of 4 UAVs. The start point is set up as [10,10,90,90; 10,90,10,90; 10,10,10,10]. The goal point is set up as [50,50,50,50; 50,50,50,50; 50,50,50,50]. Table 1 gives the GWO parameters. The parameters of UAV performance are shown in Table 2.
Figure 3a reveals a set of curves about the fitness change of UAVs based on GWO. Figure 3b is a set of curves about the fitness change of UAVs based on PSO. Figure 3c denotes a set of curves about the fitness change of UAVs based on AFO. Figure 3d shows a set of curves about the fitness change of UAVs based on GA. As can be seen from Figure 3, each algorithm can allow the fitness of the UAV to converge. Figure 4a reveals a set of curves about the flight time change of UAVs based on GWO. Figure 4b denotes a set of curves about the flight time change of UAVs based on PSO. Figure 4c is a set of curves about the flight time change of UAVs based on AFO. Figure 4d shows a set of curves about the flight time change of UAVs based on GA. As can be seen from Figure 4, GWO can make the UAV finally reach a consistent time. As can also be seen from Table 3, the variance of GWO is better than others. It can be seen from Figure 4b–d that PSO and AFO and GA do not completely match the final arrival time of UAV. Performance is not as good as GWO, so GWO is superior to PSO and AFO and GA. Figure 5 shows that the algorithm can plan the path of multiple UAVs, so that they can arrive at the same time.
Comparing the four algorithms, it can be found that PSO is easy to fall into the local optimal solution, while GWO, AFO and GA are easy to jump out of the local optimal solution. In order to make a more intuitive comparison, the GWO algorithm, PSO algorithm, AFO algorithm and GA algorithm were quantitatively analyzed, and the analysis results are presented in Table 3 and Figure 6. Figure 6a shows a set of box-plots about the value of the mean error of difference of the flight time between UVAs by GWO, PSO, AFO and GA. Figure 6b shows a set of box-plots about the difference of flight times between UAVs by GWO, PSO, AFO and GA. From the box plot, it can be analyzed that the median gap between GWO and AFO is very small during each generation iteration process, which is better than PSO and GA. The GWO is less volatile than the AFO, which means that the GWO is more stable. However, the outliers of GWO seem to be more than those of AFO, which is due to the insufficient convergence of GWO in the beginning. In order to better explain the problem, we need to explain the problem combined with Figure 4a. As can be seen from Figure 4a, the convergence of the GWO algorithm is insufficient in the beginning, and the convergence is fully achieved in the middle and late stages. This explains why there are many outliers, but the volatility is small by GWO algorithm. Although AFO performance looks like the GWO, combined with Figure 4b it will look to have a similar median and GWO, as AFO just makes part of the UAVs completely reach the time consistency, and make the average smaller, but the volatility will be very big, so the AFO box diagram box will look bigger than the GWO box, of which the AFO volatility is greater than the GWO. The closer the value of the mean error of flight time is to 0, the more time consistency requirements there are, as the value of the mean error of flight time should ideally be 0. It can be seen from Table 3 that the mean error of flight time between UAVs of the GWO is 0.213, which is superior to PSO (0.382), AFO (0.315) and GA (0.825). The simulation results are representative in the scenario of path planning with time windows for multiple UAVs. However, the current experiment number is still small, and the scene richness of the algorithm application is still insufficient. Further research should be made to reach a more general conclusion; within this range, GWO is superior to PSO, AFO and GA.

5. Conclusions

In this paper, we propose an optimization method to solve the path planning problem in complex environments. The Gray Wolf optimization (GWO) algorithm is employed to search the optimal path. In addition, we also introduce an interaction rule to exchange information to obtain the flight times of UAVs. Experimental results show that our method can effectively solve the problem of path planning with time windows in complex conditions, and the obtained simulation results are somewhat representative in the mountain scenario. The experimental results verify that the proposed method can plan a safe flight path in the process of multi-UAV flight, and reach the goal point in the same time. The mean error of flight times between UAVs of the GWO is 0.213, which is superior to PSO (0.382), AFO (0.315) and GA (0.825).
In future, research on path planning of multiple UAVs will use more advanced swarm intelligence algorithms to solve problems with more complex scenarios and more constraints, such as shallow water detection and forest rescue.

Author Contributions

Conceptualization, Y.L., C.Z. and C.H.; investigation, Y.L., C.Z. and C.H.; validation, Y.L., C.Z. and C.H.; writing—original draft, Y.L., C.Z. and C.H.; and writing—review & editing, Y.L., C.Z. and C.H. All authors have read and agreed to the published version of the manuscript.

Funding

This work is supported by the National Natural Science Foundation of China (No. 61703047).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Alevizos, E.; Oikonomou, D.; Argyriou, A.V.; Alexakis, D.D. Fusion of Drone-based RGB and Multispectral Imagery for Shallow Water Bathymetry Inversion. Remote Sens. 2022, 14, 1127. [Google Scholar] [CrossRef]
  2. Bandini, F.; Lopez-Tamayo, A.; Merediz-Alonso, G.; Olesen, D.; Jakobsen, J.; Wang, S.; Garcia, M.; Bauer-Gottwein, P. Unmanned Aerial Vehicle Observations of Water Surface Elevation and Bathymetry in the Cenotes and Lagoons of the Yucatan Peninsula, Mexico. Hydrogeol. J. 2018, 26, 2213–2228. [Google Scholar] [CrossRef] [Green Version]
  3. Specht, C.; Lewicka, O.; Specht, M.; Dąbrowski, P.; Burdziakowski, P. Methodology for Carrying out Measurements of the Tombolo Geomorphic Landform Using Unmanned Aerial and Surface Vehicles near Sopot Pier, Poland. J. Mar. Sci. Eng. 2020, 8, 384. [Google Scholar] [CrossRef]
  4. Specht, M.; Stateczny, A.; Specht, C.; Widźgowski, S.; Lewicka, O.; Wiśniewska, M. Concept of an Innovative Autonomous Unmanned System for Bathymetric Monitoring of Shallow Waterbodies (INNOBAT System). Energies 2021, 14, 5370. [Google Scholar] [CrossRef]
  5. Wang, D.; Xing, S.; He, Y.; Yu, J.; Xu, Q.; Li, P. Evaluation of a New Lightweight UAV-borne Topobathymetric LiDAR for Shallow Water Bathymetry and Object Detection. Sensors 2022, 22, 1379. [Google Scholar] [CrossRef] [PubMed]
  6. Cao, W.; Xu, S. Multiple Unmanned Aerial Vehicles Cooperation Architectures and Its Performances Analysis. Tactical Missile Technol. 2017, 3, 53–57. (In Chinese) [Google Scholar]
  7. Feng, Q.; Gao, J.; Deng, X. Path Planner for UAVs Navigation Based on A Algorithm Incorporating Intersection. In Proceedings of the 2016 IEEE Chinese Guidance, Navigation and Control Conference (IEEE CGNCC2016), Nanjing, China, 12–14 August 2016. [Google Scholar]
  8. Dong, Z.; Chen, Z.; Zhou, R.; Zhang, R. A hybrid approach of virtual force and A* search algorithm for UAV path re-planning. In Proceedings of the IEEE Conference on Industrial Electronics & Applications, Beijing, China, 21–23 June 2011. [Google Scholar]
  9. Li, X.; Fang, Y.; Fu, W. Obstacle Avoidance Algorithm for Multi-UAV Flocking Based on Artificial Potential Field and Dubins Path Planning. In Proceedings of the 2019 IEEE International Conference on Unmanned Systems (ICUS), Beijing, China, 17–19 October 2019. [Google Scholar]
  10. Clerc, M. Particle Swarm Optimization; Wiley: Hoboken, NJ, USA, 2006. [Google Scholar]
  11. Yong, L.; Yu, L.; Yipei, G.; Kejie, C. Cooperative path planning of robot swarm based on ACO. In Proceedings of the IEEE Information Technology, Networking, Electronic and Automation Control Conference, Chengdu, China, 15–17 December 2017. [Google Scholar]
  12. Zhou, J.; Dai, G.Z.; He, D.Q.; Ma, J.; Cai, X.Y. Swarm Intelligence: Ant-Based Robot Path Planning. In Proceedings of the Fifth International Conference on Information Assurance and Security, Xi’an, China, 18–20 August 2009. [Google Scholar]
  13. Agrawal, A.; Sudheer, A.P.; Ashok, S. Ant colony-based path planning for swarm robots. In Proceedings of the Conference on Advances in Robotics, Goa, India, 2–4 July 2015; pp. 1–5. [Google Scholar]
  14. Peng, J.; Li, X.; Qin, Z.Q.; Luo, G. Robot Global Path Planning Based on Improved Artificial Fish-Swarm Algorithm. Res. J. Appl. Sci. Eng. Technol. 2013, 5, 2042–2047. [Google Scholar] [CrossRef]
  15. Yi, Z.; Hua, Y. Path planning of mobile robot based on hybrid improved artificial fish swarm algorithm. Vibroeng. Procedia 2018, 17, 130–136. [Google Scholar]
  16. Yao, Z.H.; Ren, Z.H.; Zhu, X.H.; Li, S.C. Path Planning for Coalmine Rescue Robot based on Hybrid Adaptive Artificial Fish Swarm Algorithm. TELKOMNIKA Indones. J. Electr. Eng. 2014, 12, 7223–7232. [Google Scholar] [CrossRef]
  17. Duan, H.; Qiao, P. Pigeon-inspired optimization: A new swarm intelligence optimizer for air robot path planning. Int. J. Intell. Comput. Cybern. 2014, 7, 24–37. [Google Scholar] [CrossRef]
  18. Hidalgo-Paniagua, A.; Vega-Rodríguez, M.A.; Ferruz, J.; Pavón, N. Solving the multi-objective path planning problem in mobile robotics with a firefly-based approach. Soft Comput. 2017, 21, 949–964. [Google Scholar] [CrossRef]
  19. Chen, G.; Cruz, J.B. Genetic Algorithm for Task Allocation in UAV Cooperative Control. In Proceedings of the AIAA Guidance, Navigation, and Control Conference and Exhibit, Austin, TX, USA, 11–14 August 2003; p. 5582. [Google Scholar]
  20. Mirjalili, S.; Mirjalili, S.M.; Lewis, A. Grey Wolf Optimizer. Adv. Eng. Softw. 2014, 69, 46–61. [Google Scholar] [CrossRef]
  21. Gharesifard, B.; Cortés, J. Continuous-time distributed convex optimization on weight-balanced digraphs. In Proceedings of the 2012 IEEE 51st IEEE Conference on Decision and Control (CDC), Maui, HI, USA, 10–13 December 2012. [Google Scholar]
  22. Olfati-Saber, R.; Murray, R.M. Consensus problems in networks of agents with switching topology and time-delays. IEEE Trans. Autom. Control 2004, 49, 1520–1533. [Google Scholar] [CrossRef] [Green Version]
  23. Jepsen, T.C. Distributed Coordination of Multi-agent Networks; Springer: New York, NY, USA, 2013. [Google Scholar]
  24. Qu, Z. Cooperative Control of Dynamical Systems: Applications to Autonomous Vehicles; Springer: New York, NY, USA, 2009. [Google Scholar]
  25. Wei, R.; Beard, R.W.; Atkins, E.M. Information consensus in multivehicle cooperative control. IEEE Control Syst. Mag. 2007, 27, 71–82. [Google Scholar]
  26. Liu, Y.; Li, W.; Wu, H.; Song, W. Track Planning for Unmanned Aerial Vehicles Based on Wolf Pack Algorithm. J. Syst. Simul. 2015, 27, 1838. [Google Scholar]
  27. Mech, L.D. Leadership in Wolf, Canis lupus, Packs. Can. Field Nat. 2000, 114, 259–263. [Google Scholar]
  28. Muro, C.; Escobedo, R.; Spector, L.; Coppinger, R.P. Wolf-pack (Canis lupus) hunting strategies emerge from simple rules in computational simulations. Behav. Process. 2011, 88, 192–197. [Google Scholar] [CrossRef]
  29. Madden, J.D.; Arkin, R.C.; Macnulty, D.R. Multi-robot system based on model of wolf hunting behavior to emulate wolf and elk interactions. In Proceedings of the IEEE International Conference on Robotics & Biomimetics, Tianjin, China, 14–18 December 2010. [Google Scholar]
  30. Baan, C.; Bergmüller, R.; Smith, D.W.; Molnar, B. Conflict management in free-ranging wolves, Canis lupus. Anim. Behav. 2014, 90, 327–334. [Google Scholar] [CrossRef] [Green Version]
  31. Duan, H.; Yang, Q.; Deng, Y.; Li, P.; Qiu, H.; Zhang, T.; Zhang, D.; Huo, M.; Shen, Y. Unmanned aerial systems coordinate target allocation based on wolf behaviors. Sci. China Inf. Sci. 2019, 62, 205–207. [Google Scholar] [CrossRef] [Green Version]
  32. Bo, Z.; Duan, H.B. Three-Dimensional Path Planning for Uninhabited Combat Aerial Vehicle Based on Predator-Prey Pigeon-Inspired Optimization in Dynamic Environment. IEEE/ACM Trans. Comput. Biol. Bioinform. 2017, 14, 97–107. [Google Scholar]
  33. Duan, H.; Li, P.; Shi, Y.; Zhang, X.; Sun, C. Interactive Learning Environment for Bio-Inspired Optimization Algorithms for UAV Path Planning. IEEE Trans. Educ. 2015, 58, 276–281. [Google Scholar] [CrossRef]
  34. Qiu, H.; Duan, H. Multiple UAV distributed close formation control based on in-flight leadership hierarchies of pigeon flocks. Aerosp. Sci. Technol. 2017, 70, 471–486. [Google Scholar] [CrossRef]
Figure 1. The network topology is the balance diagram.
Figure 1. The network topology is the balance diagram.
Biomimetics 07 00225 g001
Figure 2. Wolves’ hunting model.
Figure 2. Wolves’ hunting model.
Biomimetics 07 00225 g002
Figure 3. A set of change curves about the fitness of the UAVs by GWO, PSO, AFO and GA. (a) shows a set of change curve about the fitness of the UAVs by GWO; (b) reveals a set of change curve about the fitness of the UAVs by PSO; (c) indicates a set of change curve about the fitness of the UAVs by AFO; (d) reflects a set of change curve about the fitness of the UAVs by GA.
Figure 3. A set of change curves about the fitness of the UAVs by GWO, PSO, AFO and GA. (a) shows a set of change curve about the fitness of the UAVs by GWO; (b) reveals a set of change curve about the fitness of the UAVs by PSO; (c) indicates a set of change curve about the fitness of the UAVs by AFO; (d) reflects a set of change curve about the fitness of the UAVs by GA.
Biomimetics 07 00225 g003
Figure 4. A set of change curves about the flight time of the UAVs by GWO, PSO, AFO and GA. (a) shows a set of change curve about the flight time of the UAVs by GWO; (b) reveals a set of change curve about the flight time of the UAVs by PSO; (c) indicates a set of change curve about the flight time of the UAVs by AFO; (d) reflects a set of change curve about the flight time of the UAVs by GA.
Figure 4. A set of change curves about the flight time of the UAVs by GWO, PSO, AFO and GA. (a) shows a set of change curve about the flight time of the UAVs by GWO; (b) reveals a set of change curve about the flight time of the UAVs by PSO; (c) indicates a set of change curve about the flight time of the UAVs by AFO; (d) reflects a set of change curve about the flight time of the UAVs by GA.
Biomimetics 07 00225 g004
Figure 5. Time-consistent path planning for multiple UAVs.
Figure 5. Time-consistent path planning for multiple UAVs.
Biomimetics 07 00225 g005
Figure 6. (a) shows a set of box-plots about average of difference of UAV flight times by GWO, PSO, AFO and GA. (b) shows a set of box-plots about difference of UAV flight times by GWO, PSO, AFO and GA.
Figure 6. (a) shows a set of box-plots about average of difference of UAV flight times by GWO, PSO, AFO and GA. (b) shows a set of box-plots about difference of UAV flight times by GWO, PSO, AFO and GA.
Biomimetics 07 00225 g006
Table 1. Parameters of GWO algorithm.
Table 1. Parameters of GWO algorithm.
Parameters of GWONumerical Value
Iterations100
Dimensions3
Total number of wolves100
Scale factor of detecting wolves0.5
Step factor20
Number of directions to summoning20
Critical distance10
The maximum number of rounding up10
Table 2. Parameters of UAV performance.
Table 2. Parameters of UAV performance.
Parameters of UAV PerformanceNumerical Value
Minimum velocity100
Maximum velocity3
Maximum angle of turning100
Maximum angle of downthrust0.5
Minimum distance from the obstacle20
Safe distance20
Table 3. Simulation results comparison of difference of UAV flight times (400 times, all expected value is 0).
Table 3. Simulation results comparison of difference of UAV flight times (400 times, all expected value is 0).
MethodOptimal ValueMean ValueWorst ValueVariance
PSO0.080.3824.410.146
GWO0.0170.2132.570.0453
AFO0.050.3155.190.0992
GA0.0290.8252.690.703
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Zhang, C.; Liu, Y.; Hu, C. Path Planning with Time Windows for Multiple UAVs Based on Gray Wolf Algorithm. Biomimetics 2022, 7, 225. https://doi.org/10.3390/biomimetics7040225

AMA Style

Zhang C, Liu Y, Hu C. Path Planning with Time Windows for Multiple UAVs Based on Gray Wolf Algorithm. Biomimetics. 2022; 7(4):225. https://doi.org/10.3390/biomimetics7040225

Chicago/Turabian Style

Zhang, Changchun, Yifan Liu, and Chunhe Hu. 2022. "Path Planning with Time Windows for Multiple UAVs Based on Gray Wolf Algorithm" Biomimetics 7, no. 4: 225. https://doi.org/10.3390/biomimetics7040225

Article Metrics

Back to TopTop