1. Introduction
As mobile sensing systems, unmanned aerial vehicles (UAVs) are a fast and efficient option to perceive the environment due to their quick response capabilities. The UAVs can assume autonomous behaviors performing complex tasks at a low operational cost, providing strong motivations to adopt these vehicles for various activities such as environmental monitoring, search and rescue activities, and precision agriculture.
Despite the remarkable benefits of using UAVs in such applications, it is important to highlight inherent limitations of the different UAV platforms, which must be considered when planning paths to cover a target area. Nowadays, the UAVs are classified as fixed-wing, rotary-wing (single and multirotor), and hybrids. Fixed-wing UAVs are characterized by their long endurance and fast flight speed, suitable for extensive area coverage applications such as monitoring power lines, roads, and pipelines. This UAV type requires some setup time to be launched, as this process usually has to be performed manually [
1]. Some models are electric with four hours of endurance [
2], and others use a fuel-injected engine that extends the flight time to up to 24 h [
3]. However, they cannot perform vertical take-off and landing (VTOL). The multirotors are popular due to their maneuverability, hovering, and VTOL capability, but their low endurance usually restricts their flight range. The most common multirotor UAVs use battery technology that allows flights of 20 to 30 min, reaching 75 min on more advanced models [
4]. The single-rotors have VTOL capability as do multirotors, but they are more efficient with longer endurance and greater payload capacity. Their power source can be combustion engines, allowing some models to fly for up to 4.8 h [
5]. The hybrid UAVs combine the characteristics of fixed- and rotary-wing UAVs, such as the tilt-rotor-like aircraft. This configuration allows tilting the rotors to achieve the same VTOL capability as rotary-wing UAVs or flight dynamics as the fixed-wing, significantly improving its endurance [
6]. Another hybrid configuration is a fixed-wing UAV with dedicated rotors to perform VTOL. An electric example of fixed-wing hybrid VTOL can achieve 2.5 h of flight time [
7]. Notwithstanding the various types of UAVs and their performance differences, this paper proposes a high-level method that is able to plan coverage routes for all such types in a heterogeneous fleet. By properly setting up the input parameters of our method, the constraints inherent to each type of UAV can be incorporated.
In a different direction, some current solutions for route planning in coverage tasks tend to mitigate the limitations of using a particular UAV. An area decomposition strategy to generate paths with the minimum number of turns for fixed-wing UAVs, aiming to maximize coverage capability, was explored by Avellar et al. [
1]. Since this type of UAV is manually prepared and launched, the authors proposed a mission planning methodology that considers human operator setup time capacity to adjust the number of vehicles to be deployed to minimize the total mission time.
A solution for planning routes to complete coverage using multirotors is presented in [
8]. Unlike the decomposition strategy adopted in [
1], the grid pattern map decomposition used by the authors cannot ensure a minimal number of turns. Each vehicle is assigned to a base where its mission starts and ends and its battery is recharged. As the bases can be installed in a set of cells predefined as potential bases, this strategy defines the path and the cell locations for opening the bases that minimize the maximum travel time for all UAVs.
The possibility of recharging the UAVs in different cells of the grid is presented in [
9]. However, different from [
8], the routing problem was not explored. In this case, the proposed method searches for the open paths that connect all grid cells, locating the recharging stations to minimize the vehicle’s energy consumption and the time to cover some high priority cells. Although this previous method was designed for long-term complete area coverage, it cannot be applied to planning missions that require the return of all vehicles to the base in a set minimum time, which is common in monitoring missions in areas without network infrastructure. In this case, the mission finishes when the sensing data are gathered after all vehicles return to the base station. An example is the protected areas in the Brazilian Amazon forest, which are remote regions without network coverage and with limited access to electricity.
Assunção et al. [
10] indicated that remote-sensing-based monitoring and law enforcement significantly impact reducing the Amazon’s deforestation. Although using satellite imagery to identify forest cover changes provided significant advances in monitoring, this system has technical limitations, such as the lack of image resolution to identify forest losses in contiguous areas of less than 25 hectares. The study indicated a possible change in strategy to escape detection by the increase in the deforestation of small areas [
11,
12,
13].
Thus, to improve the Brazilian environmental command and control strategy, the development of strategies, which can be used to plan fast and effective monitoring operations supplying the governmental authorities with precise information to identify and control small-scale deforestation and forest degradation, must be promoted [
14]. Planning strategies for this kind of operation must ensure that the entire area is completely covered as quickly as possible, as detecting such damage earlier is critical for combat teams to act more effectively on site. In this case, the cellular decomposition method used in [
1] is more appropriate since it ensures complete area coverage with an exact representation, reduces the UAV’s energy expenditure in the turns, and requires fewer vertices to represent the area than grid-based methods.
In this paper, we adopt the same area decomposition strategy as explored earlier by our team [
1] and propose extending the previous path planning by presenting a matheuristic to deal with long-term coverage applications and heterogeneous UAVs. We design a high-level path planning method that defines the UAV routes for the coverage task and the recharging stations to be opened. As a high-level planner, the UAV particularities of fixed- and rotary-wing vehicles such as refueling time, curvature restriction, coverage altitude, the impact of take-off and landing method (autonomously or manually), and camera parameters are abstracted from the path planning method. In this case, all low-level factors must be mapped to the application by setting the proposed method’s input parameters adequately for each vehicle, such as flight time, speed, and the recharging ratio.
Due to the high costs of installing the recharging stations in the preservation areas, this high-level planner aims to minimize both the longest route among all the routes planned for the team and the number of necessary recharging stations, locating the places to open such facilities. Note that both minimization objectives (the longest flight time and the number of recharge stations) can be conflicting. Decreasing the number of recharging stations can force a UAV to make a detour to recharge, thereby increasing its coverage time.
The applied decomposition method represents each coverage row by a pair of vertices at its extremities. As the vehicle must visit these vertices, we use their positions as references to the recharging station locations. A conventional methodology to find the optimal solution for this multiobjective problem is to reduce it to a sequence of mono-optimization problems that can be modeled and theoretically solved by a commercial solver. However, the costs to compute a proven optimal solution is prohibitive in practice since this routing problem is known to be nondeterministic polynomial-time (NP)-hard.
We propose and evaluate four matheuristics distinguished by different forms of interactions between the multiobjective variable neighborhood search (MOVNS) metaheuristic and the exact method to solve this problem. The first matheuristic implemented uses the MOVNS to divide the coverage area among the UAVs and apply the exact method to build their routes. Every modification performed by the MOVNS is rerouted and evaluated to check if an improvement is obtained, which results in a high call rate of the exact method. This issue was mitigated by adopting heuristics to rearrange the route on the MOVNS and perform the route evaluation regardless of the exact method. One of these uses the exact method to build only the initial solution, and the other two strategies apply it to improve the solution at specific steps in the method. To evaluate the effect of these modifications, we analyzed the algorithm’s performance considering the computation time to return its solutions and their quality regarding the coverage, cardinality, and hypervolume metrics.
The main contributions of this paper are: (1) presenting a multiobjective approach for routing long-term complete area coverage mission with multiple heterogeneous UAVs, simultaneously considering the time to complete the mission and the number of recharging station to optimize the coverage tours; (2) locating the recharging stations that can be shared among the vehicles; (3) developing, evaluating, and comparing different heuristics that return the set of nondominated solutions to minimize the longest time among all the vehicles and the number of recharging stations.
The remainder of this work is organized as follows: In
Section 2, a review of relevant related works is provided. A brief definition of the problem under investigation is provided in
Section 3. A mixed-integer linear programming (MILP) formulation for the problem is presented in
Section 4. The matheuristics to solve it are proposed in
Section 5. Computational experiments to evaluate the proposed heuristics and a discussion on proposed strategies are presented in
Section 6. Conclusions and final remarks are presented in
Section 7.
2. Related Work
Coverage path planning (CPP) has been addressed by several studies, usually for robot applications in monitoring/surveillance missions that require the coverage of some determined target points in the environment. In particular cases, these monitoring missions must persist for a long time, following a path that maximizes each target’s visit frequency. Persistence is usually solved by implementing speed controllers for the robots to stay perpetually monitoring the environment, as proposed in [
15]. The authors formulated a linear program (LP) that provides a solution for speed control in a dynamic environment. The robot path is planned a priori, and the proposed controllers adjust its speed to handle different levels of attention in different parts of the environment, keeping the coverage frequency bounded. Cassandras et al. [
16] presented an optimal controller for a multiagent system in persistent monitoring. The focus was to control the multiple agents movements to minimize the uncertainty on the mission space. A deterministic finite-state formulation for this problem is presented in [
17]. The authors proposed a branch and bound algorithm that quantifies the coverage quality in a finite prediction horizon.
A mixed-integer linear program (MILP) to find the fastest trajectory to cover a preassigned set of waypoints considering the collision avoidance constraints for UAV is presented in [
18]. This solution was extended [
19] by combining task assignment and trajectory planning for a fleet of UAVs, minimizing the mission time considering heterogeneous UAVs, different types of waypoints, time, and space constraints. Gonçalves et al. [
20] and Keller et al. [
21] explored the problem of collision avoidance for intersecting paths. The work in [
20] was further extended in [
22] to consider minimum spatial separation, acceleration constraints, and uncertainty in the speeds and positions of the vehicles.
Dille and Singh [
23] proposed a heuristic for planning road coverage trajectory in sparse environments considering motion-constrained vehicles such as fixed-wing UAVs. In this case, road monitoring using an exhaustive sweeping movement is not considered the most appropriate. Thus, the authors converted the edge-oriented road graph into a node-graph representation (roads as nodes) and then built the solution based on a traveling salesman problem (TSP), ensuring the complete coverage of the roads by visiting all nodes. Unlike the previous node-based solution, Oh et al. [
24] approached road patrolling with multiple fixed-wing UAVs considering it as an arc routing problem. An MILP formulation and an approximation algorithm based on the modified Dubins Chinese postman problem (mDCPP) as strategies to minimize the flight time were proposed.
Guerriero et al. [
25] presented a multiobjective approach to the dynamic routing problem using UAVs. This strategy combines the task scheduling problem with the motion planning problem in a multicriteria optimization model. Their objectives considered the minimization of the distance traveled, the maximization of the customers visited, and the minimization of the number of UAVs, ensuring both spatial and temporal coverage of specific targets in the environment.
An important issue in practice that emerged from monitoring missions is the limited capacity of the vehicles. In this case, long-term coverage applications must consider the vehicle’s capacity constraints and possible tour interruptions for replenishment. As observed from the literature, several related works have investigated routing strategies using multiple depots to replenish the vehicles in logistic operations [
26,
27,
28,
29,
30,
31]. Another class of approaches simultaneously considers the routing and depot-locating problems. Generally, the objectives are defining the locations of the depots and assigning each one to a route so that path costs and the number of depots are minimized [
32,
33,
34,
35].
A particular case of this locating problem considers the depots as recharging stations due to the vehicle fuel constraint. This approach is usually applied for routing electric vehicles (EVs), which may require regular recharging, which can be a potential issue for EV applications. In this sense, Chung et al. [
36] presented an optimization model for planning new charge station facilities over time, identifying predefined sites that maximize the total coverage flow. An approach for ranking these sites considering a multicriteria evaluation process integrated with a multiobjective method was proposed [
37]. Riemann et al. [
38] addressed the location of wireless charging facilities for roadway electrification. In this case, the EV equipped adequately with this technology can be recharged when driven over this type of road, also known as charging lanes. The authors formulated a mathematical model to locate a specific number of wireless charging lanes that maximizes the road traffic flow. Chen et al. [
34] investigated the optimal deployment of the charging infrastructure that combines the static charging stations and the wireless charging lanes. The charging planning for autonomous vehicle logistic system was combined with the scheduling problem [
39]. Ammous et al. [
40] investigated the customers trip delay due to the charging time for an EVs allocation system, presenting a routing scheme that considers the charging station queues to minimize the expected overall trip time for all customers’ overall routes relative to their trip time, not considering the delay required for in-route charging.
For UAVs with VTOL capability, a different charging station technology was proposed [
41,
42], enabling vehicles to autonomously dock, recharge, and return to their missions. Another more advanced alternative is the station technology that swaps the battery, replacing the depleted battery with one fully charged [
43]. It is not required to wait for the battery recharging that usually takes more time than the UAV’s flight time. As the most common UAVs have short endurance, determined by their battery capacity, such technologies have been considered in several solutions, especially for persistent missions.
The strategic deployment of such stations has been explored for package delivery services [
44,
45,
46]. Hong et al. [
44] proposed solutions to locate a limited number of recharging stations to maximize the customer’s coverage demand. Huang and Savkin [
45] focused on minimizing the number of charging stations keeping the customer demand ratio and the connectivity among stations and the depot. Cokyasar [
46] presented a mixed-integer nonlinear programming (MINLP) model that minimizes long-term investment and operational cost by defining delivery routes to customers using UAVs, trucks, or both vehicles (not for the same order). For the UAVs delivery, the charging stations are optimally localized to minimize their quantity, considering the UAV’s congestion costs at recharging stations and limited supply of batteries to be swapped. Due to the UAV payload restriction, such delivery works are constrained by one UAV delivering only one package to a customer at a time. The vehicle departs from the origin (warehouse) with the package and uses the charging structure to reach one target destination (customer), performing the same path to return to the origin. Thus, although some strategies for delivery can also be used in the context of surveillance, it is not straightforward to apply them in the problem considered in this work. In this paper, we propose to address the charging station locating problem jointly with the heterogeneous UAVs routing problem in a scenario that requires reaching more than one target in each UAV tour.
The routing considering the UAVs energy constraint was approached in some works as the fuel-constrained UAV routing problem (FCURP). Sundar and Rathinam [
47] presented an MILP formulation and an approximated algorithm for FCURP to find a path for the UAV that visits all targets and some recharging stations, when required to satisfy the fuel constraint, keeping the recharging demand minimal. Mitchell et al. [
48] extended the previous fuel constraint MILP formulation to multiple heterogeneous vehicles providing solutions for the multirobot persistent coverage problem (MRPCP). Two arc-based and two node-based MILP formulations for the extended FCURP for multiple UAVs (FCMURP) were analyzed [
49]. In this case, the authors observed that the arc-based formulations outperformed the node-based formulations in computing the optimal solution for any instance of the problem. Another MILP formulation for a similar fuel constraint problem was proposed [
50]. In this case, the authors aimed to minimize the overall costs to inspect critical locations when considering installing battery supply stations. The uncertainties in the fuel consumption by the UAVs for the FCMURP were investigated [
51] by modeling the UAVs’ fuel consumption as a two-stage stochastic program that minimizes, in the first stage, the travel distances for all vehicles and, in the second, the additional costs to recharge when the vehicle fuel is inadequate to complete the route defined by the first stage.
A more specific robotic mission in CPP is the complete coverage problem, which requires the decomposition of the area into cells that the robot must entirely visit. Galceran and Carreras [
52] presented several decomposition strategies, and the majority was classified as approximate or exact cellular decomposition, following [
53]. Choset’s taxonomy mainly differentiates between decomposition types by their representation level of the target area.
Approximate decomposition is used by grid-based methods to represent the area with a set of uniform cells. This grid representation is only an approximation of the real area shape. In this case, the coverage is completed by visiting all cells, but the coverage completeness depends on the grid resolution. Albeit simple, the grid-based representation is not scalable due to the exponential growth in memory usage [
54]. It also demands an accurate localization to maintain the coherency of the grid map for the coverage task, which becomes more challenging to apply to large areas [
55,
56].
Exact cellular decomposition [
57] splits the free space into nonoverlapping cells that exactly fit the space geometry when joined. A simple way to perform this space coverage is using a sequence of back-and-forth movement (zigzag) inside each cell. The sequence of the coverage among the cells can be solved by representing the decomposed space with an adjacency graph and then applying a graph search algorithm to determine the coverage order. The robot achieves complete area coverage by combining the navigation among the cells following the specified sequence and the zigzag movement inside each cell. Some works explored the direction of the zigzag movement to optimize the robot path, as seen in Li et al. [
58], who explored the optimal coverage path in exact decomposition, finding the sweep direction that minimizes the UAV’s turns. The authors proved that for area coverage using UAVs, decreasing the number of turns increases the path’s efficiency in terms of length, duration, and fuel consumption. The sweep direction problem was also explored in [
59], considering operations with multiple UAVs.
Avellar et al. [
1] presented a solution based on the vehicle routing problem (VRP) to minimize the total mission time in a complete area coverage task using multiple fixed-wing UAVs. In this case, the exact cellular decomposition method was performed to define the set of coverage rows that minimizes the vehicle turns. An MILP formulation was presented to route a team of UAVs considering practical issues to deploy this kind of vehicle, such as the time needed to prepare and launch them manually (setup time). In this case, the authors noted that the setup time has a relevant effect on the number of UAVs planned for the mission, especially when the number of human operators is smaller than the number of UAVs to be launched.
Similar area-coverage approaches using UAVs are reported in [
8]. However, different from [
1], the authors used the approximated cellular decomposition, presenting an MILP formulation to define the UAVs routes over the grid. This strategy of representing the area by a grid was also used in [
9,
60,
61], which, despite being designed for area coverage applications, addresses different problems.
Li and colleagues [
9,
60] combined the environmental, fuel constraints, and charging station location problem for persistent area surveillance with multiple UAVs. Given the number of working vehicles and the number of charging stations to be opened, a genetic algorithm was proposed to optimize the open paths for each UAV and the recharging station placement to minimize the energy consumption and the flight time to visit some high-priority cells.
Acevedo et al. [
61], albeit not considering the recharging of the UAV out of its base, proposed a distributed method for area division performed online among the UAVs. Each vehicle is assigned to a cell whose size is adjusted as the vehicles share information with their neighbors. All UAVs perform a planned closed path inside its cells that maximizes the periodic communications among the UAVs. As the information is updated, the cell dimension is adjusted to optimize the inside path to maximize coverage frequency considering the vehicles’ capacities.
Although some studies focused on the route optimization problems for multiple UAVs in the complete area in terms of coverage operations and others locating the recharging stations to extend the vehicle range in the mission, none of the above works considered all the constraints together in a multiobjective approach in a heterogeneous fleet. To the best of our knowledge, this work, for the first time, presents a multiobjective solution for routing long-term missions for complete area coverage with multiple heterogeneous UAVs, simultaneously considering the minimization of the total time of the mission and the localization of the minimum number of recharging stations. Note that the minimization of the number of recharge stations is a relevant criterion due to the costs associated with these facilities. However, the objectives may be conflicting, as reducing the number of recharging stations may force the UAV to travel a longer path to recharge, thereby increasing the time to complete the mission.
In our work, we are dealing specifically with a locating-route problem to guarantee complete area coverage by UAVs, which is not only restricted to area-monitoring tasks. The proposed methodology can be incorporated into the solution to other problems, such as using UAVs to supply data communication in wireless sensor networks (WSNs). The UAVs can also be used for data collection to support the transmission of the data gathered by sensor nodes on the ground. In this case, the vehicle capacity to transmit data is limited by the power consumption in the data transmission, flight speed, the available energy on the UAVs, the deployment location, and various other factors investigated in the literature, as presented in [
62,
63,
64,
65].
3. Problem Definition
Given an area to be monitored, it must be decomposed in several coverage rows considering sweep direction, camera parameters, and the UAV flight altitude [
1]. The distance between any two rows is calculated as a function of the camera footprint width, determined by the UAV flight altitude, the image sensor width, the camera focal length, and the side overlap percentage. These parameters influence the captured image, and their impact in the image reconstruction was previously assessed [
66].
The area is covered by a team of k UAVs equipped with on-board cameras pointing downward. The UAV flies at different heights to avoid collisions, which is compensated by adjusting the camera focus to keep the same footprint width for all vehicles. The UAVs have limited endurance and can reach at least one recharging station along their paths. They can recharge as many times as needed and must be able to cover at least one coverage row.
The decomposed area is modeled by a graph , where is the set of vertices, E is the set of edges, and is the number of vertices of the graph. Let be the set of targets in the extremities of the coverage rows and be the set given by the union of the depot and the potential locations for recharging stations . The base station (depot) denotes the vertex where the UAVs start and end their routes. All edges have a non-negative value and we consider the Euclidean distance between the vertices i and j. The distances are time-invariant, symmetric (), and satisfy the triangle inequality, i.e., . The coverage rows, , are required edges defined by the decomposition method and must be covered once by some UAVs. The vehicle endurance is denoted by , quantified by total flight time at a constant speed of . The flight time, , is reduced proportionally to the edge length given by . The time spent on the recharging station is considered proportional to the flight time, and the proportionality constant denotes its ratio.
The impact of UAV altitude on the coverage row generation relies on our group’s previous development [
1]. The UAV’s low-level parameters are reflected in our model by the high-level input parameters, such as the UAV flight time (
), speed (
), the recharge time ratio (
), and the costs to traverse the edges (
). Aspects concerning different altitudes among vertices or extra costs to perform curves by specific vehicle models can be embedded in the
parameter. For instance, we can consider the length of the real path that must be followed by a fixed-wing UAV to account for curvature constraints instead of using the Euclidean distance between the nodes. Other particularities can be mapped to their recharging time ratio
.
The objective of this work was to find the UAVs’ routes and locate the necessary recharging stations considering each vehicle’s performance, regardless of its hardware. Although the proposed method works independent of the UAV model, using either electric or combustion engines, in the remaining text, we consider the use of electric vehicles that complete their battery charge in the recharging stations available in the area.
Figure 1 illustrates a graph and the solution for area monitoring. The complete graph in
Figure 1a contains edges to connect every pair of different vertices in the set
V. The coverage rows
are all the continuous lines. Their ends (targets) must be numbered, using odd numbers on one side of the area and even numbers on the other. The recharging stations are aligned with the targets, being identified in the figure by letters (A–H) and the UAVs depot (I).
Figure 1b depicts an example of monitoring a protection area [
67]. In Brazil, this region has several hundred demarcated indigenous lands, which are essential for the protection of indigenous peoples. Thus, as illustrated, the active monitoring of these areas is crucial. The solution shows two routes for different UAV models that require recharging to complete the coverage mission. Due to the cost associated with installing new recharging stations in this location, more emphasis was placed on minimizing recharging stations opening to the detriment of time to complete the longest route. In this case, the solution that shares the recharging station at vertex
E was considered the best one.
Next, in
Section 4, the mathematical formulation is presented to find the exact solution for small areas and, in
Section 5, matheuristic strategies are explained that quickly return feasible solutions to cover larger areas.
4. Mathematical Formulation
The mathematical formulation presented in this work was inspired by [
1] for area coverage, by [
49] for the arc-routing model, and by [
48] for the heterogeneous vehicles application. Besides combining these different characteristics to minimize the longest route time, we also considered locating the recharging stations that can be open in the vertices defined using the area decomposition method while simultaneously minimizing the number of such stations.
The modeling of these two objectives is relevant. The first objective, which is to minimize the longest vehicle route (), is crucial for monitoring or search-and-rescue operations that demand the accomplishment of the mission in the least time. The second objective (), which is to minimize the number of recharging stations, is important for practical reasons as there might be financial costs associated with their installation, maintenance, and operation. The minimization of the number of stations is essential for some scenarios, as observed for fixed-wing UAVs, which might require a dedicated human operator responsible for the launch and rescue of the vehicle.
Let the decision variables be:
(1 if the
kth UAV flies from vertex
i to
j);
to indicate whether or not the recharging station
is used;
is a flow variable that denotes the total flight time performed by the UAV
k, starting the timing at any vertex in
D, which defines the time that the UAV reaches
j after passing through vertex
i; and
is the longest time to finish the planned route among all UAVs. The optimal coverage problem can be formulated as in (
1)–(16), minimizing the mission time (
) and the openings of recharging stations (
) subject to the following constraints:
The objective in (
1) is to minimize the longest time among the UAVs,
. This is a min-max problem where the decision variable
is an upper bound on the UAV’s time to cover the edges (
) plus its recharging time given by (
) in constraint (3), where
is the ratio of time for the UAV
k to recharge given the time consumed to traverse the edge. The second objective
is to minimize the total sum of recharging stations, each one represented by
, as stated in (2).
The degree constraint in (4) controls the flow through the vertices, ensuring whenever a UAV k arrives at the vertex, it must leave it. Constraint (5) guarantees that each target is visited by only one UAV. To enforce all UAVs leaving the base , the constraint (6) is used.
The constraint (7) guarantees the open status of the recharging stations if any UAV departs from it (); otherwise, it is kept closed . An open station can be connected with at least one and at most N vertices (total number of vertices in the graph).
Constraint (8) prevents subtours when recharge is required, keeping the solution connected. Let, for any UAV
, the subsets
and
. This constraint eliminates the subtours that can occur when some UAVs visit a recharging station. The subset of vertices
represents any subtours without the base
, and the constraint (8) ensures at least one departure of UAV
k from a vertex in
to any vertex in other subtours represented by
. The high number of restrictions can make the computational effort inefficient if we add all the necessary restrictions during the MILP model’s construction. In this case, a possible solution for this issue is to relax the constraint from the formulation, and whenever a feasible integer solution is obtained, a callback method checks if it is violated. This violation is identified if the solution has more than one strongly connected component for any UAV, which means the occurrence of subtours in the vehicle route. All violated constraints are then added to the model, and the optimization of the original problem continues. More details about this method are provided in [
49].
The constraint (9) defines the flow variables , setting the time that the UAV k visits a vertex j from the target i. This restriction guarantees the order of visits, preventing subtours over the targets. The constraints (10)–(13) guarantee that the tour time performed by a vehicle until reaching any vertex in D (recharging station or depot) does not exceed its flight capability, . In this case, constraint (10) defines the flow value after the vehicle leaves the recharging stations, setting the time to visit the vertex i. As the tour timing starts from a vertex in D, the flow value is defined by the time the UAV spends to traverse the edge given by .
As defines the maximum flight time of vehicle k, the flow value to visit the target j must guarantee a sufficient battery charge (flight time) to visit at least one vertex in D after visiting the target j. In this case, the constraint (11) upper bounds the , as the UAV should have at least the minimal battery charge on target j to reach its nearest vertex in D, given by (). The constraint (12) upper bounds the flow value to visit a vertex in D from any vertex, as the UAV can only spend its maximum flight time to traverse a single edge if both vertices are in D. The constraint (13) lower bounds the flow value to the minimum flight time required for the vehicle to reach the vertex j, considering the minimal time required to arrive at target i. This is defined by the flight time from the nearest vertex of i in D, given by ().
Constraint (14) enforces the coverage row task. This is achieved by ordering target visits given its numerical identification. Lastly, the constraints (15) and (16) impose the decision variables and as binary restrictions.
5. Solution Strategies
As the computational cost to solve large instances with the exact method is restrictive for practical applications, it is acceptable to use some heuristic strategies to efficiently provide satisfactory solutions. Thus, this section presents four matheuristic approaches based on MOVNS [
69], since a similar metaheuristic was demonstrated to be effective for solving vehicle routing problems [
70].
The proposed matheuristics divide the original problem into smaller subproblems that are easier to solve, and the exact method is used, depending on the strategy, to find routes on subgraphs (clusters) or improve a solution. Here, the coverage rows, UAVs, and the recharging stations are grouped in clusters, which should be distributed appropriately, considering both objectives of this work.
The MOVNS works on the clustering problem, exploring the search space by making systematic changes in the clusters. These changes are performed by the proposed neighborhood functions, generating different routes by changing the distribution of coverage rows, UAV models, and the recharging stations.
The different matheuristics were designed to check the effect over the quality and time to compute the returned solutions. In the first approach, the neighborhood functions perform simple movements like changing coverage rows and UAV models among routes or shutting down some recharging stations. After that, the exact method is called for routing every changed cluster. As this strategy is characterized by the intensive use of the exact method, other approaches were designed to investigate the effect of different neighborhood functions that also use heuristics for routing to mitigate the exact method calls. Such calls were significantly decreased in the second and third approaches and reduced to only once in the last one. In the next sections, we provide the details of the proposed approaches.
5.1. Solution Representation
A candidate solution is represented by the set of routes for a fleet of k UAVs, where is a sequence of vertices and . The set of nondominated solutions is represented by . All information necessary to compute the route is encoded in a data structure we denote as a cluster. The cluster i is composed of the subset of coverage rows , the UAV model identifier , and , the set of recharging stations available in the cluster.
The vertices where the recharging stations can be installed are represented by , and the UAVs base station (depot) is identified by . All opened recharging stations for the solution is represented by , and the set of required edges called coverage rows is represented by .
5.2. Multiobjective Variable Neighborhood Search (MOVNS)
The MOVNS is a metaheuristic that returns the set of nondominated solutions exploring the neighborhood changes systematically. In this case, the variable neighborhood descent (VND) is performed as a local search with perturbation to escape from local minimum [
71]. The general steps of the proposed metaheuristics are described in Algorithm 1.
Algorithm 1: Multiobjective variable neighborhood search (MOVNS). |
|
The MOVNS receives the maximum number of iterations () as input and returns the nondominated solutions on the front set. After the initialization (line 1), the VNS is performed for any nondominated solution on the front set for which the neighborhood was not investigated, such that (lines 2–16). In each iteration, the solution is perturbed, and the VND is performed. The perturbation (line 6) randomly operates in both processes: the openings of recharging stations and the coverage rows shift among the routes. After the current solution is perturbed, the VND is performed to find other nondominated solutions (line 7). All solutions found by VND are evaluated, and the front is updated considering the Pareto dominance relation (line 8). For any feasible solution found by the VND, the domination relationship evaluates both objectives: , the cost of the longest flight route; and , the number of recharging station used in the route. In this case, it is considered that dominates another solution if , such that and . If any nondominated solution is inserted on the front, then the inner loop is broken (line 10) and the VNS is restarted considering another random solution in the front that has not yet been investigated. More details are provided below.
5.2.1. Initialization
More generally, the initial solution is built by the clustering process, splitting the original problem into clusters and then applying the exact method to find routes in each one of such clusters. In
Figure 2, the scheme to generate the initial solution is presented. First, the clustering procedures are applied to assign the UAVs, the coverage rows, and the recharging stations to the clusters, and then a two-stage exact method is applied in the routing phase.
A. Clustering
The first step of the initialization is clustering, which assigns the coverage rows to the UAVs considering their performance. The row set of all coverage rows is split into subsets given the UAV flight range, the distances between rows, and their lengths. After defining the coverage row subset to every vehicle, the recharging stations they can visit are identified and assigned to the recharging station subsets. These subsets and the vehicle identifier compose a cluster, grouping all data required to build the UAV route.
To illustrate the initialization procedures as they are presented,
Figure 3 is used to exemplify the initial solution generation. Let the length of rows be
km,
km,
km, and the distance between the rows calculated by the area decomposition method [
1] is 0.5 km. Consider that two heterogeneous UAVs are available to perform this coverage task. The vehicle in cluster
has
, which means that it requires the same amount of its flight time capability,
, to completely charge the battery. The other vehicle in
has lower performance, with a ratio
, which means it requires twice its flight time to charge its battery at a recharging station.
The coverage rows assignment procedure is described in Algorithm 2 using the instance problem shown in
Figure 3 as an example of input. Initially, the total coverage length, calculated as the sum of all row lengths, is divided among the vehicles considering their performance (lines 1–7). A portion of the total coverage length is defined for each UAV,
, limiting the assignment of rows with regards to their lengths. The variable
is not bounded by the vehicle’s real flight capacity,
: this variable is only an estimate used to balance the coverage row distribution, considering the row length and the relative vehicle performance. The
of each UAV is based on the recharging-flight time ratio
, assigning more coverage area to the vehicle with the lowest q-value (i.e., its coverage area must be greater than that of other vehicles with a higher q-value). For this, the vehicle’s performance is evaluated based on the q-value of the best model (line 3). Then, the amount of coverage for each UAV is estimated by splitting the total coverage length according to the ratio between the vehicle performance and the overall performance
(line 7). In the example, the sum of all row lengths in
(total_length) is 70 km,
, resulting in
km and
km.
After, the rows are sorted from the longest to the shortest (line 8), resulting in the sequence . The estimated coverage length assigned to the vehicle is used to sort the clusters in descending order (line 9). In the example, this step keeps the order as . Next, each UAV row set is assigned a row considering the row length order and the vehicle performance (line 11). In the example, the first rows assigned are and . After, is updated (line 12), making km and km. Then, is removed from the set (line 13), finishing these iterations with .
Next, each cluster receives the nearest rows from the one previously assigned, while the sum of their lengths does not exceed the current
(lines 15–26). The proximity between coverage rows is measured by the distance from row
l to every
. Since the rows can have different lengths, the proximity is calculated as the sum of the distances between their targets (line 17). Given two rows (
l,
), this distance function returns the least sum of both edges lengths connecting (
l–
) by their vertices. For example, the proximity of the (E,I) rows is the sum of the lengths of edge (9, 17) and the edge (10, 18). After calculating the proximity of rows represented by
, this measure is used to sort the coverage rows (line 18). This sorting phase, in the example, as the first row assigned to the cluster
is
E, returns the sequence
. Afterward, the coverage row
is assigned to the cluster
, following the distance order in
, while the row length does not exceed the UAV current
(lines 19–25). At the end of these steps, the distribution of the rows in the instance is
and
, with the row
A in
remaining. This row was not distributed as its length, 5 km, exceeds the length control variable of both vehicles
and
km.
Algorithm 2: Coverage rows assignment. |
|
The remaining rows are incrementally assigned to the clusters with the highest r while the set is not empty (lines 27–32). In the example, as has the highest r-value, the coverage row (A) is assigned to . Thus, the assignment procedure returns the clusters with and .
The last procedure of the clustering phase is to assign a recharging station to every target’s location. Given the set of clusters
, the recharging station procedure must be able to open a set of stations denoted by
in all targets of
. In this case, we add a new vertex in the graph in the same location as the target vertices. After, these vertices are assigned to the recharging station set of each UAV. This procedure adds an extra vertex to each target in
Figure 3, resulting in the sets
and
.
B. Routing
The route is calculated by a two-stage approach aiming to speed up the optimization process with a start solution. In the first stage, each row set in the cluster is split into smaller row subsets with a defined maximum number of rows. Next, each model subset is solved by the exact method at Stage I. The subroutes are then linked to create a start route used as a warm-start in exact method of Stage II. This start solution may not be optimal, but it can offer a suitable starting point for the second stage, reducing the computation time.
Given the row set of each cluster
, determined by Algorithm 2, and the maximum number of coverage rows into the subset
(a user-defined parameter), the first step of the splitting procedure is defining the number of row subsets
for each
to balance its row number. Let
for the example shown in
Figure 4. Each UAV was assigned six coverage rows
, which exceeds
. In this case, the splitting method divides the row set
into
and
, both with the same number of coverage rows (
), and
was split into
and
with
. This coverage row distribution must define the number of subsets
needed to keep as many coverage rows as possible and with a balanced number of rows among them (
). This procedure, for the example, avoids non balanced subclusters like
and
or adding a nonrequired subcluster resulting in
,
and
.
The number of the row subsets (
) and their quantity of rows (
) are set up in the initialization of Algorithm 3 (line 1). Next, the coverage row set
is divided into
subsets, and each subset
is assigned at most
coverage rows, considering the vertex positions and the proximity among them (lines 2–17). The rows in
are sorted from the leftmost row to the rightmost (line 5). In the example shown in
Figure 4b, the sorting for splitting
returns the sequence
. Afterward, the first row of this sequence is assigned to the current subset
(line 7). This step for
results in
.
Algorithm 3: Splitting into subclusters. |
|
The distances from the row
l to the others on set
are calculated (line 9) using the same distance function described in Algorithm 2. The rows in
are sorted by their proximity measure
in ascending order (line 10). In the example, the sort method returns the sequence
. Even with the coverage row
F being the longest row, it is considered nearer to
A than
I,
(i.e.,
). The nearest rows are assigned to the subset
and removed from the set
(lines 11–15). After running this internal
while loop to the example of the coverage rows, the subset assignment results in
. Then, the process continues to the next coverage row set,
. In the end,
is split into
and
, as shown in
Figure 4a; the rows in
are divided into
and
subsets, as shown in
Figure 4b.
After defining all subsets, the routing is solved through an MILP model. The mathematical formulations used in both Stage I and Stage II are quite similar to the one presented in
Section 4 but with small modifications to solve a mono-objective problem for one vehicle. In this case, the exact method is used only to minimize the route time.
The cluster subroutes computed in Stage I are linked by Algorithm 4, building an approximated route for each UAV. These routes are used as a starter solution to build the UAV optimal route in Stage II. Initially, the cluster
i with the leftmost input vertex among its subroutes is selected (line 3). In the example shown in
Figure 5a, this step checks the leftmost coverage row between
B and
E, which are the first coverage rows visited by the UAVs in their respective subroutes
and
. The route
is initialized with the previously selected subroute
c (line 4). In the example, these steps assign to the current empty route
the subroute
, which is represented by the vertices sequence
.
Next, the other subroutes in the cluster are selected and integrated into the route being built, following its proximity (lines 5–13). The subroute
selection is performed by line 6, considering the distance between the output vertex on the last covered row in route
and the first vertex visited by the vehicle on the remaining subroutes. This step for the
Figure 5b example checks the distance from vertex 8, the
output vertex, to vertex 9, which is the input vertex in the
subroute. In this case, the battery charge of the UAV to depart from the output vertex in
must be sufficient to reach the input vertex of the sub-route
to link them directly (i.e., red rows in
Figure 5) or by a path passing through recharging stations, if necessary. The function LinkSubRouteOnRoute evaluates the vehicle capacity and returns the appropriate links to connect the subroute
in the route
. If this connection is infeasible, the built route is deleted, and the link process continues to the next cluster (lines 9–12). For the clusters with empty routes, the exact method in Stage II builds the MILP model without an initial starting point.
Algorithm 4: Linking subroutes to build a start solution. |
|
5.2.2. Variable Neighborhood Descent (VND)
In the proposed MOVNS-based matheuristic, the VND is the method that iteratively alternates the functions developed to modify the current solution. These functions are denoted as neighborhood functions, and the solution generated by a neighborhood is called a neighbor. The neighborhood function is used to map the current solution to its neighbor, which is another feasible solution. If the neighbor satisfies the update rules, then it is accepted as a new incumbent solution [
72].
In this work, we implemented four neighborhood functions, as shown in
Figure 6. The Shift function moves a coverage row
to other row set
, as shown in
Figure 6a; the coverage row 6 from
is moved to
. The Swap function exchanges rows among routes, reallocating a row
to
and a row
to
. In
Figure 6b, rows 2 and 4 change clusters. The row 2 from
is transferred to
, and row 4 from
is transferred to
. UAV Swap was designed to interchange the UAV models between two routes, transferring a vehicle of model
from route
to route
, while the current UAV of model
assigned to
is transferred to route
. In
Figure 6c, the UAV of model 3 from route
is transferred to the route
, and the UAV of the model 1 in
is transferred to
. The Recharging Station Shutdown removes a recharging station from all routes that use this station. In
Figure 6d, recharging station 3 is removed from routes
and
.
The general structure of the VND is shown in Algorithm 5. Initially, the set of routes in the input solution
is assigned as the current best solution
(line 1). After, the set of neighborhood functions
is defined, where
,
,
, and
are the Shift, Swap, UAV Swap, and Recharging Station Shutdown functions, respectively (line 2).
Algorithm 5: Structure of the variable neighborhood descent (VND) search. |
|
At any given iteration, a neighborhood function is applied to search for a better solution. If the function obtains any improvement, it returns the better solution and the flag improved is set to true. Next, the current best solution is updated (line 7), the index i that controls the sequence of the neighborhood function is reset (line 8), and the VND iteration is broken (line 9) and continues with the next VND iteration applying the Shift function again. Otherwise, if the function obtains no improvement (improved = false), the index i is incremented (line 11), and in the next VND iteration, the next neighborhood function is applied. The iteration of VND stops when all neighborhood functions obtain no improvement.
5.2.3. Perturbation
The perturbation designed for this work implements two functions: one explores the coverage row changes between routes, and the other function works to open recharging stations. These functions are randomly applied, with it being possible to apply one or both functions in any order for the last case.
The perturbation performed in the coverage row sets is based on the Shift neighborhood function represented in
Figure 6a. In this case, any row from a random route is chosen and transferred to another route. The other perturbation function acts on the recharging-station-locating process by opening some stations. Unlike
Figure 6d, this operation randomly chooses some shuttered stations to be opened. Next, the feasibility of the opening operation is checked. A recharging station is only opened if any route time is improved.
5.3. Matheuristics Approaches Based on MOVNS
The matheuristics proposed in this paper combine the MOVNS and mathematical programming methods to find high-quality solutions. In addition to using the MILP formulation to obtain the initial solution, the same two-stage method presented in the initial routing phase interoperates with the VND in different ways in the first three strategies presented in this subsection.
The designed modifications in the VND approach impact the matheuristic performance regarding the quality of the generated fronts and the computation time. Each matheuristic is classified according to the application of the exact method in the associated VND. First, the MOVNS with the exact method for routing (EMR) is presented, which uses the exact method to route all cluster changes. After, other approaches are proposed: the method that applies the exact method selectively (exact method applied selectively (EMAS)), the one in which the exact method acts as a neighborhood function (exact method as neighborhood function (EMNF)), and the method that does not use the MILP formulation in the VND (VND without exact method (WEM)).
Table 1 summarizes the main differences among these approaches.
5.3.1. Exact Method for Routing (EMR)
The EMR is a matheuristic characterized by solving the MILP model to route every change in a cluster performed by the neighborhood functions. Every new cluster designed by the row exchange, UAV model change, or shutting down of some recharging stations requires the exact method for routing. Next, we provide more details on the applied neighborhood functions.
The change in the coverage row sets made by the EMR Shift function is described by Algorithm 6. Initially, the longest route (highest time cost)
is taken from the solution
(line 1), and the set
that is modified by the row shift is initialized (line 2). Next, as long as there is no improvement in the solution and for any other route
not yet augmented by the
rows, a new set without
l from
is assigned to the route
(line 5). The removed row is inserted in the set
of
(line 6).These new clusters are routed by the MILP function (lines 7–8); the new solution
and the value
are returned if an improvement is found (lines 9–11).
Algorithm 6: Shift neighborhood function performed on exact method for routing (EMR). |
|
The Shift function not only performs the inter-route changes but also returns the first improved solution obtained. Since this function tries to minimize the longest route, the comparison between and presented in (line 9) evaluates the flight time cost. The same evaluation is performed in the Swap and UAV Swap function. The Recharging Station Shutdown evaluates the number of recharging stations in the solution.
As this work deals with the multiobjective problem, the neighborhood functions designed to minimize the longest route cost may also interfere with the other objective modifying the number of recharging stations. In this case, these neighborhood functions only change the incumbent solution if the route cost is improved and inserted into the structure of all the nondominated solutions. The update function on MOVNS evaluates the nondominated solutions found by the neighborhood functions on VND (see line 8 in Algorithm 1).
The Swap function is structurally similar to the Shift. However, it acts to exchange the coverage rows between and . For this reason, the route evaluation (line 9) in Algorithm 6 must be modified in Swap to verify if one of the routes improves the solution < .
The UAV Swap procedure exchanges the vehicles between two routes with different models. As summarized in Algorithm 7, the routes with different UAVs (line 3) have their vehicles exchanged (lines 4–5). The MILP solver is then applied to reroute the clusters with the new vehicles (lines 6–7). This new solution and the value are returned if the longest route’s cost is lower than the cost of the current longest one (lines 8–10). Unlike the other neighborhood functions presented here (Shift and Swap), changing the UAV models is not restricted to improving the maximum cost route because it is expected that this route has already been assigned to the best-performing vehicle.
To shut down a recharging station on EMR, the function described in Algorithm 8 is applied. This function has as the input the current solution
, and the set of all recharging stations opened
in the solution (line) is defined in its initialization. At any given iteration (lines 4–14), the feasibility of the shutting down operation of a recharging station is checked. For this, each route
with the station
is rerouted without the station (lines 6–9). The MILP function (line 8) assigns infinity to the unfeasible cases where the vehicle does not have sufficient battery to cover its rows. If all routes in
are feasible, the set of all recharging stations
is updated (line 11), and the new solution
and the
status are returned (line 12). If no recharging station was shuttered, the input solution
is returned with the value
to the
variable in the VND (line 15).
Algorithm 7: Unmanned air vehicles (UAV) Swap performed on EMR. |
|
Algorithm 8: Recharging Station Shutdown performed on EMR. |
|
5.3.2. Other Approaches
As EMR calls the exact method to route each change performed by its neighborhood functions on the clusters, we propose three other approaches that aim to reduce these calls. Unlike the EMR, which first builds the clusters using heuristics and then applies the exact method to the route (cluster first-route, second approach), these new approaches are classified as improvement heuristics, as stated in [
73]. In this case, a heuristic was implemented to route the new clusters, and the exact method was executed only at different steps of the algorithm, not on every new route generated by the VND.
The first approach proposed is the exact method applied selectively (EMAS), which uses the exact method to improve only the solution returned by the routing heuristic. In this case, its neighborhood functions build new routes, evaluate them, check their feasibility, and then select one to be improved by the exact method.
The Shift and Swap functions use the routing heuristic to compute the routes and select the best route among the longest routes to be improved by the exact method. The Swap function is described in Algorithm 9. After exchanging rows between routes (lines 8–11), a heuristic is applied to recalculate such routes (lines 12–13). If the row swap produces a better solution than the incumbent one, then the exact method is applied to improve only these two routes, and the solution
with the value
, indicating that an improvement was found, is returned (lines 14–17). Otherwise, the best heuristic solution is assigned to the
, lines 19–24. Not finding a better solution than the current one, the MILP is applied to the best routing heuristic results (lines 28–29). This solution
and the value
are returned if it is better than the incumbent (lines 30–32). The EMAS Shift function algorithm is similar to this Swap function, different only in the row shift displacement (removing lines 10–11 from Algorithm 9).
Algorithm 9: Swap performed in EMAS. |
|
The ComputeRouteHeuristic (lines 12–13) is applied to compute the changed route in the EMAS neighborhood functions (Shift and Swap) and is used in the other two approaches, EMNF and WEM. This heuristic builds the new route based on the current one, rearranging each coverage row using removal and insertion procedures.
The removal operation deletes the vertices and all links associated with a selected coverage row, adding a new path linking its predecessor and successor vertices. This new path must be a feasible route, ensuring that the UAV has enough charge to reach the next recharging station or depot from the successor vertex (e.g., in
Figure 7b, the removal of the coverage row (11, 12) deletes its vertices and the edges (14, 12), (12, 11), and (11, 5) from the route). A path search algorithm is used to link the vertices (14–5) considering the vehicle constraint, ensuring that the UAV can reach the next recharging station or depot after the successor vertex (vertex 5).
The insertion operation adds the coverage row vertices into the route and evaluates different connections by interchanging the order in which the depot or the other coverage rows are linked to this new row. The insertion procedure generates a new route for each feasible linkage in its initial step, as shown in
Figure 7c–f. Here, the original coverage row directions are preserved, only adjusting the inserted row direction to fit the route, as shown in
Figure 7b. To build the route in
Figure 7c, the edge to connect the first coverage row in
Figure 7b (depot, 13) is removed and the row (3, 4) is inserted. The new coverage row direction is defined by the nearest vertex of the depot (vertex 3), and a feasible path connecting the vertex (4, 13) is evaluated and inserted to close the route (in this case, a direct edge). This process continues changing the connection order, as shown in
Figure 7d–f (see
Figure 7d, where the inserted row (4, 3) is the second row visited in the route,
Figure 7e is the third, and so on). After evaluating all row interchanges, the lowest-cost route is selected.
The row interchange considers the remaining UAV flight time to connect the inserted row in the route. If the direct link violates this constraint, the path search algorithm is applied to find the input and output links of this new coverage row (as previously stated, its direction is set by the nearest vertex to connect to the route). A complete subgraph is built by connecting its initial and final vertices to all available recharging stations in both cases. A search algorithm is then applied to find a path that connects both vertices considering the UAV flight time capacity, and recharges closer to the final vertex, aiming to reach the next route segment with the maximum amount of charge. Once found, its feasibility is evaluated, checking if the UAV can reach the next recharging station or the depot after the inserted path.
The first step of the insertion procedure, intended to preserve the route’s original structure by not changing its coverage row directions, can be a suitable strategy to generate routes with approximate costs of the original route, especially when exchanging rows similar in lengths and vertex alignments. However, as the routes can have quite different rows, a second step to the insertion procedure is proposed to evaluate the route cost by changing its row directions, as shown in
Figure 8. First, in
Figure 8a, as explained before, the insertion of the new row (10,9) preserves the other row directions. Here, these rows are organized into two route segments (A and B). Then, in this second step of the insertion procedure, the same linkage process is performed, combining the inversion of these segments, as illustrated in
Figure 8b–d. If the new row is inserted at the beginning or end of the route, only one segment is built (i.e., segment A), resulting in two routes evaluated with (A and iA) row directions.
For all routes generated by the insertion procedure, only the best one is returned. If no route is generated (all routes are infeasible), the heuristic continues evaluating the next coverage row change performed by the current neighborhood function (i.e., Shift or Swap).
The UAV Swap function applied to EMAS is described in Algorithm 10. In this case, after the UAV model change (lines 4–5), the route edge costs (flight time) are updated considering the vehicle performance, and the route feasibility is verified by checking the capacity of the vehicle to cover its new route (lines 6–7). The improved solution, if found, is returned together with the value
, flagging it as a better solution (lines 8–10).
Algorithm 10: UAV Swap performed on EMAS, EMNF, and WEM approaches. |
|
The Recharging Station Shutdown on the EMAS neighborhood function is shown in Algorithm 11. As explained for EMR, each iteration must check the feasibility of removing a station from all routes containing them. However, in EMAS, instead of applying the exact method to reroute, a procedure checks whether it is possible to deviate the recharging to the nearest station in relation to the one under consideration for shutdown (line 8). The station is shut down if all vehicles directed to it can perform this deviation (lines 10–16). In this case, the MILP model is applied to improve the feasible solution (line 12).
Algorithm 11: Recharging Station Shutdown performed on EMAS. |
|
All these modifications designed to the EMAS neighborhood functions are also used on EMNF and WEM. The difference is that the EMAS uses the exact method on most neighborhood functions to improve the selected routes. In the EMNF, the exact method is removed from the neighborhood functions and added to the VND as a neighborhood function, acting as an intraroute operator performed on all incumbent solution routes. Conversely, the WEM does not apply the exact method in any part of its neighborhood structure. It is a matheuristic classified as a one-shot approach that applies the exact method only in the initialization [
73].
7. Conclusions
This paper proposed strategies for the multiobjective location-routing problem in complete area coverage missions using heterogeneous UAV fleets. Here, the decision on the recharging station locations and the number of stations to be opened are jointly considered with UAVs routing criteria. As the cost to compute the Pareto-optimal front to this problem is usually prohibitive, four matheuristics based on MOVNS were presented, evaluated, and compared using four performance metrics (execution time, coverage, cardinality, and hypervolume).
The proposed EMR, a cluster first-route second matheuristic, returned most of the best results considering the fronts quality metrics. However, it performed the worst in execution time. The other approaches, EMAS, EMNF, and WEM, significantly reduced the intensity of calls of the exact method using heuristics in the routing of clusters. Our experimental comparison showed that the EMNF presented relatively high-quality performance regarding the front’s quality metrics compared to EMAS and WEM. The statistical analysis results indicated no significant degradation compared to EMR, standing out for applying the exact method only as a neighborhood function in the VND, where it acts like an intraroute operator.
Conversely, as expected, WEM, a one-shot approach where the MILP is only solved in the beginning, produced superior performance in terms of the execution time. Despite the results showing a significant degradation in the quality of its fronts compared to EMR and EMNF, no evidence of significant difference from EMAS in coverage or cardinality was observed. A modest loss in hypervolume was verified. Thus, WEM can be indicated for applications that tolerate the observed degradation in the quality of its solution in order to speed up computation.
In the future, we intend to consider the recharging station’s capability to attend a limited number of UAVs. In this case, the recharging stations could be modeled as a queuing system, as proposed in [
40]. We also plan to adopt some strategies to avoid collisions in the presence of intersecting routes. For this, it would be necessary to implement some speed planner, as presented in [
20,
22].