Next Article in Journal
A Comparison of Inductive Sensors in the Characterization of Partial Discharges and Electrical Noise Using the Chromatic Technique
Previous Article in Journal
Poisson–Gaussian Noise Analysis and Estimation for Low-Dose X-ray Images in the NSCT Domain
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Effective Hybrid Routing Algorithm in WSN: Ant Colony Optimization in combination with Hop Count Minimization

1
Department of Computer Science, Taiyuan University of Technology, Taiyuan 030600, China
2
School of Computing and Maths, Charles Sturt University, Wagga Wagga, NSW 2678, Australia
*
Author to whom correspondence should be addressed.
Sensors 2018, 18(4), 1020; https://doi.org/10.3390/s18041020
Submission received: 28 February 2018 / Revised: 23 March 2018 / Accepted: 23 March 2018 / Published: 29 March 2018
(This article belongs to the Section Sensor Networks)

Abstract

:
Low cost, high reliability and easy maintenance are key criteria in the design of routing protocols for wireless sensor networks (WSNs). This paper investigates the existing ant colony optimization (ACO)-based WSN routing algorithms and the minimum hop count WSN routing algorithms by reviewing their strengths and weaknesses. We also consider the critical factors of WSNs, such as energy constraint of sensor nodes, network load balancing and dynamic network topology. Then we propose a hybrid routing algorithm that integrates ACO and a minimum hop count scheme. The proposed algorithm is able to find the optimal routing path with minimal total energy consumption and balanced energy consumption on each node. The algorithm has unique superiority in terms of searching for the optimal path, balancing the network load and the network topology maintenance. The WSN model and the proposed algorithm have been implemented using C++. Extensive simulation experimental results have shown that our algorithm outperforms several other WSN routing algorithms on such aspects that include the rate of convergence, the success rate in searching for global optimal solution, and the network lifetime.

1. Introduction

Lifetime is a fundamental criterion of wireless sensor networks (WSNs). Most existing methods for prolonging the lifetime of WSNs focus on the issues of device placement, data processing, routing, topology management, and device control. Among them, routing plays a significant role in optimizing energy efficiency leading to a longer network lifetime [1,2,3]. However, WSN routing protocols often face substantial challenges. These challenges come from the stringent energy constraint of each sensor node, from the inherent unreliability of wireless communication, from the dynamic nature of the network, and from the possibly large scale of the network. Thus, low cost, high reliability and easiness to maintain are always the key criteria for the design of a WSN routing protocol. The concept of searching for the shortest path between the source and destination nodes is widely used in WSN routing algorithm design. The source node transmits the data to the base station, also referred as sink node through a range of relay nodes, and short transmission distance between nodes corresponds to a low dissipation of energy. Therefore, the selection of the shortest path for data transmission is critical in reducing the energy consumption of the nodes and improving the stability of the WSN. Among various different approaches, ant colony optimization (ACO)-based WSN routing algorithm and minimum hop count (MHC)-based WSN routing algorithm [4,5] show superior capability in finding the shortest path. The paper conducts a thorough analysis of the advantages and disadvantages of the existing ant colony optimization WSN routing algorithms, as well as minimum hop count-based WSN routing algorithms. Then we integrate the two algorithms as a hybrid WSN routing algorithm, comprehensively taking into consideration several critical factors specific to WSN, including energy constraint of sensor nodes, network load balancing, and dynamic network topology. Hereinafter the proposed algorithm refers to ant colony optimization in combination with hop count minimization WSN routing algorithm (ACOHCM).
The new hybrid algorithm, ACOHCM, has unique superiority in terms of topology maintenance, searching the optimal path, and the network load balancing. A common topology of WSNs has a group of nodes that includes a sink node and a number of sensor nodes. ACOHCM borrows the idea of hop count-classification in MHC algorithms. The sensor nodes are firstly marked as different gradations according to their hop count distance to the sink node. So a node will prefer the neighbor nodes who have a lower hop count than the node itself, that is, which are closer to the sink node, as the alternative next hop nodes for data transmission. Therefore, the new proposed algorithm reduces attempts at choosing the nodes which are farther from the sink node to transfer the data. So, the optimal path can be identified much more quickly, and the convergence speed of the algorithm increases rapidly, compared with the conventional ant colony optimization WSN routing algorithms. In the aspect of searching for the optimal path, which is one of the challenging issues in a dynamically changing environment of WSN, we integrate the two algorithms, taking advantages of the two in finding the shortest path and overcoming their disadvantages which will be reviewed in the part of related works. The paper defines a WSN-specific heuristic factor for path selection and proposes a new pheromone update formula. The mutation strategy is also introduced to the algorithm to improve the success rate of searching for the global optimal solution for the optimal path. Regarding balancing the network load, many of the existing routing algorithms use a multi-path routing approach to achieve load balancing. The issue is the fact that using the minimum energy consumption path all the time depletes the energy of nodes on that path. Hence, it encourages the use of multiple paths with a certain probability, which favors battery depletion of different nodes at a comparable rate. However, this kind of multi-path routing approach must take into account the resulting communication interference problem. Different from the multi-path approach, we propose a dynamic energy threshold strategy. This strategy strictly takes control of the energy consumption of each sensor node in an effort to achieve a similar rate of energy depletion of each node so as to avoid premature death of some nodes due to energy depletion. ACOMHC also uses this strategy to trigger route update to prevent the sensor nodes on the routing path from over-consuming of energy and premature death due to data forwarding so as to resolve the problem of “Hot Spot”. By equalizing the data transmission workload, ACOMHC achieves load balancing. Simulation experiment results verify that ACOHCM algorithm has high performances in these respects, including the convergence speed, the success rate of searching for the optimal solution and the network lifetime.
The structure of this paper is as follows. In Section 2 we give a review on the ACO-based algorithms and MHC-based algorithms. Section 3 presents our system model and we discuss our proposed method in Section 4. Extensive simulation results and analysis are given in Section 5. Finally, we conclude in Section 6.

2. Related Works

Motivated by the foraging behavior of ants, bees and fishes, swarm intelligence (SI) has been developed and applied successfully to solve many optimization problems in real time as per Saleem and Di Caro [6]; Kuila and Jana [7]. Ant colony optimization (ACO), Particle Swarm Optimization (PSO) and Genetic Algorithm (GA) are three commonly used optimization algorithms in the family of SI. This section focuses on reviewing the strengths and weaknesses of WSN routing algorithms based on ACO, as well as the WSN routing algorithms based on minimum hop count.

2.1. Ant Colony Optimization Routing Algorithm

The Ant colony optimization (ACO) algorithm was proposed by Italian scholars Dorigo et al. [8], which imitates the behavior of ant colonies as ants search for the shortest path from their nest to the food source. The ants deposit a certain amount of pheromone on the path they traverse during the foraging process, and the posterior ants choose their path according to the pheromone intensity. Thus, the collective behavior of ant colony composed of a large number of ants shows a positive feedback of information:The shorter the path, the more ants will traverse it, producing the higher pheromone intensity, which will increase the probability of latter ants choosing the same path. Ants use this kind of information exchange among individual ants to find the shortest path for food. Classic ACO has been successfully applied in solving a number of scientific and industrial combinatorial optimization problems, such as small traveling salesman problem, vehicle routing problem, Quality of service (QoS) network routing, etc. Dorigo and Gambardella [9]; St u ˜ tzle and Hoos [10]; Jose et al. [11]; Zhang [12]; Zhan [13]. ACO routing algorithms work in a highly distributed way, and have properties such as adaptivity, robustness, and scalability. These characteristics make them particularly applicable to deal with aforementioned challenges in WSN routing.
Over the last decade, a significant number of routing algorithms based on ACO have been developed to address the challenges in WSN. Examples include the approaches from various research papers [2,14,15,16,17,18,19,20,21,22,23]. Because limited energy is the most critical issue affecting WSNs performance, many of these research works focus mainly on how to use the limited energy of WSNs to maximize the network lifetime, which has been seen as the all-important problem of WSN routing design. Yang et al. [18] proposed a novel multipath routing protocol (MRP) based on dynamic clustering and ACO. An improved ACO algorithm has been applied in searching for the optimal and suboptimal paths between the cluster head and the sink node. Furthermore, a load balancing function is included for dynamically selecting one path to transmit data with a probability that depends on path metrics, such as energy consumption in the path, residual energy, path length. Since the path is dynamically chosen, load balancing among the paths is guaranteed. MRP uses multiple paths to avoid a frequently used path on which thenodes with minimum energy consumption are located and keeps better balance of energy consumption among nodes, and then, prolongs the network lifetime. Khoshkangini et al. [19] combined ACO and Breadth First Search (BFS) to find the best and shortest path in order to improve data transmission with the minimum energy consumption, as well as reduce the probability of data loss. By applying BFS, the accurate selection of hops in the data transmission has been enhanced with minimum transmission time and the least energy consumption. Although it increases the search accuracy in finding the shortest path, implementation of BFS in the ACO introduces additional node memory and time consumption which are the weaknesses of the method. Kim et al. [20] Proposed an Inter-cluster Ant Colony Optimization algorithm (IC-ACO) that relies upon the ACO algorithm to identify the optimal path between a cluster head and the base station and effort has been made to minimize the attempts wasted in transferring the redundant data sent by the sensors which lie in the close proximity of each other in a densely deployed network. The paper provides us reference for routing of data packets in the densely deployed network. Sobral et al. [21] used a fuzzy system to estimate the route quality based on the number of hops and the energy level of the nodes that compose a route. The Ant Colony Optimization (ACO) algorithm is used to optimize the fuzzy rules in order to enhance the estimation quality of the routes, hence the energy efficiency of the network increases. The evaluation metric values, including the number of messages delivered to the sink node, an average cost of message, a packet loss rate, and the time of death of the first sensor node, have demonstrated the proposal is effective. Li et al. [22] utilized the ACO and borrowed an neural network (NN) rather than the greedy algorithm to build their chain of PEGASIS. The chain makes a path to send data to the BS more evenly distributed and reduces the total transmission distance much less. Therefore, it realizes energy consumption balancing between nodes. Liu [23] put forward an optimal-distance-based transmission strategy for lifetime maximization on the basis of the ACO, in which a local optimal transmission-distance acquirement mechanism is designed for both high energy efficiency and well energy balancing. Furthermore, a global optimal transmission-distance acquirement mechanism is provided to achieve energy depletion minimization for nodes with maximal energy consumption throughout the network. Mohajerani et al. [2] proposed an ACO-based routing algorithm called life time aware routing algorithm for wireless sensor networks (LTAWSN). It specifies its probability formula for reducing energy consumption of network nodes and also obtains more balanced transmission among the nodes and prolong the network lifetime. In addition, a new pheromone update operator is designed to integrate energy consumption and hop count together into routing choice.
From the above representative research works that have been reviewed, it is clear to see that, significant efforts have been made to exploit and modify the ACO to achieve the efficient use of energy or balanced use of energy. Eventually all these are necessary to maximize the network lifetime. However, when applying the ACO to WSN routing optimization, still there are the following shortages that decrease its performance and preclude its practical application.
(1)
The searching time of these algorithms is long and the convergence speed of the algorithms is slow.
(2)
The algorithm is prone to be trapped to a local optimum.
(3)
When the global optimal path is found, the data will be transmitted through the optimal path all the way, causing the sensor nodes on the optimal path to deplete their energy at a faster pace and lead to the death of these nodes, and this phenomenon is called “Hot Spot”, which is very unfavorable to the life time of the network.
Sun and Tian [24] proposed a new hybrid method for route optimization in WSNs. For the convenience of reference, herein named ACO-GA. This method is based on a combination of modified ACO algorithm and genetic algorithm (GA). The initial solution is generated by the ACO as the population for the GA and next, the best solution is searched by further iterations of GA using selection, crossover and mutation. Thus it can accelerate the convergence speed of the ant colony algorithm, improve the efficiency and avoid the local optimum and precocity. Moreover, authors added a multi-path route for transmitting data. Simulation results showed that the new method was effective and has shown a better performance than ACO or GA individually. However, the computation complexity of such an algorithm increased, and the problem of energy equilibrium consumption was ignored. Ismkhan [25] pointed out three main drawbacks of the recent ACO algorithms. These include the implementation of pheromone is inefficient, the selection of next move by transition rules is very time consuming, and the local search used in the ACO operates without effective use of pheromone values. These drawbacks increased the computation time and space complexities of ACO, decreased its performance, and prevented it to be applied to large-scale instances. Then this paper suggested three new strategies to address those drawbacks.
In short, there are many important factors that influence the network performance dramatically to be considered when designing an effective routing algorithm for WSN, such as minimizing total energy consumption, balancing the network load, speeding up the convergence and the dynamic networking capability. The best practice is expected to be able to comprehensively take into account all these factors at the same time in order to address the challenges mentioned above in real-time applications.

2.2. Minimum Hop Count WSN Routing Algorithm

On the basis of the Directed Diffusion algorithm (DD) and the flooding algorithm, Han et al. [4] introduced the concept of hop count and proposed the minimum hop count (MHC) WSN routing algorithm. In the phase of data transmission, the algorithm determines the transmission path according to the hop count from the source node to the sink node. MHC routing algorithm has the potential advantages of shortest path, lowest energy consumption, and minimum time delay. However, the following two concerns disadvantages the original minimum hop count routing algorithm.
(1)
The sink node periodically initiates flooding for route update. This kind of periodic flooding throughout the whole network may cause excessive cost and overhead in terms of energy due to redundant data transmissions.
(2)
There is no reasonable strategy to choose the next hop nodes for data transfer in the process of data transmission but forwarding the same data through all the parent nodes, which generates a large quantity of redundant information in the network and accelerates the energy consumption of the network.
Chiang et al. [5] established routing tables for sensor nodes using a technique similar to the classical flooding method. In each node’s routing table, it includes its neighbor nodes. They are marked as parent nodes, sibling nodes or child nodes respectively by recording their hop count values, together with their ID numbers, energy levels and time slots. A node’s parent nodes are whose hop counts are one less than this node itself, sibling nodes are who have the same hop counts with this node itself, and the child nodes are whose hop counts are one more than this node itself. Based on the routing table, in accordance with the priority of the parent nodes and the sibling nodes, each sensor node can determine the best next-hop node which has the highest energy level. The proposed data routing protocol reduces some redundant data transmission by providing a next hop node selection approach.
Ho et al. [26] proposed an ACO-based ladder diffusion algorithm to solve the energy consumption and transmission routing problems in WSNs. The algorithm consists of two phases, namely the ladder diffusion phase and route-choosing phase. The ladder diffusion creates a ladder table for each sensor node, and the route-choosing phase integrates ACO to select and construct the route from a sensor node to the sink node. The proposed algorithm greatly reduces the energy consumption compared to the previous work by properly assigning the transmission route using the ACO. However, the algorithm has a main flaw that it does not consider the sensor nodes’ residual energy when choosing the relay node. So the algorithm is easy to face in the "Hot Spot" and "Energy Pole" problems.
Du et al. [27] modified Ho’s method as an energy aware ladder diffusion (EALD) routing algorithm. The EALD adopts the ladder diffusion process similar to [26] in the first step. In the second step of its transmitting phase, in order to solve the ’Hot Spot’ and ’Energy Pole’ problems, an energy aware strategy is used to dynamically adjust the routes of transmitting according to the nodes’ residual energy. The key strengths of this modified algorithm include low routing overhead, network load balancing and the extended network lifetime.

3. System Model

3.1. WSN Network Model

WSN is a self-organizing network that consists of a number of distributed wireless sensor nodes and a sink node. Sensor nodes can sense the environment, perform basic computations on the collected data, and communicate with neighboring nodes via a radio transmitter. The data collected by sensor nodes from a target area is finally forwarded to the sink node one hop by one hop for further processing. In our ACOHCM algorithm, there are 6 assumptions.
(1)
All nodes in the network are randomly deployed in the monitoring area. After the deployment, the location no longer changes. The sink node has knowledge of the topology of the whole network.
(2)
All sensor nodes in the network are homogeneous, i.e., the node’s computing power, communication capability, and initial energy are the same.
(3)
All sensor nodes are energy-constrained and cannot be replenished, while the sink node can be supplemented.
(4)
The radio transmission power of the node is adjustable, and the transmission power can be adjusted according to the distance.
(5)
Like other related works, Packet error and overtime retransmission caused by link errors are not considered.
(6)
The sink node periodically carries out data collection, and all sensor nodes forward the data according to their own routing.

3.2. Energy Consumption Model

In WSNs, a node’s energy consumed for data communication is much higher than other energy consumption, such as data sensing and data processing. That is to say, the major portion of a node’s energy is consumed for data communication including data transmission and data receiving. So, our research mainly focuses on the energy dissipation for data communication. We use the model discussed in Heinzelman and Chandrakasan [28] for the radio hardware energy dissipation, where the transmitter dissipates energy to run the radio electronics and the power amplifier, and the receiver dissipates energy to run the radio electronics. Thus, to transmit a k-bit data packet to the receiver at distance d, it takes the energy cost as shown in the following Formula (1):
E T γ ( k , d ) = E T γ e l e c ( i , j ) + E T γ a m p ( k , d ) = k E e l e c + k ϵ f s d 2 , d < d 0 k E e l e c + k ϵ m p d 4 , d d 0
The energy consumption for data transmission consists of two parts: the electronics energy consumption, denoted as E T γ e l e c and the power amplifier energy consumption, denoted as E T γ a m p . The power amplifier energy consumption is related to transmission distance and the environment, divided into the free space model ( d 2 power loss) and multipath fading ( d 4 power loss) channel models, depending on the distance between the transmitter and receiver. Power control can be used to invert this loss by appropriately setting the power amplifier—if the distance is less than a threshold d 0 , the free space model is used; otherwise, the multipath model is used.
On another hand, to receive these data, the cost is:
E R e ( k ) = E R e e l e c ( k ) = k E e l e c
The Formula (2) contains only the electronics energy consumption. E e l e c is the energy dissipation of per bit for transmitter or receiver. Based on Formulas (1) and (2), energy consumed for data transmission is higher than that of data reception. The energy consumption for data transmission relies mainly on the distance squared whereby the farther between the sender and the receiver, the higher the energy is consumed to transmit the data.

4. ACOHCM Routing Algorithm

The goal of the ACOHCM routing algorithm is to maximize the lifetime of the WSNs. Moreover, an effective routing algorithm must converge quickly and have high rate of successful searching for the best solution for the optimal path, as well as low overhead in route discovery, route update and maintenance. Therefore, the ACOHCM algorithm uses the hop count-classification network topology, which is a kind of planar network topology. It is based on the node location information, so it is easy to maintain. The routing protocol on this topology has the advantages of simple structure and low maintenance overhead. In order to search for an optimal path with minimum total energy consumption and balanced energy consumption of each node, a dynamic energy threshold strategy and a mutation strategy have been proposed. Especially, we revise the heuristic factor and replace a new pheromone update strategy in the probabilistic node state transition formula for path selection. The new algorithm takes into comprehensive account energy efficiency, load balancing, convergence speed, and routing reliability as well as low maintenance. Energy efficiency here refers to the ratio of total packet delivered at the sink node to the total energy consumed by the network’s sensor nodes on the data transmission path during the data transmitting process (Kbit/J). So it is expected to minimize the total energy consumption of the sensor nodes on the routing path. In addition, It is expected to reduce the redundant transmissions involved in route discovery and data delivery to reduce the energy consumption of a node.

4.1. Hop Count-Classification Network Topology and Maintenance

ACOMHC algorithm is developed considering both the ant colony optimization algorithm and the minimum hop count WSN routing algorithm. Before the ants start off, the algorithm examines the location information of each node in the network and uses the idea of hop count-classification in MHC algorithm as a reference to mark all the nodes by their hop count values. The definition for the hop count of a node is as follows.
Definition 1.
The hop count of the sink node is 0, the hop count of the other nodes is the smallest hop count among their neighbor nodes plus 1.
After the hop count of each node is marked, the nodes in the whole network form a hop count-classification network topology as shown in Figure 1. The square at the center of the figure represents the sink node and the rest are ordinary sensor nodes. The number on the node indicates the hop count of that node. According to the definition of the hop count, any h-hop (h ≥ 2) nodes cannot transmit data to the nodes whose hop counts are h ± 2 without starting power amplifier. So the best next hop nodes of a h-hop (h ≥ 1) node must be h 1 hop nodes without considering the energy of the nodes. Therefore, the hop count-classification topology can greatly reduce the number of alternative nodes when choosing the next hop node, which accelerates its convergence speed and reduce the time complexity of the algorithm.
In addition, topology maintenance is responsible for the maintenance of the hop count-classification network topology. The process of topology maintenance will start when any network topology changes in the case of a sensor node failure or wireless link breakage. Any topology change will affect the nodes’ hop count values dynamically. Hence, hop count values need to be updated timely. Correspondingly, the route also needs to be updated.

4.2. Dynamic Energy Threshold Strategy

In order to balance the energy consumption of the entire network, this paper proposes a dynamic energy threshold strategy. The basic idea can be stated as follows. Assumed that the initial energy value of each node is C. The energy threshold θ and the lower bound energy threshold θ m i n are set for all nodes during the initialization. They are both less than C, and θ m i n θ . When an ant searches for the next hop node, θ c , a copy of the energy threshold θ , is created, then the algorithm seeks the nodes whose current energy are greater than θ c as the alternative next hop nodes according to the priority order of parent, sibling, child nodes in the set of neighbor nodes of the node i where the ant is located. Those nodes whose current energy are less than or equal to θ c are only responsible for sensing data and sending data collected by themselves. They do not transfer the data from the other nodes. If the current energy of every neighbor node of the node i is less than or equal to θ c , θ c will be updated dynamically according to the Formula (3) as follows.
θ c = λ × θ c , λ × θ c > θ m i n θ m i n , λ × θ c θ m i n
λ represents the extent of decrease of the threshold, and 0 < λ < 1 . If the current energy of every neighbor node of the node i reaches the lower bound energy threshold θ m i n , the power amplifier is started and the alternative next hop nodes are selected from the nodes with h ± 2 hops, here h is the hop count of the node i.
During the running of the network, the energy of the nodes is constantly consumed. If the remaining energy of 85 percent of the nodes in the network have reached the energy threshold θ . θ is updated dynamically according to the Formula (4) as follows. Then S e t r e a c h _ t h is emptied. Here S e t r e a c h _ t h is a set used to store the nodes whose remaining energy have reached or lower than the energy threshold.
θ = λ × θ , λ × θ > θ m i n θ m i n , λ × θ θ m i n
When the remaining energy of a node i reaches the energy threshold of θ and i S e t r e a c h _ t h , the route update is triggered. That is, the sink node will initiate a new route discovery process, and the node i joins into S e t r e a c h _ t h .

4.3. Probabilistic Selection for the Best Next Hop Node

The probabilistic node state transition formula in the ant colony optimization algorithm mainly consists of two key components: pheromone intensity on alternative paths and the heuristic factor. ACO utilizes those two parameters: search experiences represented by pheromone intensity, and domain knowledge in form of heuristic factor information to accelerate the search process. Pheromone intensity values are the results of the long-term collective learning of good paths from ants’ actions, while the heuristic values reflect the node’s local situation. The heuristic factor changes in the different fields of application. For the wireless sensor network routing optimization, we comprehensively take into consideration the residual energy of the alternative next hop nodes and the distance between node i and j, and using the weighting factors ξ 1 and ξ 2 ( ξ 1 + ξ 2 = 1 ) to indicate their role importance respectively, therefore the heuristic factor η i j in ACOHCM algorithm is defined as Formula (5).
η i j = E j C ξ 1 + d s u m d i j ξ 2
From (5) it is clear to see that η i j is intended to favor the selection of a node with higher level of residual energy and with shorter communication distance between the sender and receiver so as to save the data transmission energy consumption and balance the energy usage. Where C is the initial energy value of the sensor nodes; E j is the remaining energy value of the node j; d i j is the distance between node i and node j; d s u m is the sum of the distances between all alternative next hop nodes and the source node. Thus, the probabilistic node state transition formula indicating the probability of the ant k transferring from node i to node j at time t is shown as Formula (6).
P i j k ( t ) = τ i j α ( E j C ξ 1 + d s u m d i j ξ 2 ) β μ a l l o w e d k τ i μ α ( E μ C ξ 1 + d s u m d i μ ξ 2 ) β j a l l o w e d k 0 otherwise
where τ i j is the pheromone value on the path L i j ; α and β indicate the relative influence of cumulative pheromone on the path and the local heuristic factor respectively on path selection for an ant; a l l o w e d k is the set of next hop nodes allowed to be selected for ant k. According to Formulas (5) and (6), the more residual energy the alternative node j has, and the shorter the distance from the node j to the node i is, the larger the value of the heuristic factor will be, and the bigger the probability of the node j will be selected.

4.4. Pheromone Update Strategy

The pheromone update strategy in the ACOMHC algorithm is as follows: In the end of each iteration, only the pheromone values of the optimal path in this iteration are updated, and the pheromone values of the other paths are partially volatilized; In order to avoid the unlimited growth or reduction of the pheromone on the certain paths, ACOHCM limits the pheromone values by setting the upper pheromone limit τ m a x and the lower pheromone limit τ m i n . If the updated pheromone exceeds the upper or lower limit, the pheromone is assigned upper pheromone limit or lower pheromone limit. Therefore, the ants have probability to try taking other paths, which increases the ability of the algorithm to find the global optimal solution and prevents the algorithm from prematurely converging to the local optimal solution. Using this pheromone update strategy, obviously can speed up the convergence of the algorithm, as well as overcome the stagnation of ACO algorithm.
The improved pheromone update formula is defined as in Formula (7).
τ i j ( t + n ) = ( 1 ρ ) τ i j ( t ) , L i j is not on the optimal path & ( 1 ρ ) τ i j ( t ) > τ m i n ( 1 ρ ) τ i j ( t ) + Δ τ i j , L i j is on the optimal path & τ m i n < ( 1 ρ ) τ i j ( t ) < τ m a x τ m a x , L i j is on the optimal path & ( 1 ρ ) τ i j ( t ) + Δ τ i j τ m a x τ m i n , L i j is on the optimal path & ( 1 ρ ) τ i j ( t ) + Δ τ i j τ m i n , or L i j is not on the optimal path & ( 1 ρ ) τ i j ( t ) τ m i n
Δ τ i j = k = 1 m Δ τ i j k , m is the number of the ants:
Δ τ i j k = Q L k , ant k goes pass the path L i j 0 , others
ρ ( 0 < ρ < 1 ) is a pheromone evaporation factor, and ( 1 ρ ) is pheromone residual factor; Δ τ i j is the pheromone that the ants deposit on the path L i j in the current iteration; Δ τ i j k is the pheromone that the ant k deposits on the path L i j in the iteration; Q is a constant and it affects the convergence speed of algorithm to a certain extent; L k is the length of path that the ant k traverses in the iteration. It is thus clear that the smaller the L k is, the more pheromone that the ant deposits on the path, which is helpful in searching for the optimal path.

4.5. Mutation Strategy

In order to improve the global optimization ability of the algorithm, and prevent the algorithm from stopping at an arbitrary local optimum, ACOHCM algorithm uses the mutation strategy to control the ants path finding. Each ant is assigned a mutation probability, assuming δ = 10 % at initialization. Generally, when an ant chooses the next hop node, it firstly looks up its neighbor table and puts those eligible nodes into S e t c a n d , a set of alternative next hop nodes. Then it determines which is the next hop node according to the probabilistic node state transition Formula (6). However, when the mutation occurs, the ants will choose a node from S e t c a n d according to the roulette rule as the next hop node.
During the iteration of searching for the optimal path, if the optimal solution in the current iteration is no better than the previous one, the algorithm will increase the mutation probability to δ = 40 % . So the ant has a larger probability to try other paths to improve the searching ability of the algorithm. The mutation probability of the ant is not re-adjusted to the original value of δ = 10 % until the algorithm finds a better solution than the solution in the previous iteration.

4.6. Implementation of ACOHCM Algorithm

The implementation procedure of the ACOHCM algorithm includes three main steps, namely initialization, network topology generation and routing finding. The pseudo code is given in Algorithm 1.
Algorithm 1 ACOHCM algorithm.
  • function
  •     1.Initialization
  •     (Set initial energy value, energy threshold, lower energy threshold, communication radius of the node, lower pheromone limit, upper pheromone limit, mutation probability of the ant)
        2. Network topology generation
  •     According to the nodes’ location information, the hop count-classification network topology is generated
        3. Route finding
  •     for node i = 1 to N u m b e r _ o f _ N o d e s ) do
  •         for i t e r = 1 to N u m b r e _ o f _ I t e r a t i o n do
  •            for a n t = 1 to N u m b r e _ o f _ A n t s do
  •                {
  •                3.1 Get the set of the alternative next hop nodes according to the dynamic energy threshold strategy.
  •                3.2 Determine the best next hop node based on the improved probabilistic node state transition Formula (6) and the mutation strategy.
  •                3.3 Update L o c a t i o n _ o f _ a n t .
  •                } While (the ant has not reached the sink node)
  •                3.4 Calculate the total energy consumption of data transmitting along the path by which the ant goes.
  •            end for
  •            3.5 Choose the path with minimal total energy consumption among the paths that m ants find out.
  •            3.6 Ants feedback backwards. Update the pheromone values according to Formula (7).
  •         end for
  •         3.7 Output the optimal path from the node i to the sink (whose total energy consumption is minimal, the number of hops is least, and the energy consumption is balanced on the path)
  •     end for
  •     3.8 Output the routing information of every node in the network.
  • end function
The choices of the parameters α , β , ρ in Formulas (6) and (7) have important effects on the ant routing process [29]. Generally speaking, the greater α is, the bigger the probability that an ant will traverse the path that has been passed through in the past, which will lead the ant colony algorithm to fall into the local optimal solution earlier. The smaller α is, the smaller the effect of the pheromone with the higher the randomness of the path selection, which will increase the searching time, slowing the convergence speed of the algorithm. The greater β is, the bigger the probability that an ant chooses the node with high residual energy and shorter distance. However, if β is too large, it will suppress the effect of the pheromone; The smaller β is, the higher the randomness of the next hop node selection. Pheromone evaporation factor ρ is another crucial parameter. The greater ρ is, the stronger the role of the positive feedback is, which will increase the likelihood of the traversed path being re-selected, while decrease the randomness of searching. On the contrary, the smaller ρ is, the bigger the randomness of the search becomes, and the stronger the global search capability of the algorithm becomes.
When the wireless sensor network is started, the ACOMHC algorithm is run to generate the routing information for each node, and all nodes perform data forwarding according to the routing information.

4.7. Analysis of the Convergence Speed of the Algorithm

The ant colony optimization algorithm, as a swarm intelligence randomized search heuristics (RSHs), is characterized by randomness, teamwork, universality and so on. With such features the ant colony optimization algorithms show a good way to simulate complex dynamic behavior. However, the complex stochastic process caused by such a complex dynamic behavior makes ant colony optimization algorithms experience difficulty in their theoretical analysis, such as convergence analysis and time complexity analysis [30]. Gutjahr [31] developed a Graph–based Ant System, a metaheuristic which can treat arbitrary static combinatorial optimization problems, and for the first time proved that under certain conditions (by a suitable choice of the parameters of the heuristic), the solutions generated in each iteration of this Graph–based Ant System converge with a probability that can be made arbitrarily close to one to the optimal solution of the given problem instance. Stutzle and Dorigo [32] presented a short convergence proof for an ant colony system (ACS) and max-min ant system (MMAS). The convergence analysis theory only tells us that ant colony optimization algorithms have the possibility of finding the global optimal solution, and it is hard to evaluate the performance of actual algorithms as what we expected. Hence, it is necessary to analyse the convergence speed of ant colony algorithms so that we can know how quick the algorithms are to find the optimal solution. Dedigo in 2005 explicitly listed the research on convergence speed for ACO algorithms as the first open problem of ACO research field [33]. Moreover, Neumann [34] conducted research about the influence of the pheromone evaporation factor ρ on the time complexity of ACO algorithm. He showed that for ρ = O ( n 1 ϵ ) , ϵ > 0 , the optimization time of 1-ANT on OneMax is 2 Ω ( n ϵ / 3 ) with probability of 1– 2 Ω ( n ϵ / 3 ) , whereas for ρ = O ( n 1 + ϵ ) , ϵ > 0 . An O ( n 2 ) upper optimization bound holds with overwhelming probability of 1– 2 Ω ( n ϵ / 3 ) . This reveals a phase transition phenomenon from exponential expected optimization time to polynomial expected optimization time of 1-ANT on OneMax occurring for a fast decrement of ρ . Doerr et al. [35] also analyzed rigorously the influence of ρ has on the performance of 1-ANT algorithm. Lower bounds of optimization time for 1-ANT on two sample functions: LeadingOnes and BinVal, are provided. The authors showed that there is also a phase transition from exponential to polynomial runtimes for ρ 1 / ( n l o g n ) using the two sample functions. Furthermore, in [36], Gutjahr gave a more specific result and proof that with probability 2 Ω ( m i n ( 1 / n ρ , n ) ) the optimization time of 1-ant on LeadingOnes is 2 Ω ( m i n ( 1 / n ρ , n ) ) . Later, Zhou [37] studied the influence of pheromone control parameter α and heuristic information control parameter β on the computation time of the algorithm by constructing the traveling sales person problem (TSP) instances, which is a well-known NP-hard problem. It is showed clearly that for a complete graph instance, when the parameter is set from α = 1, β = 0 to α = 1, β = 1, the upper bound of its expected computing time is also changed from O ( n 6 ) to O ( n 5 ) . In addition, Kötzing et al. [38] analysed the influence of heuristic information on the performance of the algorithm by constructing the TSP instance. It is stated that with α =1, If β = 1, the algorithm needs exponential run time to find the optimal tour, while with β = n , it finds the optimum in one iteration with almost the probability of 1.
Apparently the ant colony algorithm has less parameters to be pre-defined, but the optimal selection of these parameters is complicated. The current theoretical analysis is mainly focusing on for 1-ANT ant colony system assuming one ant in artificial pseudo-Boolean functions. Thus it turns to be a classical combinatorial optimization problem. For example, it is hard to analyze the influence of different parameter settings on algorithm performance. The optimization and theoretical analysis are still challenging problems when considering the multi-ant colony system.
In this paper, we propose a new strategy of using the minimal hop count to guide the path searching direction. We expect that it can greatly improve the convergence speed of the algorithm and reduce the computation time of finding the optimal solution. The procedure are given as follows.
We assume that the ant is currently on the node i. There are n nodes in S e t a l l . Firstly the following terms are defined:
  • S e t c u r is the set of the nodes whose hop counts are same as that of the node i;
  • S e t f a r is the set of nodes whose hop counts are one more than that of the node i;
  • S e t n e a r is the set of the nodes whose hop counts are one less than that of the node i;
  • S e t a l l is the set of all alternative next hop nodes.
According to the assumption, when the traditional ACO selects the next hop node for this ant, it calculates the node state transition probability for the n nodes in S e t a l l respectively by using the probabilistic node state transition formula. Differently, our ACOHCM firstly puts the n nodes from S e t a l l into S e t c u r , S e t f a r or S e t n e a r respectively according to their hop counts. S e t a l l = S e t c u r S e t f a r S e t n e a r . We also Assume that there are n u m c nodes in S e t c u r , n u m f nodes in S e t f a r and n u m n nodes in S e t n e a r . Then n u m c + n u m f + n u m n = n , n u m c , n u m f , and n u m n must be larger than 0. Then it can fall into the following two cases.
Case 1.
When all n nodes are in the same set of S e t c u r , S e t f a r or S e t n e a r , it selects the next hop in n nodes and calculates the state transition probability for the n nodes. The convergence speed of the algorithm does not improve.
Case 2.
When all n nodes are not in the same set, then at most one set is empty. n u m c , n u m f , and n u m n are all less than n. There are three following situations:
i 
If n u m n > 0 and the energy of the nodes in S e t n e a r meets the requirements of data transmission, the algorithm only chooses the next hop nodes in S e t n e a r and calculates the node state transition probability for the nodes in S e t n e a r . Therefore, the convergence speed of the algorithm can be improved by n n u m n times.
ii 
If S e t n e a r is empty or the energy of the nodes in S e t n e a r does not meet the requirements of data transmission, but n u m c > 0 and the energy of the nodes in S e t c u r meets requirements of data transmission, then the algorithm only chooses the next hop nodes in S e t c u r and only calculates the node state transition probability for the nodes in S e t c u r . Therefore, the convergence speed of the algorithm can be improved by n n u m c times.
iii 
If S e t n e a r is empty and the energy of the nodes in S e t c u r does not meet the requirements of data transmission, or S e t c u r is empty and S e t n e a r is not empty but the energy of the nodes in S e t n e a r does not meet the requirements of data transmission, it is clear that n u m f > 0. If the energy of the nodes in S e t f a r meets the requirements of data transmission, then the algorithm only chooses the next hop nodes in S e t f a r and only calculates the node state transition probability for the nodes in. Therefore, the convergence speed of the algorithm can be improved by n n u m f times.
Since n u m c , n u m f , and n u m n are all far less than n, the convergence speed of ACOMHC algorithm can be greatly improved. In addition, using the idea of minimal hop count to guide the path searching direction of the next hop node selection can greatly reduce the total computational time on calculating the node state transition probability, which is also conducive to the improvement of the convergence speed. Moreover, the performance of the algorithm can be improved significantly by optimizing the parameters α , β , ρ and the heuristic function. Our theoretical analysis coincides the experimental results that present an impressive performance of the ACOMHC algorithm.

5. Experimental Results and Analysis

5.1. Simulation Settings of the WSNs

In order to evaluate the performances of ACOHCM algorithm, a simulation of WSN environment is run in C++. In our simulated network, the area of 100 m × 100 m, 100 nodes are randomly generated. As shown in Figure 1, the sink node is assumed at the center of the whole area. The best combination of the parameters α , β , ρ , Q in the algorithm is determined by experiments. These parameters in our simulation are shown in Table 1.

5.2. Comparison of Convergence Characteristics of the Several Algorithms

In the WSNs, due to the limited energy power of nodes and the dynamic network topology, it is critical that the routing protocol to calculate the optimal path with low cost. Therefore, the routing algorithms should have a high convergence speed and a high success rate of searching for the optimal solution.
We conduct experiments that compare the convergence speed of the several algorithms including the classic ACO, LTAWSN, ACO-GA and ACOHCM. These four algorithms are run 100 times separately and Figure 2 reports the average number of iterations of each algorithm. In Figure 2, it is clearly to show that ACOHCM algorithm finds the optimal solution after 38 iterations on average, while classic ACO needs 198 iterations on average, 102 for LTAWSN, and 64 for ACO-GA. Therefore, it proves that ACOHCM algorithm is superior to the other three algorithms in terms of the convergence speed.
The improvement of the convergence speed of the ACOMHC algorithm is because of the following two reasons: on one hand, it owes to the strategy of using the minimal hop count to guide the path searching direction of the next hop node selection in the hop count-classification topology. On another hand, it owes to the role of pheromone, that is, to increase the pheromone on the optimized path in a certain range, we can speed up the convergence.
The average time for one iteration of the four algorithms and the success rate of searching for the optimal solution in 100 iterations of the four algorithms are recorded in Table 2. Table 2 shows that ACOHCM algorithm with hop count-classification topology is apparently superior to the other three in computing time. In order to test the success rate of searching for the optimal solution of the algorithms, each algorithm is tested 100 times respectively with 100 iterations in each test. As Table 2 shows that ACOHCM has a strong ability to search for the global optimal solution, and its success rate is higher than that of the other algorithms.
The above simulation results have shown that ACOHCM can greatly improve the efficiency of routing computation and the success rate of searching for the global optimal solution, and verify that ACOHCM algorithm is reliable and effective.

5.3. Comparison of the Network Lifetime

As we mentioned before, the network lifetime is one of the most important indicators of WSNs. The energy of a node in a WSN is mostly spent on data transmission. Especially, the nodes who are responsible for data forwarding in their region. If these nodes are out of power, data will not be able to be normally forwarded to the sink node. Therefore, energy exhausting of a node in WSNs may affect the normal operation of the whole network. In this paper, the network lifetime is defined as the duration beginning when the network is activated until when one node’s battery goes flat.
Therefore we simulate and compare the network lifetime of the classic ACO, LTAWSN, ACO-GA, EALD, and ACOHCM algorithm in the experiments as follows. The networks which consist of 50, 60, 70, 80, 90, and 100 sensor nodes are generated respectively in the simulation area, and The nodes’ routing information is produced by running five algorithms respectively. Figure 3 is the comparison of the network lifetime of our proposed one against other four algorithms. It is clearly to see that the network lifetime of ACOHCM is the longest. The main reason why ACOHCM algorithm can extend the network lifetime at a maximum extent is that it uses the dynamic energy threshold strategy to take a strict control of the node energy consumption, trying to avoid the low energy nodes in the process of path selection. On another hand, the proposed algorithm finds the best path with minimum total energy consumption in the energy-abundant nodes.

6. Conclusions

This paper proposes an effective hybrid WSN routing algorithm named ACOHCM. Different from the existing WSN routing algorithms that only consider one aspect of improvement in terms of minimizing total power consumption, balancing the network load, speeding up the convergence and the dynamic networking capability. Our proposed ACOHCM takes into comprehensive account energy efficiency, load balancing, convergence speed, and routing reliability as well as ease of maintenance so as to fulfill its use in real-world applications. The algorithm combines ant colony optimization with minimum hop count routing strategy, greatly improving the efficiency and overall performance. In order to search for the optimal routing path, in consideration of the characteristics of WSNs, we revise the heuristic factor and replace a new pheromone update strategy in the probabilistic node state transition formula for path selection in the ant colony algorithm. In addition, we propose a dynamic energy threshold strategy and a mutation strategy. The proposed algorithm is found to be efficient and it effectively prolongs the network lifetime in comparison with other methods such as classic ACO, LTAWSN, ACO-GA and EALD.
References

Acknowledgments

This research are supported by Natural Science Foundation of Shanxi under the contract number 2013011019-7; Overseas Returnees Research Project Supported by Shanxi Scholarship Council of China under the contract number 2017-051; and the Compact Fund of Charles Sturt University, Australia. The authors thank the Editor-in-Chief, Associate Editor, and reviewers for their valuable comments and suggestions that improved the paper’s quality.

Author Contributions

Ailian Jiang proposed the main idea. They then conceived and designed the experiments, Ailian Jiang performanced the experiments, Lihong Zheng analyzed the results; They both wrote the paper.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Naranjo, P.G.V.; Shojafar, M.; Mostafaei, H.; Pooranian, Z.; Baccarelli, E. P-SEP: A prolong stable election routing algorithm for energy-limited heterogeneous fog-supported wireless sensor networks. J. Supercomput. 2017, 73, 733–755. [Google Scholar] [CrossRef]
  2. Mohajerani, A.; Gharavian, D. An ant colony optimization based routing algorithm for extending network lifetime in wireless sensor networks. Wirel. Netw. 2016, 22, 2637–2647. [Google Scholar] [CrossRef]
  3. Wu, C.; Gunatilaka, D.; Saifullah, A.; Sha, M.; Tiwari, P.B.; Lu, C.; Chen, Y. Maximizing Network Lifetime of WirelessHART Networks under Graph Routing. In Proceedings of the 2016 IEEE First International Conference on Internet-of-Things Design and Implementation (IoTDI), Berlin, Germany, 4–8 April 2016; pp. 176–186. [Google Scholar]
  4. Han, K.H.; Ko, Y.B.; Kim, J.H. A novel gradient approach for efficient data dissemination in wireless sensor networks. In Proceedings of the IEEE 60th Vehicular Technology Conference, Los Angeles, CA, USA, 26–29 September 2004; Volume 4, pp. 2979–2983. [Google Scholar]
  5. Chiang, S.S.; Huang, C.H.; Chang, K.C. A Minimum Hop Routing Protocol for Home Security Systems Using Wireless Sensor Networks. IEEE Trans. Consum. Electr. 2007, 53, 1483–1489. [Google Scholar] [CrossRef]
  6. Saleem, M.; Di Caro, G.A.; Farooq, M. Swarm intelligence based routing protocol for wireless sensor networks: Survey and future directions. Inf. Sci. 2011, 181, 4597–4624. [Google Scholar] [CrossRef]
  7. Kuila, P.; Jana, P.K. Energy efficient clustering and routing algorithms for wireless sensor networks: Particle swarm optimization approach. Eng. Appl. Artif. Intell. 2014, 33, 127–140. [Google Scholar] [CrossRef]
  8. Dorigo, M.; Maniezzo, V.; Colorni, A. Ant system: Optimization by a colony of cooperating agents. IEEE Trans. Syst. Man Cybern. Part B (Cybern.) 1996, 26, 29–41. [Google Scholar] [CrossRef] [PubMed]
  9. Dorigo, M.; Gambardella, L.M. Ant colony system: A cooperative learning approach to the traveling salesman problem. IEEE Trans. Evol. Comput. 1997, 1, 53–66. [Google Scholar] [CrossRef]
  10. Stützle, T.; Hoos, H.H. MAX–MIN Ant System. Future Gener. Comput. Syst. 2000, 16, 889–914. [Google Scholar] [CrossRef]
  11. De la Cruz, J.E.C.; Estaño, E.R.A.; Wiesse, L.E.B. Determination of optimum parameters in the implementation of an ant net routing algorithm for improving data transmission. J. High Andean Res. 2016, 18, 439–448. [Google Scholar]
  12. Zhang, J.; Chung, H.S.-H.; Lo, A.W.; Huang, T. Extended ant colony optimization algorithm for power electronic circuit design. IEEE Trans. Power Electron 2009, 24, 147–162. [Google Scholar] [CrossRef]
  13. Zhan, Z.H.; Zhang, J.; Li, Y.; Liu, O.; Kwok, S.K.; Ip, W.H.; Kaynak, O. An Efficient Ant Colony System Based on Receding Horizon Control for the Aircraft Arrival Sequencing and Scheduling Problem. IEEE Trans. Intell. Transp. Syst. 2010, 11, 399–412. [Google Scholar] [CrossRef]
  14. Iyengar, S.S.; Wu, H.C.; Balakrishnan, N.; Chang, S.Y. Biologically Inspired Cooperative Routing for Wireless Mobile Sensor Networks. IEEE Syst. J. 2007, 1, 29–37. [Google Scholar] [CrossRef]
  15. Rosati, L.; Berioli, M.; Reali, G. On ant routing algorithms in ad hoc networks with critical connectivity. Ad Hoc Netw. 2008, 6, 827–859. [Google Scholar] [CrossRef]
  16. Liao, W.-H.; Kao, Y.; Fan, C.-M. Data aggregation in wireless sensor networks using ant colony algorithm. J. Netw. Comput. Appl. 2008, 31, 387–401. [Google Scholar] [CrossRef]
  17. Okdem, S.; Karaboga, D. Routing in Wireless Sensor Networks Using an Ant Colony Optimization (ACO) Router Chip. Sensors 2009, 9, 909–921. [Google Scholar] [CrossRef] [PubMed]
  18. Yang, J.; Xu, M.; Zhao, W.; Xu, B. A Multipath Routing Protocol Based on Clustering and Ant Colony Optimization for Wireless Sensor Networks. Sensors 2010, 10, 4521–4540. [Google Scholar] [CrossRef] [PubMed]
  19. Khoshkangini, R.; Zaboli, S.; Conti, M. Efficient Routing Protocol via Ant Colony Optimization (ACO) and Breadth First Search (BFS). In Proceedings of the 2014 IEEE International Conference on Internet of Things(iThings), and IEEE Green Computing and Communications (GreenCom) and IEEE Cyber, Physical and Social Computing (CPSCom), Taipei, Taiwan, 1–3 September 2014; IEEE Computer Society; pp. 374–380. [Google Scholar]
  20. Kim, J.-Y.; Sharma, T.; Kumar, B.; Tomar, G.S.; Berry, K.; Lee, W.-H. Intercluster ant colony optimization algorithm for wireless sensor network in dense environment. Int. J. Distrib. Sens. Netw. 2014, 10, 457–467. [Google Scholar] [CrossRef]
  21. Sobral, J.V.V.; Rabêlo, R.A.L.; Araújo, H.S.; Filho, R.H.; Baluz, R.A.R.S.; Santos, F.A. An enhancement in directed diffusion and AOMDV routing protocols using hybrid intelligent systems. In Proceedings of the 2014 IEEE International Conference on Systems, Man, and Cybernetics (SMC), San Diego, CA, USA, 5–8 October 2014; pp. 3253–3258. [Google Scholar]
  22. Li, T.; Ruan, F.; Fan, Z.; Wang, J.; Kim, J.U. An Improved PEGASIS Protocol for Wireless Sensor Network. In Proceedings of the 2015 3rd International Conference on Computer and Computing Science (COMCOMS), Hanoi, Vietnam, 22–24 October 2015; pp. 16–19. [Google Scholar]
  23. Liu, X. An optimal-distance-based transmission strategy for lifetime maximization of wireless sensor networks. IEEE Sens. J. 2015, 15, 3484–3491. [Google Scholar] [CrossRef]
  24. Sun, Y.; Tian, J. WSN Path Optimization Based on Fusion of Improved Ant Colony Algorithm and Genetic Algorithm. J. Comput. Inf. Syst. 2010, 6, 1591–1599. [Google Scholar]
  25. Ismkhan, H. Effective heuristics for ant colony optimization to handle large-scale problems. Swarm Evol. Comput. 2017, 32, 140–149. [Google Scholar] [CrossRef]
  26. Ho, J.-H.; Shih, H.-C.; Liao, B.-Y.; Chu, S.-C. A ladder diffusion algorithm using ant colony optimization for wireless sensor networks. Inf. Sci. 2012, 192, 204–212. [Google Scholar] [CrossRef]
  27. Du, T.; Qu, S.; Wang, Q. An Energy Aware Ladder Diffusion Routing Algorithm for WSNs. Lect. Notes Inf. Theory 2014, 2. [Google Scholar] [CrossRef]
  28. Heinzelman, W.B.; Chandrakasan, A.P.; Balakrishnan, H. An application-specific protocol architecture for wireless microsensor networks. IEEE Trans. Wirel. Commun. 2002, 1, 660–670. [Google Scholar] [CrossRef]
  29. Stützle, T.; López-Ibáñez, M.; Pellegrini, P.; Maur, M.; de Oca, M.M.; Birattari, M.; Dorigo, M. Parameter Adaptation in Ant Colony Optimization; Technical Report Series; IRIDIA: Bruxelles, Belgium, 2010. [Google Scholar]
  30. Beyer, H.-G.; Schwefel, H.-P.; Wegener, I. How to analyse evolutionary algorithms. Theor. Comput. Sci. 2002, 287, 101–130. [Google Scholar] [CrossRef]
  31. Gutjahr, W.J. A Graph-based Ant System and its convergence. Future Gener. Comput. Syst. 2000, 16, 873–888. [Google Scholar] [CrossRef]
  32. Stutzle, T.; Dorigo, M. A short convergence proof for a class of ant colony optimization algorithms. IEEE Trans. Evol. Comput. 2002, 6, 358–365. [Google Scholar] [CrossRef]
  33. Dorigo, M.; Blum, C. Ant colony optimization theory: A survey. Theor. Comput. Sci. 2005, 344, 243–278. [Google Scholar] [CrossRef]
  34. Neumann, F.; Witt, S. Runtime Analysis of a Simple Ant Colony Optimization Algorithm. Algorithmica 2009, 54, 243–255. [Google Scholar] [CrossRef]
  35. Doerr, B.; Neumann, F.; Sudholt, D.; Witt, C. Runtime analysis of the 1-ANT ant colony optimizer. Theor. Comput. Sci. 2011, 412, 1629–1644. [Google Scholar] [CrossRef]
  36. Gutjahr, W.J. Ant Colony Optimization: Recent Developments in Theoretical Analysis. In Theory of Randomized Search Heuristics; World Scientific: Singapore, 2011; pp. 225–254. [Google Scholar]
  37. Zhou, Y. Runtime Analysis of an Ant Colony Optimization Algorithm for TSP Instances. IEEE Trans. Evol. Comput. 2009, 13, 1083–1092. [Google Scholar] [CrossRef]
  38. Kötzing, T.; Neumann, F.; Röglin, H.; Witt, C. Theoretical analysis of two ACO approaches for the traveling salesman problem. Swarm Intell. 2012, 6, 1–21. [Google Scholar] [CrossRef]
Figure 1. Hop count-classification network topology in an area of 100 m × 100 m.
Figure 1. Hop count-classification network topology in an area of 100 m × 100 m.
Sensors 18 01020 g001
Figure 2. Convergent features of the different algorithms.
Figure 2. Convergent features of the different algorithms.
Sensors 18 01020 g002
Figure 3. The network lifetime of the different algorithms changing with the number of nodes.
Figure 3. The network lifetime of the different algorithms changing with the number of nodes.
Sensors 18 01020 g003
Table 1. Parameters in the simulation.
Table 1. Parameters in the simulation.
ParameterValueParameterValue
E e l e c 50 nJ/bit ϵ m p 0.0013 (pJ/bit/m 4 )
ϵ f s 10 (pJ/bit/m 2 ) d m a x 20 m
k100 KB γ 2.5
C1000 JQ100
α 0.5 β 5
ρ 0.3 i t e r c n t 100
t h r e s h o l d 800 J t h r e s h o l d m i n 300 J
τ m a x 200 τ m i n 100
Table 2. Time consumption for iteration and the success rate of searching for the optimal solution of the algorithms.
Table 2. Time consumption for iteration and the success rate of searching for the optimal solution of the algorithms.
Name of the AlgorithmsTime per an IterationSuccess Rate
ACOHCM3.46 ms99%
ACO-GA5.79 ms92%
LTAWSN8.71 ms88%
Classic ACO15.63 ms55%

Share and Cite

MDPI and ACS Style

Jiang, A.; Zheng, L. An Effective Hybrid Routing Algorithm in WSN: Ant Colony Optimization in combination with Hop Count Minimization. Sensors 2018, 18, 1020. https://doi.org/10.3390/s18041020

AMA Style

Jiang A, Zheng L. An Effective Hybrid Routing Algorithm in WSN: Ant Colony Optimization in combination with Hop Count Minimization. Sensors. 2018; 18(4):1020. https://doi.org/10.3390/s18041020

Chicago/Turabian Style

Jiang, Ailian, and Lihong Zheng. 2018. "An Effective Hybrid Routing Algorithm in WSN: Ant Colony Optimization in combination with Hop Count Minimization" Sensors 18, no. 4: 1020. https://doi.org/10.3390/s18041020

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