Abstract

This paper presents an improved ant colony algorithm for the path planning of the omnidirectional mobile vehicle. The purpose of the improved ant colony algorithm is to design an appropriate route to connect the starting point and ending point of the environment with obstacles. Ant colony algorithm, which is used to solve the path planning problem, is improved according to the characteristics of the omnidirectional mobile vehicle. And in the improved algorithm, the nonuniform distribution of the initial pheromone and the selection strategy with direction play a very positive role in the path search. The coverage and updating strategy of pheromone is introduced to avoid repeated search reducing the effect of the number of ants on the performance of the algorithm. In addition, the pheromone evaporation coefficient is segmented and adjusted, which can effectively balance the convergence speed and search ability. Finally, this paper provides a theoretical basis for the improved ant colony algorithm by strict mathematical derivation, and some numerical simulations are also given to illustrate the effectiveness of the theoretical results.

1. Introduction

Path planning, which is one of the hot topics in motion control research, requires the control object to determine the path, avoid obstacles, and achieve the goal autonomously [1]. As a special kind of mobile robot, the omnidirectional mobile robot has wide application in the field of industrial transportation. With the increase of production cost and work efficiency, the path planning problem of the omnidirectional mobile vehicle needs to be resolved as soon as possible. The path planning problem of mobile robot was proposed in the 1960s. With the research of Lozano-Perez and Wesley [2], the problem has aroused the interest of many scholars.

Simulated annealing algorithm [3], potential function theory [4], genetic algorithm [5], particle swarm algorithm [6], and ant colony algorithm [7] are representative methods of path planning, which can find the shortest path. In addition, the research on path planning has made great progress in recent years. The idea of Mo and Xu [8] solved the path planning by PSO with the position updating strategy and biogeography particle swarm optimization algorithm to increase the diversity of population and optimize the paths in a static environment. Precup et al. [9] proposed that the adaptive charged system search algorithm was applied to the optimal path planning problem of multiple mobile robots in static environment. Several modifications and improvements of A star algorithm were introduced by Ducho et al. [10] and Guruji et al. [11] considering a static or dynamic environment. And it was the first time that MOVNS [12] was proposed to deal with the path planning problem of mobile robots about the path safety, length, and smoothness. In addition, many other findings also made contributions to the related path planning problem [1315].

Many scholars applied ant colony algorithm [16] to solve the path planning problem because it can represent obstacles flexibly and easily by using a tabu list. On this basis, the further research was carried out. Later, according to the characteristics of the above algorithms, some methods combined ant colony algorithm and other algorithms which were proposed and had more advantages than one algorithm, such as ant colony particle swarm algorithm [2] and ant colony genetic algorithm [17]. However, the application of ant colony algorithm is much more than that. As discussed by Tiwari and Vidyarthi [18], the ant colony optimization algorithm solved the scheduling problem effectively through a kind of special ants that remain alive till the fitter lazy ants are generated in the successive generations. Wang et al. [19] proposed a modified ACS scheme that can identify the true attack path even without the entire network routing information. Jiang et al. [20] presented a coevolutionary improved multiant colony optimization algorithm to design appropriate pipe routes in the layout space under various kinds of constraints. What is more, Saidi-Mehrabad et al. [21] also made some improvements to the ant colony algorithm to solve the problem. Therefore, solving the problem in accordance with the feature of the control object, environment, and existing methods is the best way.

So, accordingly, ant colony algorithm is a key point, because it is the basis of the above methods. Therefore, based on the motion characteristics of omnidirectional mobile vehicle, this paper proposes a kind of improved ant colony algorithm. The initial pheromone distribution is nonuniform, which helps reduce the blindness of the search. In the strategy of selection, heuristic information with direction is introduced to improve the probability of finding the optimal solution. And piecewise adjusting pheromone behavior helps avoid falling into local optimal solution. Finally, the pheromone coverage and updating strategy can ensure that the algorithm can find the optimal path strictly in theory.

2. Problem Statement

2.1. Control Object

As we all know, solving the path planning problem in accordance with the feature of the control object is the best way. Different from mobile robot, the omnidirectional mobile vehicle, as shown in Figure 1, is equipped with chassis and drive which can contribute to moving in any direction. In terms of its control system, the omnidirectional mobile vehicle has 8 basic motion units, upper, upper right, right, lower right, lower, lower left, left, and upper left, as shown in Figure 2. Therefore, its form of motion, which is the output of the motion path, can be composed of a number of basic motion units.

2.2. Problem Description

Without considering the omnidirectional mobile vehicle height, the working environment can be considered as a two-dimensional plane. So the path planning needs to solve three problems:(1)In a nonchanging work environment, find a path to connect the starting point and the ending point.(2)Find the shortest path with avoiding all obstacles.(3)The algorithm should have certain simplicity, low complexity, and good stability.

3. Mathematical Model

3.1. Environment Model

In practical applications, the electronic map is often needed to represent the working environment. This paper describes the work environment using the grid method in which the grid coordinates are replaced by the position of each center point. So working environment is divided into squares. And the obstacles are represented by gray grids (less than one by one count) distinguishing them from available parts. The area is numbered from top to bottom and from left to right in the literature [22], while the squares can be represented by the set of numbered which is shown in Figure 3. In order to identify obstacles, the white grid cell is represented by 0 and the gray grid unit is represented by 1. Thus, the working environment is represented by binary matrix, which is denoted by .

3.2. Path Representation

It can be known from the characteristics of the omnidirectional mobile vehicle and the environment representation that the resolution of the system is related to the number of grids. Finally, the path is obtained by adding the components of the solution step by step to obtain the solution. The path of the vehicle can be expressed as , the starting point is denoted as , and the ending point coordinate is denoted as . From the environmental model, we can know that the path can be expressed by the grid number and is replaced by , .

4. Improved Ant Colony Algorithm

4.1. Improvement Aspects

(1) Nonuniform Distribution of Initial Pheromone. In the initial phase of traditional ant colony algorithm, the pheromone distribution is described by dimensional matrix, where the element represents the initial value of pheromone in grid. As shown below,

To solve the problems of lack of initial pheromone and low speed of search, in literatures [10, 11] particle swarm optimization algorithm and genetic algorithm are proposed to generate an initial path which can be transformed into the initial pheromone distribution so as to reduce the blindness of the ant colony search. In order to improve the efficiency and simplicity of the algorithm, the nonuniform distribution of initial pheromone is proposed in this paper. So the pheromone distribution is described by matrix , where element , as shown below:where is the collection of all numbers between number and ; that is to say, ; is a constant greater than 1. Formula (2) indicates that the number of pieces of information between the starting point and the ending point is slightly higher than others. Similar to the principle of the zero point theorem, in view of the characteristics of the path, the probability of an arbitrary path set between the starting point and the ending point is 1. Therefore, the simple initial distribution strategy has advantages to reduce the blindness of ant colony search, shorten the path search time. And at the same time, it does not increase the complexity of the algorithm.

(2) Heuristic Strategy with Direction Information. In the traditional ant colony algorithm, the probability of the next node is selected by rotating the roulette wheel method as follows:where is the probability of the next node of , is the pheromone of the path from to , and is the pheromone coefficient. Even is the heuristic information of to , and is the heuristic information parameter, where is the distance between node and end node . and are the coordinates of and .

The direction information is proposed as the heuristic information of the node transfer strategy by Wang et al. [19] to solve the path planning problem without obstacle:where is the direction of information and is a constant little more than 1. In order to reduce the blindness of the search, the paper puts forward the strategy of the direction information, and the probability formula is where

The direction information is expressed as follows:where is the number of the same directions of node to next and node to end : . And is a constant slightly greater than 1. As shown in Figure 4, the next node of 17 may be 11, 12, 13, 16, 18, 21, 22, and 23, where node 13 has two same directions as the end, so the direction information is . And as such, the direction information of nodes 11, 12, 18, and 23 is , and for 16, 21, and 22 it is .

(3) Coverage and Updating Strategy. In the traditional ant colony algorithm, the next node position is decided by the roulette wheel method and repeated until the target point is obtained. The pheromones of all nodes are updated by the following rules after every ant searching:where is the evaporation rate of pheromone, where the function is to avoid the pheromone accumulation: . is the number of the ants starting from the starting point in every round. is the addition of the th round th ant. And is the path length of the th ant which can get to the end point in the th round.

In the improved ant colony algorithm, the next node position is decided by the roulette wheel method until the target point is obtained. And, in a cycle, the pheromone of all the nodes is updated by following the rules in each round of ants:

Among them, is the pheromone update part of to in the th round. is a constant, and the maximum value of the pheromone in the iterative process is the initial set value . is the pheromone evaporation coefficient: . In the entire search space,where is a nonzero pheromone space covering operation. For example,

In formula (10),

Among them, is a constant. It can be seen that if the ant can get to the end point, the added part of the pheromone is in inverse proportion with the length and if the ant cannot reach the ending point, it is recorded as 0. The rule can guide the search for the shortest path, improve the speed of convergence, and avoid the possibility of the pheromone accumulation caused by repeated search; meanwhile the effect on the performance of the algorithm caused by the quantity of the ants is reduced.

(4) Evaporation Coefficient Segment. When the problem scale is relatively large, due to the presence of pheromone evaporation, the pheromone of some nodes will be reduced greatly, even close to zero, which reduces the search ability of the algorithm. When is large, the search ability is affected by repeated selection. Meanwhile when is small, the search ability of the algorithm is enhanced, but the convergence speed is decreased. Therefore, the heuristic information coefficient is adjusted as follows:where is a constant less than 1. is the number of search rounds: . . and are the maximum and minimum of the coefficient of evaporation. The pheromone evaporation coefficient of fragmentation can enhance the search ability in the initial stage of search, increase the convergence speed later, and improve the performance of ant colony algorithm.

4.2. Algorithm Steps

The improved ant colony algorithm is to find the optimal path according to the following steps.

Step 1. The nonuniform distribution of initial pheromone is proposed and pheromone matrix is constructed according to formula (2).

Step 2. Send rounds and each round of ants which are placed at the starting point.

Step 3. Send a round of ants and each ant to select the node according to the roulette wheel method, with the probability of each point calculated by formulas (5), (6), and (7).

Step 4. After a round of ant search, the pheromone was calculated by formulas (10) and (12), the evaporation coefficient was calculated by (13), and the pheromone was updated according to formulas (9).

Step 5. Send the next round of ants, and repeat above Steps 3 and 4 until the end of the iteration.

Step 6. Record the shortest path of each round; then draw the curve of the shortest path length of each round.

Step 7. Compare the shortest paths of all the ants. Finally, output the current global optimal path.

4.3. Proof of Convergence

The proof depends on a necessary assumption: there is a path between the starting point and the ending at least. According to formulas (10) and (12), the added part of pheromone must be greater than or equal to 0. That is,

Formulas (9) show that the pheromone can be expressed as follows:

Event means that the optimal solution is obtained for the first time in the th iteration. Therefore, event denotes that the algorithm can find the optimal solution for the first time for iterations. Then probability is satisfied:

Proof. is the choice of the th optimal solution, and the probability of finding the optimal solution for the th ant in the th round can be obtained by formula (5) because the node selection is an independent event.Define , and , . So formula (17) can be expressed asBecause of formula (12), it is known that the minimum value of pheromone in the th iteration of the ant colony algorithm isFurther, the maximum value of the pheromone is the initial value by setting some parameters. SoAnd the maximum number of can be expressed aswhere is the number of options. By (19), (20), and (21), we can know that formula (18) meets the following relationship:RecordSo, formula (22) is expressed asFrom the above, we can know thatThe probability that the optimal solution cannot be found by any ants in the th round is :Probability that cannot find the optimal solution for the rounds is given as follows:After the logarithm to the above formula,That is, . So .

5. Numerical Simulations

The experiments are made to demonstrate the effectiveness of the proposed algorithm. The algorithm is compiled in MATLAB software. Experiments were conducted using a comparative method to be more persuasive along with the same experimental conditions.

5.1. Simulation Experiments

The experiment was divided into three parts with two algorithms, the traditional ant colony algorithm and the improved ant colony algorithm. In order to compare the effects of the two algorithms, they are used in the same environment.

(1) Example  1. In this example, set the simulation environment as grids and the length of each unit is 1. The starting point is the upper left corner in the grid , and the end point is the lower right corner (see Figure 5).

(2) Example  2. We set the environment as grids and the length of the unit is 1. The starting point is , and the end point is (see Figure 6).

(3) Example  3. The experiment is made in model of grids and the length of each unit is 1. The starting point is set at , and the ending point is set at (see Figure 7).

5.2. Results Analysis

As shown in Figure 5(a), it is a global optimal path in the case of Example  1. Similarly, Figures 6(a) and 7(a) are the global optimal paths in Examples  2 and 3, respectively. The obstacles in each environment are randomly selected. The three experiment results show that the ant colony algorithm and the improved ant colony algorithm both can find the global optimal paths in a variety of environments.

Figures 5(b) and 5(c) depict the path length iteration curves in Example  1 by traditional ant colony algorithm and the improved ant colony algorithm. And the search process about the shortest path length of each round and the current global optimal path length can be seen from the figures. By comparison, it can be seen that the shortest path length is found in the 49th iteration by traditional ant colony algorithm, while it is found in the fifth iteration by the improved algorithm. And once the optimal solution is obtained, the search will converge to the shortest path value by the improved algorithm. Similarly, Figures 6(b) and 6(c) represent the search process of the two algorithms in Example  2. The traditional ant colony algorithm finds the shortest path in the 69th iteration with value of 35.63, while the improved algorithm gets the shortest path in the ninth times. In the same way, Figures 7(b) and 7(c) show that the traditional ant colony algorithm and the improved ant colony algorithm find the shortest path in the 37th and 24th iterations, respectively. Therefore, it can be seen that the search efficiency of the improved ant colony algorithm is significantly higher compared to the traditional ant colony algorithm in a variety of environment.

The mean value of path iterative length often represents the convergence ability of the algorithm. Figures 5(d), 6(d), and 7(d) present the contrast of the two algorithms on the search path average value. The improved algorithm not only is faster than the ant colony algorithm but also can avoid falling into local minimum point and obtain the global optimal solution effectively either in simple environment or in a complex one.

6. Conclusion

In this paper, an improved ant colony algorithm is proposed for the 8 control operating units of the omnidirectional mobile vehicle. The grid method is used to establish the environment model, and the tabu list is introduced. By using the tabu list to show the obstacles and the units that have passed through, it is flexible to deal with obstacles and avoid duplicating the path. In this paper, the initial distribution of nonuniformity pheromone is presented which improves the time efficiency and the simplicity of the algorithm and reduces the search space of ant colony algorithm. Adding the direction of the selection strategy can get more effective information as the heuristic information, more actively guide the search behavior of ants, and reduce the blindness. By using the rule of coverage, the search probability is reduced, the stability of the algorithm is guaranteed, and the effect of the quantity of the ants on the performance of the algorithm is guaranteed. The pheromone evaporation coefficient is segmented and adjusted, which can effectively balance the convergence speed and search ability of the algorithm. Finally, it is strictly proven that the probability of finding an optimal solution is limited to 1 by the improved algorithm. The improved ant colony algorithm in solving the shortest path planning problem of the omnidirectional mobile vehicle has very good performance.

Competing Interests

The authors declare that there are no competing interests regarding the publication of this paper.

Acknowledgments

This research is supported by Science and Technology Research Project of Colleges and Universities in Hebei Province (Grant no. ZD2016142), Natural Science Foundation of Hebei Province (Grant no. F2014208013), and Doctoral Scientific Research Startup Foundation of Hebei University of Science and Technology (Grant no. QD201302).