Abstract

In the complex underground environment, the paths planned for coal mine patrol robot are often too long and unsmooth under the influence of low visibility and poor road conditions. To solve the problems, this paper improves the hybrid algorithm between the improved artificial fish swarm algorithm (AFSA) and the dynamic window algorithm (DWA) for global path planning of coal mine patrol robot and introduces the improved genetic algorithm (GA) to enhance the path planning accuracy. Based on the global optimal path, the improved DWA was adopted to design a new adaptive trajectory evaluation function, which improves the ability of the patrol robot to avoid local obstacles. The proposed optimization algorithm was proved feasible through simulations. In addition, a simulation platform for the control of coal mine patrol robot was established, using the software development platform for coal mine patrol robot and robot operating system (ROS). The simulation results show that the improvement shortened the path length by 0.12 m, reduced the time by 3.14 s, and removed many turning points and redundant points. Therefore, the proposed improved hybrid path planning algorithm is effective and superior.

1. Introduction

The path planning of coal mine patrol robot, the key to autonomous navigation, falls into local path planning and global path planning [13]. It is important for coal mine patrol robot to search for the optimal path in the complex underground environment. The path optimization would significantly facilitate all underground operations and enhance the working efficiency of the robot.

Bayat et al. [4] improved the fixed step size and visual range in the traditional artificial fish swarm algorithm (AFSA) and proposed the visual range and step size based on the logarithmic function, thereby optimizing the path planning. According to the no free lunch (NFL) theorem, Yu et al. [5] put forward an intelligent bionic algorithm and utilized the algorithm collaboratively with other intelligent algorithms. The collaborative approach can plan better paths and apply them to a wider range than a single bionic path planning algorithm. Zhang et al. [6] improved the AFSA to improve the global search ability of robot. The improved AFSA (IAFSA) boasts a good real-time performance, achieves a high stability, and generates desirable paths at an acceptable time cost. Guo et al. [7] proposed an improved artificial fish swarm algorithm and combined the MS algorithm with the proposed IAFSA algorithm. The MS algorithm first calculates the top K shortest paths, and then the IAFSA algorithm quickly optimizes these paths. Zhou and Liu [8] proposed to adjust the viewable domain, movement step, and crowding factor of artificial fish by adaptive adjustment factor, so that the traversal of the algorithm can be improved to obtain the global optimum and achieve local search at the same time. Ma et al. [9] designed a UAV autonomous route planning method based on an ant colony algorithm that improves the optimization of artificial fish populations, which is faster and of higher quality than traditional methods. Zhang and Yu [10] integrated the optimization factors of the Tianniu whisker algorithm in the artificial fish swarm algorithm process, and the paths planned by the hybrid algorithm decreased significantly in terms of length and number of path vertices. Chang et al. [11] propose a better azimuth range constraint; that is, after simulating the pretrajectory, the better azimuth range is calculated according to the calculation criterion, then the pretrajectory within the better azimuth range at the next moment is selected, and finally the velocity corresponding to the optimal trajectory is determined by the trajectory evaluation function. Fox et al. [12] created the dynamic window algorithm (DWA). After determining the dynamic window, the DWA collects samples from the feasible velocity space, simulates each velocity sample to obtain the motion trajectory, and identifies the best velocity sample by the trajectory evaluation function. Based on the best sample, the robot is controlled to complete local path planning. To avoid dynamic obstacles, Chen [13] developed a DWA suitable for complex environments. The evaluation function was optimized to consider the distance increment of the robot moving towards the target point, and the minimum distance between the robot and the obstacle. The superiority of their DWA was demonstrated through simulation. The path planning method mentioned above has the disadvantages of poor search and development balance, slow convergence at the later stage of search, and inability to find the exact value. It is easy to fall into local optimum and convergence accuracy is not high.

In the complex underground environment, the paths planned for coal mine patrol robot are often too long and unsmooth. To solve the problems, this paper improves the hybrid AFSA-DWA path planning algorithm. The improved AFSA was adopted for global path planning of coal mine patrol robot, and the improved genetic algorithm (GA) was introduced to enhance the path planning accuracy of coal mine patrol robot. Based on the global optimal path, the improved DWA was adopted to design a new adaptive trajectory evaluation function, which improves the ability of the patrol robot to avoid local obstacles. It can make the planning path of coal mine inspection robot smoother, significantly reduce the small angle turning points and redundant points, and shorten the planning path length of coal mine inspection robot. Simulation results show that the hybrid algorithm enables coal mine patrol robot to plan paths more effectively and demonstrate the feasibility and effectiveness of our algorithm.

2. Path Planning Model

2.1. Mathematical Model

For a moving coal mine patrol robot, the shortest distance from the current point to the target point can be solved according to the path length [14]. Suppose there are n nodes on a path. Then, the path contains n − 1 segments. Each segment can be expressed as l = (l1, l2, …, ln), where li is a node on that path. Figure 1 shows the robot path with the least redundancy and no chance of collision from the n − 1-th node (xn − 1, yn − 1) to the n-th node (xn, yn). When the coal mine inspection robot inspects the roadway, it needs to move over the obstacle to the next point, and the transition point (xr, yr) needs to be added between the two points affected by the obstacle so that the inspection robot can complete the inspection task.

As shown in Figure 1, the mathematical model for coal mine patrol robot to move from the n − 1-th node (xn − 1, yn − 1) to the n-th node (xn, yn) can be expressed as

Let θn − 1 and Vn − 1 be the turning angle and velocity of coal mine patrol robot at the n − 1-th node relative to the X-axis, respectively. Then, we have

From formulas (1) and (2), the path from one point to another can be divided into the path planning from the starting point to the transition point and finally to the target point during the robot operation; based on this, the path planning model for coal mine patrol robot can be obtained aswhere l is the distance between two nodes, Vn − 1 is the velocity of robot at the n − 1-th node, and θn − 1 is the turning angle of robot at the n-th node.

2.2. Objective Function

The path planning of coal mine patrol robot mainly considers three optimization parameters: total path length, smoothness, and security.

2.2.1. Total Path Length

When path l is feasible, the path length f1(l) can be expressed as

When path l is infeasible, the path length f1(l) can be expressed aswhere is the length of segment and is the penalty term against infeasible path.

2.2.2. Smoothness

For a path containing n nodes, there exist n − 2 angles between the segments. When path l is feasible, the smoothness f2(θ) of the path can be expressed as

When path l is infeasible, the smoothness f2(θ) of the path can be expressed aswhere θn − 1 is the angle between segments li − 1li and lili + 1 and C1 is the penalty term against infeasible path.

2.2.3. Security

When path l is feasible, the security f3(l) of the path can be expressed aswhere is the shortest distance from the coal mine patrol robot to the obstacle on the planned path and a is the path security coefficient of coal mine patrol robot.

When path l is infeasible, the security f3(l) of the path can be expressed aswhere C2 is the penalty term against infeasible path.

Through the above analysis, proper weights a1, a2, and a3 were assigned to different optimization parameters, according to the importance of f1(l), f2(l), and f3(l) to the path planning of coal mine patrol robot. The three resulting weight matrices of the three objectives were multiplied with the matrix composed of the three optimization parameters, producing the objective function f(l) for path l:

The optimal path of coal mine patrol robot can be obtained through optimization of the objective function f(l).

3. Path Planning of Hybrid Algorithm

As mentioned before, in the complex underground environment, the paths planned for coal mine patrol robot are often too long and unsmooth. To solve the problems, this section optimizes the above objective function with the improved hybrid AFSA-DWA path planning algorithm, based on the mathematical model for the path planning of coal mine patrol robot, and thereby obtains the optimal path.

3.1. Improved AFSA

The AFSA was called for the global path planning of coal mine patrol robot. The three behaviors of AFSA, namely, foraging, clustering, and rear ending, were adopted to find the robot a safe, feasible path towards the designated location [15]. Figure 2 illustrates the AFSA search for coal mine patrol robot, where Xi, Xj, and Xv are the positions of artificial fishes i, j, and , respectively, stepλ is the step size of the motion, and Lv is the visual range.

The visual range Lv, motion step size stepλ, and the fish swarm concentration Λ corresponding to the AFSA search can be expressed asLij is the distance between artificial fishes i and j; ni is the number of fishes in the current visual range; N is the total number of fishes in the swarm. If LV is far greater than Lij, it takes a long time for coal mine patrol robot to plan a path. If Λ is relatively large, the robot may not find the global optimal path easily. If stepλ is relatively large, the path planned by the robot would contain many unsmooth turning points, and many redundant points.

To overcome the defects of traditional AFSA in path planning for coal mine patrol robot, the parameters of AFSA were improved as follows:(1)To shorten the path planning time of coal mine patrol robot, the visual range of artificial fishes was improved to adaptively adjust the visual range LV:where Lvmin and Lvmax are the minimum and maximum visual ranges of artificial fishes, respectively, and Ii and I are the current number of iterations and maximum number of iterations, respectively.(2)To reduce the turning points and redundant points on the path planned for coal mine patrol robot, and to make the path smoother, the motion step size of artificial fishes was improved, such that coal mine patrol robot can adaptively adjust the motion step size between different nodes:where stepλmin and stepλmax are the minimum and maximum step sizes, respectively.

In order to solve the problem of local optimality in the optimization process of path planning of the coal mine inspection robot, by improving the fish concentration in the visual field of the artificial fish, the coal mine inspection robot can adaptively adjust the fish concentration of the transition point between the transition node and target point :

In the formula, Λmin and Λmax are the minimum and maximum artificial fish concentrations in the field of vision of the artificial fish, respectively.

Although the above improvement of AFSA can optimize the path planning of coal mine inspection robot, when the target points of coal mine inspection robot remain unchanged, the target point density of the optimal neighborhood coal mine inspection robot is reduced, slowing down the convergence speed and increasing the path planning time. To solve the above problems, the genetic algorithm introduces artificial fish group algorithm. After introducing the genetic algorithm, the Metropolis criterion is used as the state update criterion of the artificial fish, some of the artificial fish with poor state are retained, the search space of the algorithm is expanded, the threshold value of the fitness function is set, the artificial fish larger than the threshold value is discarded, the remaining artificial fish are crossed by the genetic algorithm to produce new artificial fish for supplementation, and the mutation operation is performed on the artificial fish with the optimal state afterwards. The optimal artificial fish state is obtained, and adaptive probability factors are designed for crossover and mutation operations. The probability factor is large in the early stage of the algorithm search to ensure the diversity of artificial fish samples, and the global search ability of the algorithm is improved, and the probability factor becomes smaller in the late stage of the algorithm to accelerate the convergence speed of the algorithm as follows.

Firstly, the control parameter T is introduced to judge whether the position of fish i is updated by the Metropolis criterion. Whether the coal mine patrol robot updates the next set of target points can be judged by the following rule: is a random number generated in the random distribution [0, 1] and T is the control parameter.

The optimal target point solved for coal mine patrol robot is updated, and the bulletin information is updated likewise. Then, the set of target points for the robot is sorted by the fitness function. The threshold K of the fitness function can be calculated bywhere Fm is the median of the fitness function.

The fishes with a fitness smaller than K are retained and subjected to adaptive crossover to generate new target points. The number of new target points is equal to the number of points in the set of target points. Then, the new position Xnew of each target point of coal mine patrol robot can be obtained aspc, pcmin, and pcmax are the adaptive crossover probability, the minimum crossover probability, and the maximum crossover probability, respectively.

The optimal fish state after the crossover is subjected to mutation, producing the new optimal target position Xbest for coal mine patrol robot:pm, pmmin, and pmmax are the adaptive mutation probability, the minimum mutation probability, and the maximum mutation probability, respectively.

After that, it is necessary to judge whether the fitness Xbest is greater than Xbest. If yes, the bulletin will be updated; otherwise, the iterations will continue until the global optimal path is found (i.e., the termination condition is satisfied).

Figure 3 shows the flow of the improved AFSA.

The improved AFSA was applied to coal mine patrol robot. Specifically, the Metropolis criterion was introduced to guide the state update of artificial fishes. Then, a threshold was set up for the fitness function. The target points of coal mine patrol robot with a fitness smaller than threshold k were subjected to crossover, and mutation by the GA. In this way, the optimal target point Xbest was identified for the robot. In addition, adaptive probabilities were designed for the crossover and mutation operations. This ensures the diversity of the set of target points, enhances the global search ability of the algorithm, and accelerates the algorithm convergence.

On MATLAB, a 20 × 20 grid map was developed as the simulation environment. The path planning was simulated with the goal of minimizing the value of the objective function:

Figure 4 and Table 1 compare the simulation results of the original and improved AFSAs in the complex environment.

As shown in Figure 4 and Table 1, the optimal path obtained by the AFSA contained many redundant points and turning points, which hinder the motion of the patrol robot. The improved AFSA achieved a high search efficiency and planned a relatively smooth path. Compared with the path planned by the original AFSA, the path planned by the improved AFSA contains 3 fewer turning points and saves 5.3 m in length. The latter path is obviously more suitable for robot motions.

3.2. Improved Hybrid AFSA-DWA Path Planning Algorithm

In the complex underground environment of coal mine, it is crucial for the patrol robot to effectively avoid dynamic and temporary obstacles [16]. The above improved AFSA can search the optimal path globally. But Figure 4 shows that the improved AFSA led to many small turning angles and points in local areas during obstacle avoidance, which suppress the obstacle avoidance of coal mine patrol robot. To solve the limitation, the improved DWA was added to the local path planning of the robot to derive a new trajectory evaluation function. Besides, a hierarchical evaluation algorithm was proposed with the aid of reference lines. The new adaptive trajectory evaluation function can be expressed aswhere is the shortest distance from the end point of the velocity trajectory to the global optimal path, dG(·) is the shortest distance from the end point of the velocity trajectory to the local target point, and is an adaptive distance variable.

Firstly, the velocity samples with obstacles on the simulated trajectory were discarded. To avoid blind search, and to enhance algorithm efficiency, the information about the global planned path was introduced to the trajectory evaluation function.

The can be expressed aswhere (xend, yend) are the coordinates of the end point of the trajectory, () are the coordinates of the global optimal path, and (xG, yG) are the coordinates of the local target point of the patrol robot. The adaptive distance variable can be defined aswhere is the trajectory moving distance in the dynamic window of the patrol robot and (xt, yt) are the coordinates of the patrol robot at time t.

Next, AFSA was fused with DWA. On the upper layer, the AFSA was called to obtain the global path information of coal mine patrol robot underground. Based on the global path information, the improved DWA was employed to perform local optimization, reducing the small angle turning points and redundant points in the global path information. The improved hybrid path planning algorithm makes an overall design of the path for the patrol robot, such that the robot can plan underground paths more robustly. Figure 5 shows the overall design of the hybrid path planning algorithm.

The improved hybrid AFSA-DWA path planning algorithm improves the Lv, Λ, and stepλ of AFSA for global path planning. Then, the GA is introduced to keep the size of the set of target points constant. After obtaining the global path information, the improved DWA is adopted to design a new trajectory evaluation function, with the global path as the reference. The new function makes the local path planning more accurate. In this way, the hybrid algorithm can detect the optimal path for coal mine patrol robot.

After that, MATLAB simulation was carried out on a 20 × 20 grid map. Two scenarios were considered in the simulation: the presence of static obstacles, and the presence of dynamic obstacles. Formula (19) was adopted as the objective function. Figure 6 and Table 2 show the simulation results of the original AFSA and our hybrid algorithm.

As shown in Figure 6 and Table 2, the improved hybrid AFSA-DWA algorithm shortened the optimal path length by 5.5 m from that of IAFSA and reduced the number of turning points on the path by five. The path planned by the hybrid algorithm is more suitable for robot motions. When the environment contained dynamic obstacles, the hybrid algorithm could avoid all the obstacles and obtain the shortest, most smooth path under the guidance of the global optimal path, wrapping up the task of path planning.

4. Simulations

4.1. Simulation Plan

Mine safety inspection is one of the key tasks to ensure the safety of mining. At present, the manual inspection method has problems such as large workload, low efficiency, excessive reliance on the experience of inspectors, and waste of human resources. Mine inspection robot is of great significance to replace manual inspection, achieve intuitive visual management, reduce labor intensity, improve the level of coal mine management, promote the mine work management mode to digital, modern direction, and ensure mine safety production.

The underground workface of coal mine patrol robot has a complex environment and multiple obstacles. Multiple way points and mobile obstacles were set up to simulate the underground environment of coal mine. Figure 7 shows the simulation environment.

The simulation environment was constructed in the robot operating system (ROS), producing a simulation platform for the control of coal mine patrol robot (Figure 8). In the ROS-based underground simulation environment, the coal mine patrol robot was connected to the simulation platform for robot control via USB. Then, the improved hybrid AFSA-DWA path planning algorithm was imported, and random target points were selected in the established environment via the platform. The autonomous motions and obstacle avoidance of coal mine patrol robot were observed to obtain the global optimal path.

4.2. Results Analysis

To verify the superiority of the improved hybrid AFSA-DWA algorithm in path planning of coal mine patrol robot, mobile obstacles were added to the established environment, and the original AFSA and the improved hybrid AFSA-DWA algorithm were tested on the simulation platform. Figure 9 shows the motion and obstacle avoidance of the robot. Table 3 presents the theoretical and practical paths planned by the two algorithms. Figures 10 and 11 show the path planned by the original AFSA and the improved hybrid AFSA-DWA algorithm, respectively.

As shown in Table 3, the improved hybrid path planning algorithm performed well in planning a smooth path with relatively few redundant points and turning points for coal mine patrol robot. Compared with the AFSA, the improved hybrid AFSA-DWA algorithm planned local path very efficiently, shortened the path by 0.12 m, and saved 3.14 s of planning time.

As shown in Figures 10 and 11, the path planned by the proposed improved hybrid IAFSA-DWA algorithm was smoother, involving much fewer turning points and redundant points, than that planned by the traditional AFSA. The proposed algorithm provides an effective solution to the nonsmoothness and heavy presence of turning points and redundant points faced by path planning of coal mine patrol robot. The simulation results confirm that the improved hybrid AFSA-DWA algorithm is a superior, feasible, and highly suitable method for path planning of robots.

5. Conclusions

Mine safety inspection is one of the key tasks to ensure the safety of mining. Currently, the manual inspection method has problems such as high workload, low efficiency, excessive reliance on inspector experience, and wasted human resources. Mine inspection robot is of great significance to replace the manual inspection, achieve intuitive visual management, reduce labor intensity, improve the level of coal mine management, promote the mine work management mode to digital, modern direction, and to ensure the safety of mine production.

To solve the problems of path planning for coal mine patrol robot (e.g., excessive length and nonsmoothness of the planned path), the merits of AFSA and DWA were integrated to propose an improved hybrid path planning algorithm. MATLAB simulations confirm that the proposed algorithm can significantly reduce the number of redundant points and turning points on the planned path and complete path planning more effectively than the original AFSA. In addition, a simulation platform for the control of coal mine patrol robot was established on coal mine patrol robot and ROS development platform. Through the simulations on the developed platform, it was observed that the improved hybrid path planning algorithm reduced the length of the planned path by 0.12 m, saved 3.14 s of planning time, and greatly lowered the number of turning points and redundant points, as compared to the original AFSA. Therefore, the proposed improved hybrid path planning algorithm is a feasible and superior way to overcome the excessive length and nonsmoothness of the path planned for coal mine patrol robot.

At present, the complex environment of underground coal mine has more influence on the path planning of coal mine inspection robots, and the large dust and strong noise environment of underground coal mine inspection robots restrict the collection of basic data such as equipment and operating space environment by the sensors of coal mine inspection robots, and the subsequent research needs to realize the all-round monitoring of working environment and equipment and further continue to improve the performance of path planning algorithm through the linkage of inspection robots and technicians to feed each other, so as to get a smoother and safer path.

Data Availability

The data used to support the findings of this study are available from the corresponding author upon request.

Conflicts of Interest

The authors declare that they have no conflicts of interest.

Acknowledgments

The key research was funded by the National Natural Science Foundation of China (Grant no. 51874158) and the Department of Education of Liaoning Province (Grant no. LJ2019ZL003).