Abstract

Coverage problem is one of the major issues in wireless sensor networks (WSN). In order to optimize the network coverage, different coverage formulations have been proposed. Recently, a newly emerging coverage scheme in wireless sensor networks, sweep coverage, which uses mobile sensors to monitor certain points of interest (POIs), is proposed. However, the data delivery to sink, an important problem in WSN, is not considered in original sweep coverage and many of the existing works did not consider it yet. In this work, a novel algorithm named ACOSC (ACO-based sweep coverage) to solve the sweep coverage problem considering periodical coverage of POIs and delivery of data simultaneously is proposed. The evaluation results show that our algorithm has better performance than existing schemes.

1. Introduction

Wireless sensor networks (WSN) have gained great attention in recent year. An important problem in WSN is the coverage problem, which focuses on how well the sensors observe the physical space they deployed. A large number of coverage formulations have been proposed. The coverage problems in WSN can be classified into three types: area coverage, point coverage, and barrier coverage. In any of these coverage types, stationary sensor nodes are deployed in a huge number and continuous monitor of the area is provided. However, in some applications, such as patrol inspection, certain points of interest (POI) need to be monitored periodically instead of continuous coverage of the whole area [1]. In this scenario, it is assumed that all sensors are mobile; thus, all POIs needed to be visited by a mobile node periodically, which is featured as a sweep coverage [2, 3].

Due to characteristics of sweep coverage, using the traditional static coverage approaches to sweep coverage scenario is not feasible, which could cause poor efficiency and unnecessary extra cost. In order to reduce the cost and complexity of the WSN, the number of mobile nodes in sweep coverage problem should be reduced. Thus, how to schedule the path of mobile sensors to satisfy the coverage requirement of POIs with minimum number of sensors is the key issue of sweep coverage, known as the min-sensor sweep-coverage problem, and is proved to be NP-hard [2, 3].

Although the potential benefit of using sweep coverage to reduce the cost and complexity of the WSN is significant, the difficulty of this problem is enormous. Fundamentally, this problem is a combination optimization problems and there are two components that are tightly coupled in this problem. The first component is periodical coverage of POIs (data collection) and the second one is delivery of the data from POIs to sink. As a result, a combination optimization problem with the objective of minimizing the mobile sensors in WSN needs to consider both data collection and data delivery. Due to these difficulties, existing solutions to this problem only take the data collection into account. In this paper, we focus on min-sensor sweep-coverage problem with data collection and data delivery. The main contributions of this paper are as follows.(i)As the sweep coverage problem is a combinatorial optimization, we explore the sweep coverage problem using ant colony optimization (ACO) algorithm.(ii)We investigate the sweep coverage problem with the objective of minimizing the number of mobile sensors considering the data collection from POIs and data delivery to sink simultaneously.(iii)We propose a path-planning scheme of mobile sensors based on ant colony optimization named ACOSC (ACO-based Sweep Coverage) to solve min-sensor sweep-coverage problem.(iv)We introduce the crossover operations to ACOSC to explore search space and to prevent local optimization.

The rest of the paper is organized as follows. Section 2 describes the related works of sweep coverage problem, and Section 3 presents the model of minimum number of required sensors problem in sweep coverage. In Section 4 we describe the ACOSC scheme. In Section 5, we provide some simulation results and lastly the conclusions are provided in Section 6.

Gage [4] first proposes the concept of coverage and uses it to evaluate the performance of multirobot system. He classifies the coverage into 3 categories: blanket coverage, barrier coverage, and sweep coverage. In blanket coverage, the goal is to achieve a static arrangement of sensors that maximizes the total detection area. The goal of barrier coverage is to achieve a static arrangement of nodes that minimizes the probability of undetected penetration through the barrier. The goal of sweep coverage is using mobile sensors to coverage certain POI in the monitored area. Using a minimum number of sensors is a clear objective in sweep coverage problem.

There has been massive work done on sweep coverage problem in WSN [29]. Cheng et al. are the first to introduce the concept of sweep coverage and propose its potential applications [2]. Cheng et al. prove that determining the minimum number of required sensors (min-sensor sweep-coverage problem) is NP-hard. Then, the authors propose two algorithms: centralized CSWEEP algorithm and distributed DSWEEP to solve the problem. However, the centralized CSWEEP algorithm only can handle the problem of the POIs which have the same coverage time. The DSWEEP algorithm may cause the problem of some POIs which cannot be covered. A distributed algorithm based on a virtual 3D map of local gradient information to guide the movement of mobile nodes to achieve sweep coverage on dynamic POIs is proposed [5]. This method cannot discover the relative direction for each neighborhood and may cause a problem that all the mobile sensors may be guided to have the same path. A patrol point algorithm which can keep the patrol times of mobile node approximate to one another and can meet the detection requirements of a potential fire flashover situation is proposed [6]. However, this algorithm fails to achieve sweep coverage of the given region with optimal operation time. Du et al. propose two algorithms: MinExpand and OSweep under tow sceneries [7]. When the mobile sensor is restricted to follow the same trajectory in different sweep periods, a centralized algorithm MinExpand is proposed to schedule the scan path. When the mobile sensors are not restricted to follow the same trajectory in different sweep periods, OSweep algorithm is proposed, where all the mobile sensors are scheduled to move along a TSP (traveling salesman problem) ring consisting of POIs. In [8], the authors focus on the problem of data collection in WSNs with the minimum mobile nodes. A heuristics path planning algorithm to minimize the number of mobile nodes is proposed. The authors present decentralized sweep coverage algorithms to guarantee the complete coverage of the given region by sweeping in parallel with workload partition [9]. Unfortunately, these existing schemes only focus on how to control the trajectory of sensors to scan POIs or regions within a given time; how the data will be sent to sink is not considered. On the other hand, the date delivery is also studied in [10] but with different network structure.

To the best of our knowledge, there is little literature to use ACO algorithm for this problem. The ACO has been successfully applied to some classic compounding optimization problems, such as TSP, vehicle routing problem (VRP), and vehicle routing problem with time windows (VRPTW). The paper aims to test the feasibility of ACO in sweep coverage problem.

3. Problem Description

The sweep coverage problem can be stated as definition of POI access route for a fleet of mobile nodes that covers a number of POI in a given time interval for data collection and transmission [11]. Mathematically, our previous works describe this problem as a weighted graph , where the vertices are represented by , and the arcs are represented by . A sink node where each mobile sensor starts its route is located at and each of the other vertices represents the POIs. The distances associated with each arc are represented by the variable which is measured using Euclidean computations. Each POI has specified coverage requirement . Each mobile sensor is given a data buffer size . Once a mobile node accesses certain POI , it collects bytes data. The problem is solved under the following constraints.(i)Each POI is covered once by a mobile sensor within its coverage requirement.(ii)Each mobile sensor must start and end its route at the sink node, .(iii)In each route, the total data collected by each mobile sensor must not exceed buffer capacity.

The optimal objection in sweep coverage is to find the minimum number of mobile nodes.

4. ACOSC Algorithm

The ACOSC algorithm searches for a solution by minimizing the number of mobile sensor as much as possible. In ACOSC, the colony works in this way: analyzing each POI with respect to the constraints imposed by the model. Each ant builds a list of feasible movements and chooses the one by a probabilistic rule. In order to prove the performance of ACO algorithm in sweep coverage, we use a local search algorithm in ACOSC. The first step of the algorithm finds a feasible solution by a heuristic based on nearest neighbor.

4.1. Route Construction

Each ant starts from sink node, constructs its route by incrementally selecting POIs, and returns to the sink node. The probability for ant in POI to choose next POI in its route is then given by is the amount of pheromone on the arc connecting POI and POI . denotes the visibility on the arc . is a constant which makes the magnitude consistent with . The global search capability of our algorithm becomes weak when is too large or too small. is Euler distance of arc . and are the weight parameters which denote the relative influence of the pheromone trails and the visibility values, respectively. contains feasible POIs to extend the current partial solution of ant . is a constant . Each time, the ant selects a random number distributed in for . If , we multiply the pheromone on arc by the visibility , and the ant will choose edges shorter and has more pheromone than other ones. Otherwise, calculate the probability with which for ant in POI choose to move to POI using formula (2). Then, the roulette wheel selection is needed to decide which candidate to select.

If the mobile sensor’s buffer size is full with collected data in constructing the route, it must return to the sink and start to build a new route.

4.2. Local Search

We adopt the two-point crossover operation in [12], which has good performance in VRP and PVRPTW problem. In two-point crossover operation, two paths from the solution are selected and then two POIs in each path are selected. The selected POIs are called the crossover point set. All crossover point set, which consists of four points, is tested to find local optimal. The best set, which can reduce most of the number of mobile sensors of the solution, is selected from all feasible sets of the crossover points to construct the new paths. For example, there are two paths: path A and path B shown in Figure 1. The POI ID {1, 4} in path A and the POI ID {2, 3} in path B are selected to be crossover points and the crossover point set is {1, 2, 3, 4}. We also adopt the method in [12] to decrease the computation time of four points. In [12], the number of permutations of crossover point set is 6, that is, {1, 4, 2, 3}, {1, 2, 4, 3}, {1, 2, 3, 4}, {2, 1, 4, 3}, and {2, 1, 3, 4}. In each permutation, there are five feasible combinations for the new path A′ and the new path B′: A′{1, 2, 3, 4; B′: none}, {A′: 1; B′: 2, 3, 4}, {A′: 1, 2; B′: 3, 4}, {A′: 1, 2, 3; B′: 4}, and {A′: none; B′: 1, 2, 3, 4}. The combinations are shown in Figure 2.

4.3. Pheromone Information Updating
4.3.1. Local Updating Rule

Local updating rule (4) is applied once an edge is visited by an ant: where is the pheromone information of arc and is the evaporation parameter of pheromone information. is a parameter related to the number of POI numbers in sweep coverage problem and is a constant. The larger the is, the faster the convergence of the algorithm is. If is too large, it may affect the efficient convergence of the algorithm. is the mobile sensor number in current solution built by ants. denotes the number of total POIs including the sink node.

4.3.2. Global Updating Rule

Once all ants finish their searches in iteration, global updating rule (6) is applied to modify the amount of pheromone on the global best solution: where is the pheromone information of arc , is the pheromone decay parameter , and is the mobile sensor number of the globally best solution.

4.4. Stopping Rules

ACOSC procedure stops when there is no improvement on the solution after several iterations or when maximum number of iterations is reached.

4.5. Overall Procedure

The overall procedure of ACOSC is presented as below.

Step 1. Initialization: it includes total ant number, total iteration times, and maximum number of unimproved iterations.

Step 2. Route construction: every ant constructs its own route (solution).

Step 3. Local search: every ant uses local search algorithm to improve the solution.

Step 4. Update pheromone.

Step 5. If the algorithm reaches the total iteration times or maximum number of unimproved iterations, go to Step 6, or else go to Step 2.

Step 6. End ACOSC, and print solution.

5. Performance Evaluation

In this section, we present simulation results to evaluate our algorithm and compare it with OSweep [7] and VRPSC [11]. In OSweep, all the mobile sensors are scheduled to move along a TSP (traveling salesman problem) ring consisting of POIs and in VRPSC an insertion algorithm is first introduced to create the initial scanning routes for POIs, and then the simulated annealing is employed to optimize these routes. We first describe simulation scenarios and then discuss simulation results. Only one metric will be evaluated: the mobile sensor number. We try to evaluate the performance of our solutions in different scenarios. Multiple factors are considered, such as different velocity of mobile sensors and required coverage time interval of POIs.

We consider POI , randomly deployed in a area (in meters). The required coverage time interval of each POI is randomly distributed in seconds. The default moving velocity of mobile sensors is set to 1 m/s, 3 m/s, and 7 m/s, which is the same as the literature [11]. The default buffer of mobile sensor is set to 210 bytes, 840 bytes, and 3920 bytes, which means the buffer as the main constraint, common constraint, and the secondary constraint.

5.1. Comparison of OSweep and ACOSC

Because OSweep algorithm does not consider the buffer size of mobile sensor, so we set buffer size big enough to perform the comparison of OSweep and ACOSC. Figure 3 shows the impact of varying speed on OSweep and ACOSC. We could see that, under the same POI scenario, when the speed rises, the number of mobile sensors decreases. The ACOSC has approximately 50% improvement in mobile sensor number as compared with OSweep.

5.2. Comparison of VRPSC and ACOSC

Figure 4~Figure 6 show the comparison of VRPSC and ACOSC with varying mobile sensor speed and buffer size. Figure 4 shows the mobile sensor has buffer size 210 bytes but has varying speed 1 m/s~7 m/s. We can see that the ACOSC had better performance than VRPSC except that the mobile sensor has the speed of 7 m/s. The reason is that when the mobile sensor has high speed, the only constraint is the buffer. Once a mobile node accesses certain POI, it collects 70 bytes data. That is to say, under this scenario, one route only can cover 3 POIs. Therefore, the VRPSC and the ACOSC both can find the best solution. Thus, the performances of VRPSC and the ACOSC are the same.

Figure 5 shows the mobile sensor has buffer size 840 bytes but has varying speed 1 m/s~7 m/s. We can see that the ACOSC has better performance than VRPSC when the speed rises. Figure 6 shows the mobile sensor has buffer size 3920 bytes but has varying speed 1 m/s~7 m/s. From Figures 5 and 6, we can see that when the buffer size of the mobile sensor increases, the performance of ACOSC is better than VRPSC.

6. Conclusions

Sweep coverage is a promising scheme that can significantly decrease the coverage cost by making use of the mobile sensors. However, it also raises new challenges such as how to minimize the number of mobile sensors and how to schedule the route of the mobile sensors. This paper proposed an algorithm to optimize the number of mobile sensors and jointly consider the route scheduling of mobile sensor. We adapt the ACO algorithm to sweep coverage problem. First, the ant builds its solution. Then, two-point crossover operation is implemented to find a local optimum. The total mobile sensor number is minimized to decrease the networks cost. Simulation result shows ACOSC has much better performance than other algorithms and adapts well under different conditions.

Conflict of Interests

The authors declare that there is no conflict of interests regarding the publication of this paper.

Acknowledgments

This work is supported by National Natural Science Foundation of China (no. 61272448), Doctoral Fund of Ministry of Education of China (no. 20110181130007), and Science and Technology Supporting Plan of Sichuan (nos. 2011RZ0004 and 2012GZ0005).