Abstract

Vehicular ad hoc network (VANET) routing protocols have been attracting a considerable attention of both research and industrial communities, due to their significant role in intelligent transportation system applications. The present paper adopts an optimized integrated multicast, multicriteria, adaptive route lifetime as a routing protocol for VANETs. Whereby only an optimal subset of neighbor vehicles is chosen to relay route request (RREQ) messages based on distance, direction, speed, and future direction information in a combined sender-receiver manner. Among those selected optimal paths for route discovery, the best route with lowest cost will be chosen for forwarding data packets for a specified duration assigned depending on the obtained cost and number of intermediate vehicles of that route. Fuzzy controllers were employed to assess routes’ costs and their lifetimes. Furthermore, artificial bee colony (ABC) algorithm was used to concurrently optimize all used fuzzy systems and obtain the optimal highest rank of links’ cost values within which the neighbors could be selected as relay nodes in route discovery process. Simulation results prove that the proposed routing scheme significantly improves the network performance in both urban and highway scenarios, under different situations of vehicle density.

1. Introduction

The vehicular networks [1, 2] are a promising technology that enables smart vehicles to exchange wireless messages among themselves, in order to achieve more convenient and safer transportation system. These messages may include information about traffic flow condition, adaptive trip assistance, warnings and alarms, and parking or gas station availability, as well as infotainment applications.

These numerous VANET applications substantially rely on VANET routing protocols [3, 4], which are originated from preceding wireless mobile ad hoc network (MANET) algorithms but have been extensively reformed to cope with VANET characteristics and requirements.

The unique VANET characteristics of highly mobile vehicles, limited coverage area, intermittently wireless connection, and traffic density, in addition to restriction of movement within road patterns and traffic rules, make providing more reliable and efficient routing protocol for these challenging networks is still an open research topic; some of these recently related studies attend.

Li et al. [5] propose an adaptive QoS routing by using terminal intersections and an ant colony algorithm to search the optimal route based on connectivity probability, packet delivery ratio, and delay.

Al-Kharasani et al. [6] propose a particle swarm optimization tuned optimized link state routing protocol considering multiple objectives of throughput, packet delivery ratio, delay, and normalized routing overhead to evaluate the fitness function.

Latif et al. [7] offer an algorithm to select the next forwarder vehicle by using multicriteria based mathematical formulation considering direction, position, and distance of vehicles with respect to source vehicle.

Zhang et al. [8] suggest multicast routing protocol based on microartificial bee colony, in which energy consumption and transmission delay are considered to measure the quality.

Miao et al. [9] present fuzzy logic based routing scheme that forward broadcasted packets depending on fuzzifying two factors regarding distance and time delay.

Nabil et al. [10] propose a scheme to select the most stable route and predict its lifetime by calculating the link stability time of vehicle’s neighbors according to mathematical equations taken into account four cases of same or opposite direction of movement with same velocity or not.

However, the essential uniqueness of the current study represents by addressing the main three critical issues of routing in VANET in associative form; the first problem is the blind broadcasting of route request (RREQ) messages in route discovery phase, which result in high control messages overhead and packet collision problem especially in high dense network, or even in a sparse network with high packet transmission rate.

While the second issue regards high route breakage as a result of the omission of some affecting criteria in route selection process, resulting in high number of error messages and lost data packets.

Whereas the third issue treats the dilemma of using fixed route lifetime, regardless of the situation of the selected route, which might lead to disrupt some valid routes or consider some others as valid while they were broken.

Even though there are a number of works concerning the above first two problems [79, 1113], they mostly consider only two or three factors in their studies. And some are completely based on sender to specify the relay nodes [11, 12], which typically require exchanging periodic hello messages, while the others are completely based on receiver to determine whether to rebroadcast the packet or not [9, 13], and as a consequence some redundant broadcasts are still not eliminated.

On the other hand, few works attend the third mentioned dilemma of routing in VANET environment [10, 14]; they mainly depend on mathematical models that take into account only two factors.

Particularly, this proposed protocol incorporates the principles of fuzzy systems to improve the decision-making processes of ad hoc on demand distance vector (AODV) routing protocol for vehicular network environment by evaluating the link cost of every neighbor in a combined sender-receiver fashion, taking the information of distance and direction into account at sender, in addition to considering speed and future direction information at receiver. This is in order to select only a subset of optimal relay neighbors for route discovery process, as well as select the best route for carrying data. Additionally, it could predict the lifetime of each selected route considering its obtained cost, besides number of its involved hops. Moreover, ABC optimized algorithm is used to generate the proposed fuzzy memberships’ vertices and rules, aside from thresholds of selected relay neighbors’ link cost.

More specifically, the main contribution keys of the proposed scheme in the present work can be summarized as follows:(i)Three-step optimization using fuzzy systems in route discovery phase, regarding choosing relay nodes and appropriate route considering the most effective stability factors, in addition to specifying each route lifetime.(ii)Combined sender-receiver-based multicast routing protocol without the overhead of using periodic Hello packets, as well as mitigating the shortcoming of completely receiver-based forwarding decider.(iii)A novel stability factor regarding next direction of vehicles considered in route discovery phase, without transferring this datum to keep security of vehicles’ future movements.(iv)Multiple factors of distance, direction, speed, future direction, and number of hops considered in the proposed scheme.(v)Automatic-extracted fuzzy controllers using artificial bee colony optimization.(vi)Four objectives of optimization process considered: maximizing packet delivery ratio and throughput, and minimizing delay and number of control packets.

The rest of the paper is organized as follows: Section 2 describes the optimization algorithm used in the present study. Section 3 gives details about the proposed routing scheme. Simulation parameters and comparative results are presented in Section 4. Finally, conclusions and suggested future works are conferred in Section 5.

2. Employed Optimization Method

2.1. Artificial Bee Colony (ABC) Optimization

ABC optimization [1517] is a swarm intelligent based scheme that simulates the foraging behaviour of honey bee colonies.

It is simple and flexible algorithm, requiring few parameters to be tuned; moreover, it could be hybridized with other intelligent algorithms easily.

Furthermore, many studies [1820] have proven the efficiency and accuracy of using ABC optimization and hybridization over many other popular optimization methods.

The general structure of ABC optimization algorithm consists of three groups of artificial bees: employed, onlooker, and scout bees.

Each employed bee is associated with a food source (possible solution) and shares the position information and nectar amount (quality or fitness cost) of these sources with onlooker bees for further processing. The onlooker bees decide the best profitable source food according to a probability selection process. When a food source does not improve up to a predefined number of trials, the food source is rejected by the bees and the corresponding employed bee becomes a scout bee.

More details about ABC algorithm are given below:

First, let denote the ith solution in the population, where ; however, SN reflects the size of solutions in the population and is taken as half of the bee colony (equals number of employed bees or onlooker bees), while D represents the number of optimization parameters.

2.1.1. ABC Initialization Phase

The ABC generates a randomly distributed initial population of SN solutions within the range of boundaries according to the following equation:

where and are the lower and upper bounds of .

After solutions generation, the fitness function fiti for all initial solutions in the population is evaluated.

2.1.2. ABC Employed Bee Phase

In this phase, each solution is assigned to an employee bee, which produces a modification on the position of the solution as follows:

where is the mutant solution of the original solution, is a random number in the range , and k is a neighbor of i, .

After that, a greedy selection is performed by the employed bee between the original solution and its mutant according to their fitness evaluation values.

2.1.3. Probability Calculation Phase

For each solution, a probability value which is proportional to its quality is calculated as

2.1.4. ABC Onlooker Bee Phase

The onlooker bee evaluates the information taken from the employed bees and selects the solution with the highest probability value. Next, the same as employed phase mechanism of position adjustment and greedy selection are applied by the onlooker bees to memorize the better solutions.

2.1.5. ABC Scout Bee Phase

If a solution does not improve up to a predefined number of trials (exceeds a control parameter called Limit), the solution is abandoned, and its corresponding employed bee becomes a scout bee which replaces it with a new randomly solution using (1).

The execution of the above four phases will be repeated until reaching the maximum number of cycles for search, and the best obtained solution is given as the optimized output.

2.2. ABC Optimized Fuzzy System

Fuzzy logic [21, 22] has been widely employed for supporting many intelligent based real world systems especially under imprecise and uncertain information.

Typically, the knowledge base unit which consists of data base and rule base represents the heart of any fuzzy system.

However, the manual generation of the fuzzy knowledge base depending on system knowledge and trial and error process is a very tedious and time consuming task. Moreover, it does not guarantee the construction of an optimal system.

As a solution, ABC optimization is proposed to automatically extract the optimal rule set, with “do not care” condition exploration for more compact rules acquiring and tuning the membership functions for all the proposed fuzzy controllers.

Since all the proposed fuzzy controllers are depended, a collection of all membership function vertices for fuzzy inputs and outputs, in addition to linguistics for consequents of the rules, is encoded into the food source as shown in Figure 1 to guarantee the simultaneous upgrowth of the whole model parameters within the given search space.

In order to reduce number of optimization parameters to speed up the optimization process, the membership functions which were used for the proposed fuzzy controllers were set to triangular type, since it has proven more efficiency than other types in such network model [2326].

Three linguistic terms were associated with each fuzzy input (Low, Medium, and High) and five for the output (Very Low, Low, Medium, High, and Very High) to get more accuracy.

As will be presented in next section, most fuzzy inputs were put in a ratio form, so that the first and last membership points were fixed and did not need to optimize. This gives a total of five membership optimized points which are required to represent each fuzzy input as shown in Figure 2.

Similar to the above mechanism, a total of eleven membership optimized points are required to represent the first two fuzzy controllers output, and an extra point are added in the last fuzzy controller output to get the optimal maximum route lifetime point.

In other respect, to generate the optimal rule base set, the fuzzy output linguistic terms are coded into real numbers from 1 to 5, and ‘0’ value is used to represent the rule absence. Hence, each rule antecedent may take an integer value ranging from 0 to 5, such that ‘1’ represents ‘Very Low’, ‘2’ represents ‘Low’, and so on.

Furthermore, the objective of the optimization process in this work is to explore the best fuzzy models besides link rank thresholds that would be incorporated in the proposed routing algorithm to meet the best network performance outcomes through multiple objectives of maximizing packet delivery ratio (PDR) and throughput (Th) and minimizing delay (D) and number of control packets (C).

This requires integrating between the network simulation and the optimization process to evaluate the network performance response for a specific time interval (t) in respect to each available solution.

A weighted sum is used to aggregate these multiple objectives into a single objective function as

where each individual objective factor term is qualified as a ratio between the obtained performance metric in response to the applied solution () with respect to the original achieved result by means of the traditional protocol, in order to quantify the efficiency of change in each evaluation term under using the available solution model in the proposed routing protocol as

Meanwhile, in light of the facts that the four performance metrics are equally substantial and all the measured factors fall within the same range, 0.25 has been assigned to each weight value ().

3. Proposed Routing Scheme

At first assume that each vehicle is equipped with GPS navigation system facility [27, 28] to get updated information about vehicle position, road map, and traffic information, besides multiplanned destination directions. Moreover, assume an array antenna [29, 30] is utilized in each vehicle to get location and angle of movements of neighbor vehicles.

Apart from assumption issue, the proposed routing scheme Optimized Fuzzy AODV (OFAODV) is looking up to tune the most used routing protocol in literature: AODV routing protocol [31, 32] within three stages during the route discovery phase. The first two stages are carried out before sending the (RREQ) packet, while the last stage is regarding specifying the selected route lifetime in the route reply packet.

In the first modification stage (Figure 3), each vehicle evaluates every one-hop neighbor link rank (Rank I) before attempting to send the RREQ packet using fuzzy logic that combines two factors of direction of neighbor vehicle with respect to destination direction, besides distance factor, which is calculated as a ratio between next node distance to destination as a ratio to current node distance to destination as follows:

Consequently, up to only three neighbors with the fewest link rank are specified to be as relay nodes, only if their obtained links’ rank is less than a particular value of Rank1_High (Threshold I).

The second tuning stage (Figure 4) starts upon arriving the RREQ packet to the relay node, which assesses Rank II value of link cost using other fuzzy system joints, other two factors of change in next direction of that vehicle and speed variance between current and previous vehicle as follows:

The RREQ packet will be forwarded only if the obtained Rank II value of the link cost is less than a specific value of Rank2_High (Threshold II).

Moreover, the link with the fewest integrated Rank I plus Rank II cost will be selected to construct the optimal route to the destination.

Last modification stage executed before the destination sends the route reply packet, and the information of route cost and number of hops in the received RREQ packet are incorporated using fuzzy logic to predict the selected route lifetime.

Furthermore, the values of Rank1_High, Rank2_High, all fuzzy membership functions’ vertices, and fuzzy rules are optimized using ABC algorithm (as described in previous section) aiming to improve the most important network performance outcomes.

4. Simulation Model and Results

A simulated area of 3km by 3km of real maps of Basra city and i95 highway is generated using bidirectional coupling of SUMO and OMNeT++ simulators to allow direct interaction between vehicular traffic dynamics and network communication system. Along 1000 simulated seconds, a number of 100, 200, 300, 400, and 500 vehicles are simulated to move within each simulated map with TraCI mobility model, each vehicle has a transmission range of 250 m, IEEE 802.11p was used as a medium access control protocol, and UDP data traffic was generated with 512B in size for each sent packets.

On the other hand, the present proposed routing protocol (OFAODV) has been simulated and compared with other three protocols: AODV routing protocol, Fuzzy Logic Routing Based on forwarding optimization (FLRBF) [9], and Fuzzy based AODV routing (FAODV), whereby three criteria regarding number of relay vehicles, distance, and speed of movement of vehicles are considered in route selection decision using fuzzy logic.

The performance evaluation of all the simulated protocols is carried out in terms of packet delivery ratio (Figure 5), throughput (Figure 6), mean delay (Figure 7), and number of sent control packets (Figure 8).

The obtained results have clearly demonstrated the significant improvement of network performance when using the proposed method (OFAODV routing) by an average of 23.15%, 45.77%, 75.15%, and 57.65% over the traditional AODV protocol in PDR, throughput, delay, and number of sent ctrl packets, respectively as compared with 13.84%, 27.56%, 40.22%, and 22.43%, percentage of achieved improvement by means of FAODV protocol, and an upgrading average of 9.47%, 17.14%, 30.38%, and 18% under FLRBF protocol.

5. Conclusion

The present work introduces an optimal routing method that eliminates the dissemination of RREQ packets; also it could reduce routes error and contention overhead by augmenting the efficiency of the selected routes, with the ability to predict their optimal lifetime.

In order to accommodate that, three two-inputs fuzzy systems are employed based on multiple criteria of distance, direction, speed, future direction, and number of hops information.

Furthermore, artificial bee colony optimization algorithm is used to automatically extract these fuzzy systems’ memberships and rules, as well as obtaining link cost limitations within which relay nodes are selected.

Simulation results verified that the proposed routing protocol significantly improves the network performance in terms of packet delivery ratio, throughput, end to end delay, and number of control packets in both urban and freeway environments under different conditions of vehicle density.

Data Availability

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

Conflicts of Interest

The authors declare that they have no conflicts of interest.