SlideShare a Scribd company logo
1 of 6
Download to read offline
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 1 | P a g e
An Ant colony optimization algorithm to solve the broken link
problem in wireless sensor network.-A Review
Minakshi1
*, Monika Bansal2
1*
M-tech Student, Department of Computer science & Application,
2
Associate Professor, Department of Computer science & Application, Chaudhary Devi Lal University, Sirsa,
Haryana, INDIA*
ABSTRUCT:
Aco is a well –known metahuristic in which a colony of artificial ants cooperates in explain Good solution to a
combinational optimization problem. Wireless sensor consisting of nodes with limited power is deployed to
gather useful information From the field. In wireless sensor network it is critical to collect the information in an
energy efficient Manner.ant colony optimization, a swarm intelligence based optimization technique, is widely
used In network routing.
A novel routing approach using an ant colony optimization algorithm is proposed for wireless sensor Network
consisting of stable nodes illustrative example details description and cooperative performance test result the
proposed approach are included. The approach is also implementing to a small sized hardware component as a
router chip simulation result show that proposed algorithm Provides promising solution allowing node designers
to efficiency operate routing tasks.
Parameters Used: Threshold Value (Load on Node), Noise Variance, Request TimeoutBackoff Attempt, Slot
Time, Turnaround Time, MaxRetries.
I. INTRODUCTION
Wireless Sensor Networks have become a wide area for research. Wireless Sensor Networks (WSN) has
gained world-wide attention in recent years. It is a sensing technology where autonomous devices called sensor
nodes deployed in a remote area to observe phenomena, collect data and process it and then transmit
information to users via radio frequency (RF) channel[1][2].
The concept of wireless sensor networks is based on a simple equation: Sensing + CPU + Radio = Thousands of
potential applications [3].
1.1 Sensor Networks
A sensor network is a consisted of communicating sensing devices, or nodes. All nodes are not necessarily
communicating at any particular time, and nodes can only communicate with a few nearby nodes. The network
has a routing protocol to control the routing of data messages between nodes. The routing protocol also attempts
to get messages to the base station in an energy-efficient manner.
1.2 Wireless sensor node architecture
Wireless sensor node is made up four basic components: a sensing unit, a processing unit, a transceiver unit and
a power unit.
There can be application dependent additional components such as a location finding system, a power generator
and a mobilizer [4].
Figure 1. Architecture of Wireless Sensor Node
RESEARCH ARTICLE OPEN ACCESS
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 2 | P a g e
Sensing Unit: Sensing units are usually composed of two subunits: sensors and analog to digital converters
(ADCs). Sensor is a device which is used to translate physical phenomena to electrical signals.
Processing Unit: The processing unit mainly provides intelligence to the sensor node. The processing unit
consists of a microprocessor, which is responsible for control of the sensors, execution of communication
protocols and signal processing algorithms on the gathered sensor data.
Transceiver Unit: The radio enables wireless communication with neighbouring nodes and the outside world. It
consists of a short range radio which usually has single channel at low data rate and operates at unlicensed bands
of 868-870 MHz (Europe), 902-928 MHz (USA) or near 2.4 GHz (global ISM band).
Battery - The battery supplies power to the complete sensor node. It plays a vital role in determining sensor
node lifetime. The amount of power drawn from a battery should be carefully monitored.
1.3 Applications of Wireless Sensor Networks
Military applications: The various characteristics of WSNs like self-organization and fault tolerance, make
them a very reliable sensing technique for military command, communications, computing, intelligence,
surveillance, and targeting systems.[4,5,6]
Environmental applications: Wireless Sensor Networks have been deployed for environmental monitoring,
which involves tracking the movements of small animals and monitoring environmental conditions that affect
crops and livestock.
Healthcare applications: WSN based technologies such as Ambient Assisted Living and Body Sensor
Networks provide dozens of solutions to healthcare's biggest challenges such as an aging population and rising
healthcare costs [7]
Traffic control: Traffic conditions can be easily monitored and controlled at peak times by WSNs. Temporary
situations such as roadwork and accidents can be monitored in situ. Further, the integration of monitoring and
management operations, such as signpost control, is facilitated by a common WSN infrastructure.
1.4 Problem Definition
Energy efficiency and reliability have become one of the principle design features of successful sensor networks.
In wireless networks balancing the use of power and maintaining the reliable communication is a really very
challenging job. Research has focused on ways to minimize energy usage in routing to maximize the useful
lifetime of sensor networks and also on reliability in case of a failure like presence of an attacked node.
1.5 Existing Techniques for Energy Efficiency in WSNs
The following are the already proposed algorithm and techniques for energy optimization of the Wireless Sensor
Networks.
 Path selection Algorithm
 Clustering Algorithm
 Sleep Mode Markov Model
 Cross Layer Protocol for Energy Efficiency
 Error control schemes analysis
II. RESEARCH METHODOLOGY
2.1 Base Algorithms used
Our proposed algorithm is based on two basic approaches:
1. Right Path Selection algorithm
2. Ant Colony Optimization algorithm
2.2 Proposed Algorithm
 1. Source: Route Request
 2. Destination: Route Reply
 3. Source: for k=[0 to n-1]
 4.Source: Find ”Right Path” pi for
(p1,p2,...,pn))
 5.if pi=BROKEN_LINK and No_of_Retry>Threshold then
 Call AntOtimiation(); /* to find the optimized path one time*/
 6.If Ea,pi >Ec,pi then Calculate Spi (selectivity of path pi in round kth) Else goto step 4
 7. If Spi=Max(Sp1,..,Spn) then
 If k<n-1 then
k=k+1
 goto step 3
 Else goto step 7
Else goto step 3
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 3 | P a g e
 8. stop
 }
 Function AntOptimization()
 {
 1. {Initialization}
 Initialize pheromone concentration Tij and heuristic function ηij.
 2. {Construction}
 For each node k (currently in state ι) do
 repeat
 choose in probability the state to move into.
 append the chosen move to the k-th node's set tabu k .
 until node k has completed its solution.
 end for
 3. {Trail update}
 For each ant move (ιψ ) do
 Compute ∆τ ιψ
 update the trail matrix.
 end for
 4. {Terminating condition}
 If not(end test) go to step 2
 }
2.3 Simulation Environment:
Here we used MATLAB 7.8.0 as simulation platform. MATLAB is high-performance language for technical
computing, visualization, and programming in an easy-to-use environment where solutions are expressed in
mathematical notation.
III. RESULTS
The objective of our simulation is to demonstrate the increased network lifetime by choosing the right path.
The proposed algorithm was validated using the simulator in MATLAB. The network topology is created by
randomly placing the sensor nodes in the area of 100 by 100 meters. The simulation results show similar
performance in terms of the increased network lifetime.
Figure 2: Path selected by proposed algorithm
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 4 | P a g e
3.1 Results of Proposed Algorithm
Figure 3: Network Topology for Proposed Algorithm
Figure 4: Success Rate Vs Network Size
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 5 | P a g e
Figure 5: Response Time (sec.) Vs Network Size
Figure 6: Hop Count Vs Network Size
IV. CONCLUSION
In this research work, an energy-saving strategy that exploits the combination of Path Selection and Ant
Optimization techniques in Wireless Sensor Networks has been developed. By simulation, we have found out
that the energy in our protocol is dissipated less than the other energy-aware routing protocols. By default the
route is chosen on the basis of Path Selection formula i.e. we will choose right path means the lowest energy
path. In case there is problem in the selection of the path (in case of any fault node) then we apply the Ant
Minakshi Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06
www.ijera.com 6 | P a g e
Colony Algorithm the purpose of which is to continue sending data using the previous path (as from Path
Selection Algo.). Hence we achieved efficiency in terms of energy by applying path selection whereas Ant
Colony Optimization Algorithm gives the required reliability.
REFERENCES
[1] Singh, G., Das, S. Gosavi, S., Pujar, S. Ant Colony Algorithms for Steiner Trees: An Application to
Routing in Sensor Networks. In Recent developments in Biologically Inspired Computing; de Castro,
L.N., Von Zuben, F.J., Eds.; Idea Group Publishing: Hershey, USA, 2004; pp. 181-206.
[2] P. Liu, Y.F. Hu, G. Min, G. Dai, “Semantization improves the Energy efficiency of Wireless Sensor
Networks”, IEEE Communications Society subject matter experts publication WCNC, 2010.
[3] Kashif Saleem, Norsheila Fisal, M. Ariff Baharudin, Adel Ali Ahmed, Sharifah Hafizah, Sharifah
Kamila, Ant Colony inspired Self-Optimized Routing Protocol based on Cross Layer Architecture for
Wireless Sensor Networks, ISSN, Volume 9, October 2010, 1109-2742.
[4] Sanatan Mohanty “ Energy Efficient Routing Algorithms for Wireless Sensor Networks and
Performance Evaluation of Quality of Service for IEEE 802.15.4 Networks”, Master thesis, National
Institute of Technology, Rourkela, January 2010
[5] Sensor Networks: A Comparative Study” [ Communications, 2004 IEEE International Conference
on] communications.
[6] Hussein T. Mouftah , “Advances in WSN”, University of Ottawa, February, 2008.
[7] “Wireless Sensor Networks Technology, Protocols, and Applications” Kazem Sohraby, Daniel Minoli,
Taieb Znati, A John Willy & Sons, Inc Publications, 2007.

More Related Content

What's hot

Improvising Network life time of Wireless sensor networks using mobile data a...
Improvising Network life time of Wireless sensor networks using mobile data a...Improvising Network life time of Wireless sensor networks using mobile data a...
Improvising Network life time of Wireless sensor networks using mobile data a...Editor IJCATR
 
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...IJECEIAES
 
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...IJCNCJournal
 
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...inventionjournals
 
Optimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmOptimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmeSAT Journals
 
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...Solution for intra/inter-cluster event-reporting problem in cluster-based pro...
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...IJECEIAES
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...eSAT Journals
 
Performance analysis of dwdm based fiber optic communication with different m...
Performance analysis of dwdm based fiber optic communication with different m...Performance analysis of dwdm based fiber optic communication with different m...
Performance analysis of dwdm based fiber optic communication with different m...eSAT Journals
 
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...Simulation Time and Energy Test for Topology Construction Protocol in Wireles...
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...ijeei-iaes
 
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...IJCNCJournal
 
Localization for wireless sensor
Localization for wireless sensorLocalization for wireless sensor
Localization for wireless sensorIJCNCJournal
 
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSNMulti-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSNIRJET Journal
 
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...IRJET Journal
 
The Expansion of 3D wireless sensor network Bumps localization
The Expansion of 3D wireless sensor network Bumps localizationThe Expansion of 3D wireless sensor network Bumps localization
The Expansion of 3D wireless sensor network Bumps localizationIJERA Editor
 
Data aggregation in wireless sensor network , 11751 d5811
Data aggregation in wireless sensor network , 11751 d5811Data aggregation in wireless sensor network , 11751 d5811
Data aggregation in wireless sensor network , 11751 d5811praveen369
 
Direct_studies_report13
Direct_studies_report13Direct_studies_report13
Direct_studies_report13Farhad Gholami
 

What's hot (20)

Improvising Network life time of Wireless sensor networks using mobile data a...
Improvising Network life time of Wireless sensor networks using mobile data a...Improvising Network life time of Wireless sensor networks using mobile data a...
Improvising Network life time of Wireless sensor networks using mobile data a...
 
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
 
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...
AN EFFICIENT INTRUSION DETECTION SYSTEM WITH CUSTOM FEATURES USING FPA-GRADIE...
 
I045075155
I045075155I045075155
I045075155
 
Dy4301752755
Dy4301752755Dy4301752755
Dy4301752755
 
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...
Time Orient Multi Attribute Sensor Selection Technique For Data Collection In...
 
Optimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmOptimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithm
 
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...Solution for intra/inter-cluster event-reporting problem in cluster-based pro...
Solution for intra/inter-cluster event-reporting problem in cluster-based pro...
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...
 
Performance analysis of dwdm based fiber optic communication with different m...
Performance analysis of dwdm based fiber optic communication with different m...Performance analysis of dwdm based fiber optic communication with different m...
Performance analysis of dwdm based fiber optic communication with different m...
 
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...Simulation Time and Energy Test for Topology Construction Protocol in Wireles...
Simulation Time and Energy Test for Topology Construction Protocol in Wireles...
 
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...
ON THE PERFORMANCE OF INTRUSION DETECTION SYSTEMS WITH HIDDEN MULTILAYER NEUR...
 
Localization for wireless sensor
Localization for wireless sensorLocalization for wireless sensor
Localization for wireless sensor
 
F33022028
F33022028F33022028
F33022028
 
A Learning Automata Based Prediction Mechanism for Target Tracking in Wireles...
A Learning Automata Based Prediction Mechanism for Target Tracking in Wireles...A Learning Automata Based Prediction Mechanism for Target Tracking in Wireles...
A Learning Automata Based Prediction Mechanism for Target Tracking in Wireles...
 
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSNMulti-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
 
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...
IRJET-Structure less Efficient Data Aggregation and Data Integrity in Sensor ...
 
The Expansion of 3D wireless sensor network Bumps localization
The Expansion of 3D wireless sensor network Bumps localizationThe Expansion of 3D wireless sensor network Bumps localization
The Expansion of 3D wireless sensor network Bumps localization
 
Data aggregation in wireless sensor network , 11751 d5811
Data aggregation in wireless sensor network , 11751 d5811Data aggregation in wireless sensor network , 11751 d5811
Data aggregation in wireless sensor network , 11751 d5811
 
Direct_studies_report13
Direct_studies_report13Direct_studies_report13
Direct_studies_report13
 

Viewers also liked

Ant Colony Optimization: Routing
Ant Colony Optimization: RoutingAnt Colony Optimization: Routing
Ant Colony Optimization: RoutingAdrian Wilke
 
Unmanned Airplane Autopilot Tuning
Unmanned Airplane Autopilot TuningUnmanned Airplane Autopilot Tuning
Unmanned Airplane Autopilot TuningIJERA Editor
 
Geospatial Technologies for Groundwater Management in Aurangabad City
Geospatial Technologies for Groundwater Management in Aurangabad CityGeospatial Technologies for Groundwater Management in Aurangabad City
Geospatial Technologies for Groundwater Management in Aurangabad CityIJERA Editor
 
Optimal Coefficient Selection For Medical Image Fusion
Optimal Coefficient Selection For Medical Image FusionOptimal Coefficient Selection For Medical Image Fusion
Optimal Coefficient Selection For Medical Image FusionIJERA Editor
 
Delay Limited Transmission Techniques with Low Density Parity Check Method of...
Delay Limited Transmission Techniques with Low Density Parity Check Method of...Delay Limited Transmission Techniques with Low Density Parity Check Method of...
Delay Limited Transmission Techniques with Low Density Parity Check Method of...IJERA Editor
 
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...IJERA Editor
 
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...IJERA Editor
 
Special Elements of a Ternary Semiring
Special Elements of a Ternary SemiringSpecial Elements of a Ternary Semiring
Special Elements of a Ternary SemiringIJERA Editor
 
A Novel Key Generation Technique Used In Tablets and Smart Phones
A Novel Key Generation Technique Used In Tablets and Smart PhonesA Novel Key Generation Technique Used In Tablets and Smart Phones
A Novel Key Generation Technique Used In Tablets and Smart PhonesIJERA Editor
 
Performance of a Wind System: Case Study of Sidi Daoud Site
Performance of a Wind System: Case Study of Sidi Daoud SitePerformance of a Wind System: Case Study of Sidi Daoud Site
Performance of a Wind System: Case Study of Sidi Daoud SiteIJERA Editor
 
Effect of simultaneous movement of multiple particles under electric field in...
Effect of simultaneous movement of multiple particles under electric field in...Effect of simultaneous movement of multiple particles under electric field in...
Effect of simultaneous movement of multiple particles under electric field in...IJERA Editor
 
Mini Rukma Vimana Unmanned Air Vehicle
Mini Rukma Vimana Unmanned Air VehicleMini Rukma Vimana Unmanned Air Vehicle
Mini Rukma Vimana Unmanned Air VehicleIJERA Editor
 
Investigating the Performance of NoC Using Hierarchical Routing Approach
Investigating the Performance of NoC Using Hierarchical Routing ApproachInvestigating the Performance of NoC Using Hierarchical Routing Approach
Investigating the Performance of NoC Using Hierarchical Routing ApproachIJERA Editor
 
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...IJERA Editor
 
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...IJERA Editor
 
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...IJERA Editor
 

Viewers also liked (20)

Ant Colony Optimization: Routing
Ant Colony Optimization: RoutingAnt Colony Optimization: Routing
Ant Colony Optimization: Routing
 
Unmanned Airplane Autopilot Tuning
Unmanned Airplane Autopilot TuningUnmanned Airplane Autopilot Tuning
Unmanned Airplane Autopilot Tuning
 
Geospatial Technologies for Groundwater Management in Aurangabad City
Geospatial Technologies for Groundwater Management in Aurangabad CityGeospatial Technologies for Groundwater Management in Aurangabad City
Geospatial Technologies for Groundwater Management in Aurangabad City
 
Aj04602248254
Aj04602248254Aj04602248254
Aj04602248254
 
Optimal Coefficient Selection For Medical Image Fusion
Optimal Coefficient Selection For Medical Image FusionOptimal Coefficient Selection For Medical Image Fusion
Optimal Coefficient Selection For Medical Image Fusion
 
Delay Limited Transmission Techniques with Low Density Parity Check Method of...
Delay Limited Transmission Techniques with Low Density Parity Check Method of...Delay Limited Transmission Techniques with Low Density Parity Check Method of...
Delay Limited Transmission Techniques with Low Density Parity Check Method of...
 
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...
Empirical Determination of Locations of Unstable and Blank Gsm Signal Network...
 
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...
A Versatile Control Scheme For Dynamic Voltage Restorer To Limit Downstream F...
 
Aa04606162167
Aa04606162167Aa04606162167
Aa04606162167
 
Special Elements of a Ternary Semiring
Special Elements of a Ternary SemiringSpecial Elements of a Ternary Semiring
Special Elements of a Ternary Semiring
 
A Novel Key Generation Technique Used In Tablets and Smart Phones
A Novel Key Generation Technique Used In Tablets and Smart PhonesA Novel Key Generation Technique Used In Tablets and Smart Phones
A Novel Key Generation Technique Used In Tablets and Smart Phones
 
I48076671
I48076671I48076671
I48076671
 
Performance of a Wind System: Case Study of Sidi Daoud Site
Performance of a Wind System: Case Study of Sidi Daoud SitePerformance of a Wind System: Case Study of Sidi Daoud Site
Performance of a Wind System: Case Study of Sidi Daoud Site
 
Effect of simultaneous movement of multiple particles under electric field in...
Effect of simultaneous movement of multiple particles under electric field in...Effect of simultaneous movement of multiple particles under electric field in...
Effect of simultaneous movement of multiple particles under electric field in...
 
Mini Rukma Vimana Unmanned Air Vehicle
Mini Rukma Vimana Unmanned Air VehicleMini Rukma Vimana Unmanned Air Vehicle
Mini Rukma Vimana Unmanned Air Vehicle
 
Investigating the Performance of NoC Using Hierarchical Routing Approach
Investigating the Performance of NoC Using Hierarchical Routing ApproachInvestigating the Performance of NoC Using Hierarchical Routing Approach
Investigating the Performance of NoC Using Hierarchical Routing Approach
 
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...
Effect of Milling Time on Al-Fe-Cr-20 Wt. % Al2O3composite Prepared Through B...
 
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...
Experimental Test of Stainless Steel Wire Mesh and Aluminium Alloy With Glass...
 
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...
An Experimental Investigation of Performance and Emissions of LPG as Dual Fue...
 
D046051721
D046051721D046051721
D046051721
 

Similar to An Ant colony optimization algorithm to solve the broken link problem in wireless sensor network.-A Review

Energy efficient routing algorithm in wireless sensor networks
Energy efficient routing algorithm in wireless sensor networksEnergy efficient routing algorithm in wireless sensor networks
Energy efficient routing algorithm in wireless sensor networksAlexander Decker
 
Ameliorate the performance using soft computing approaches in wireless networks
Ameliorate the performance using soft computing approaches  in wireless networksAmeliorate the performance using soft computing approaches  in wireless networks
Ameliorate the performance using soft computing approaches in wireless networksIJECEIAES
 
026 icsca2012-s065
026 icsca2012-s065026 icsca2012-s065
026 icsca2012-s065auwalaumar
 
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORK
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORKLIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORK
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORKJournal For Research
 
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEY
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEYDATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEY
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEYijasuc
 
Performance Evaluation of LEACH Protocol for Wireless Sensor Network
Performance Evaluation of LEACH Protocol for Wireless Sensor NetworkPerformance Evaluation of LEACH Protocol for Wireless Sensor Network
Performance Evaluation of LEACH Protocol for Wireless Sensor NetworkAM Publications
 
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...IJEEE
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksIOSR Journals
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksIOSR Journals
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksIOSR Journals
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksIOSR Journals
 
Node Deployment Technique using Wireless Sensor Networks
Node Deployment Technique using Wireless Sensor NetworksNode Deployment Technique using Wireless Sensor Networks
Node Deployment Technique using Wireless Sensor NetworksIRJET Journal
 
Network Lifetime Enhancement by Node Deployment in WSN
Network Lifetime Enhancement by Node Deployment in WSNNetwork Lifetime Enhancement by Node Deployment in WSN
Network Lifetime Enhancement by Node Deployment in WSNIJTET Journal
 
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTPSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTIRJET Journal
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )ijassn
 

Similar to An Ant colony optimization algorithm to solve the broken link problem in wireless sensor network.-A Review (20)

Energy-efficient routing protocol for wireless sensor networks based on prog...
Energy-efficient routing protocol for wireless sensor networks  based on prog...Energy-efficient routing protocol for wireless sensor networks  based on prog...
Energy-efficient routing protocol for wireless sensor networks based on prog...
 
Energy efficient routing algorithm in wireless sensor networks
Energy efficient routing algorithm in wireless sensor networksEnergy efficient routing algorithm in wireless sensor networks
Energy efficient routing algorithm in wireless sensor networks
 
Ameliorate the performance using soft computing approaches in wireless networks
Ameliorate the performance using soft computing approaches  in wireless networksAmeliorate the performance using soft computing approaches  in wireless networks
Ameliorate the performance using soft computing approaches in wireless networks
 
F017544247
F017544247F017544247
F017544247
 
026 icsca2012-s065
026 icsca2012-s065026 icsca2012-s065
026 icsca2012-s065
 
C1804011117
C1804011117C1804011117
C1804011117
 
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORK
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORKLIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORK
LIFETIME IMPROVEMENT USING MOBILE AGENT IN WIRELESS SENSOR NETWORK
 
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEY
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEYDATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEY
DATA GATHERING ALGORITHMS FOR WIRELESS SENSOR NETWORKS: A SURVEY
 
Performance Evaluation of LEACH Protocol for Wireless Sensor Network
Performance Evaluation of LEACH Protocol for Wireless Sensor NetworkPerformance Evaluation of LEACH Protocol for Wireless Sensor Network
Performance Evaluation of LEACH Protocol for Wireless Sensor Network
 
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...
EFFECTIVE AND SECURE DATA COMMUNICATION IN WSNs CONSIDERING TRANSFER MODULE O...
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
 
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor NetworksEnergy Efficient E-BMA Protocol for Wireless Sensor Networks
Energy Efficient E-BMA Protocol for Wireless Sensor Networks
 
K016136062
K016136062K016136062
K016136062
 
Node Deployment Technique using Wireless Sensor Networks
Node Deployment Technique using Wireless Sensor NetworksNode Deployment Technique using Wireless Sensor Networks
Node Deployment Technique using Wireless Sensor Networks
 
Network Lifetime Enhancement by Node Deployment in WSN
Network Lifetime Enhancement by Node Deployment in WSNNetwork Lifetime Enhancement by Node Deployment in WSN
Network Lifetime Enhancement by Node Deployment in WSN
 
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTPSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
 
Kanchan ppt
Kanchan pptKanchan ppt
Kanchan ppt
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...Call Girls in Nagpur High Profile
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 

Recently uploaded (20)

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 

An Ant colony optimization algorithm to solve the broken link problem in wireless sensor network.-A Review

  • 1. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 1 | P a g e An Ant colony optimization algorithm to solve the broken link problem in wireless sensor network.-A Review Minakshi1 *, Monika Bansal2 1* M-tech Student, Department of Computer science & Application, 2 Associate Professor, Department of Computer science & Application, Chaudhary Devi Lal University, Sirsa, Haryana, INDIA* ABSTRUCT: Aco is a well –known metahuristic in which a colony of artificial ants cooperates in explain Good solution to a combinational optimization problem. Wireless sensor consisting of nodes with limited power is deployed to gather useful information From the field. In wireless sensor network it is critical to collect the information in an energy efficient Manner.ant colony optimization, a swarm intelligence based optimization technique, is widely used In network routing. A novel routing approach using an ant colony optimization algorithm is proposed for wireless sensor Network consisting of stable nodes illustrative example details description and cooperative performance test result the proposed approach are included. The approach is also implementing to a small sized hardware component as a router chip simulation result show that proposed algorithm Provides promising solution allowing node designers to efficiency operate routing tasks. Parameters Used: Threshold Value (Load on Node), Noise Variance, Request TimeoutBackoff Attempt, Slot Time, Turnaround Time, MaxRetries. I. INTRODUCTION Wireless Sensor Networks have become a wide area for research. Wireless Sensor Networks (WSN) has gained world-wide attention in recent years. It is a sensing technology where autonomous devices called sensor nodes deployed in a remote area to observe phenomena, collect data and process it and then transmit information to users via radio frequency (RF) channel[1][2]. The concept of wireless sensor networks is based on a simple equation: Sensing + CPU + Radio = Thousands of potential applications [3]. 1.1 Sensor Networks A sensor network is a consisted of communicating sensing devices, or nodes. All nodes are not necessarily communicating at any particular time, and nodes can only communicate with a few nearby nodes. The network has a routing protocol to control the routing of data messages between nodes. The routing protocol also attempts to get messages to the base station in an energy-efficient manner. 1.2 Wireless sensor node architecture Wireless sensor node is made up four basic components: a sensing unit, a processing unit, a transceiver unit and a power unit. There can be application dependent additional components such as a location finding system, a power generator and a mobilizer [4]. Figure 1. Architecture of Wireless Sensor Node RESEARCH ARTICLE OPEN ACCESS
  • 2. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 2 | P a g e Sensing Unit: Sensing units are usually composed of two subunits: sensors and analog to digital converters (ADCs). Sensor is a device which is used to translate physical phenomena to electrical signals. Processing Unit: The processing unit mainly provides intelligence to the sensor node. The processing unit consists of a microprocessor, which is responsible for control of the sensors, execution of communication protocols and signal processing algorithms on the gathered sensor data. Transceiver Unit: The radio enables wireless communication with neighbouring nodes and the outside world. It consists of a short range radio which usually has single channel at low data rate and operates at unlicensed bands of 868-870 MHz (Europe), 902-928 MHz (USA) or near 2.4 GHz (global ISM band). Battery - The battery supplies power to the complete sensor node. It plays a vital role in determining sensor node lifetime. The amount of power drawn from a battery should be carefully monitored. 1.3 Applications of Wireless Sensor Networks Military applications: The various characteristics of WSNs like self-organization and fault tolerance, make them a very reliable sensing technique for military command, communications, computing, intelligence, surveillance, and targeting systems.[4,5,6] Environmental applications: Wireless Sensor Networks have been deployed for environmental monitoring, which involves tracking the movements of small animals and monitoring environmental conditions that affect crops and livestock. Healthcare applications: WSN based technologies such as Ambient Assisted Living and Body Sensor Networks provide dozens of solutions to healthcare's biggest challenges such as an aging population and rising healthcare costs [7] Traffic control: Traffic conditions can be easily monitored and controlled at peak times by WSNs. Temporary situations such as roadwork and accidents can be monitored in situ. Further, the integration of monitoring and management operations, such as signpost control, is facilitated by a common WSN infrastructure. 1.4 Problem Definition Energy efficiency and reliability have become one of the principle design features of successful sensor networks. In wireless networks balancing the use of power and maintaining the reliable communication is a really very challenging job. Research has focused on ways to minimize energy usage in routing to maximize the useful lifetime of sensor networks and also on reliability in case of a failure like presence of an attacked node. 1.5 Existing Techniques for Energy Efficiency in WSNs The following are the already proposed algorithm and techniques for energy optimization of the Wireless Sensor Networks.  Path selection Algorithm  Clustering Algorithm  Sleep Mode Markov Model  Cross Layer Protocol for Energy Efficiency  Error control schemes analysis II. RESEARCH METHODOLOGY 2.1 Base Algorithms used Our proposed algorithm is based on two basic approaches: 1. Right Path Selection algorithm 2. Ant Colony Optimization algorithm 2.2 Proposed Algorithm  1. Source: Route Request  2. Destination: Route Reply  3. Source: for k=[0 to n-1]  4.Source: Find ”Right Path” pi for (p1,p2,...,pn))  5.if pi=BROKEN_LINK and No_of_Retry>Threshold then  Call AntOtimiation(); /* to find the optimized path one time*/  6.If Ea,pi >Ec,pi then Calculate Spi (selectivity of path pi in round kth) Else goto step 4  7. If Spi=Max(Sp1,..,Spn) then  If k<n-1 then k=k+1  goto step 3  Else goto step 7 Else goto step 3
  • 3. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 3 | P a g e  8. stop  }  Function AntOptimization()  {  1. {Initialization}  Initialize pheromone concentration Tij and heuristic function ηij.  2. {Construction}  For each node k (currently in state ι) do  repeat  choose in probability the state to move into.  append the chosen move to the k-th node's set tabu k .  until node k has completed its solution.  end for  3. {Trail update}  For each ant move (ιψ ) do  Compute ∆τ ιψ  update the trail matrix.  end for  4. {Terminating condition}  If not(end test) go to step 2  } 2.3 Simulation Environment: Here we used MATLAB 7.8.0 as simulation platform. MATLAB is high-performance language for technical computing, visualization, and programming in an easy-to-use environment where solutions are expressed in mathematical notation. III. RESULTS The objective of our simulation is to demonstrate the increased network lifetime by choosing the right path. The proposed algorithm was validated using the simulator in MATLAB. The network topology is created by randomly placing the sensor nodes in the area of 100 by 100 meters. The simulation results show similar performance in terms of the increased network lifetime. Figure 2: Path selected by proposed algorithm
  • 4. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 4 | P a g e 3.1 Results of Proposed Algorithm Figure 3: Network Topology for Proposed Algorithm Figure 4: Success Rate Vs Network Size
  • 5. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 5 | P a g e Figure 5: Response Time (sec.) Vs Network Size Figure 6: Hop Count Vs Network Size IV. CONCLUSION In this research work, an energy-saving strategy that exploits the combination of Path Selection and Ant Optimization techniques in Wireless Sensor Networks has been developed. By simulation, we have found out that the energy in our protocol is dissipated less than the other energy-aware routing protocols. By default the route is chosen on the basis of Path Selection formula i.e. we will choose right path means the lowest energy path. In case there is problem in the selection of the path (in case of any fault node) then we apply the Ant
  • 6. Minakshi Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 6, ( Part -3) June 2015, pp.01-06 www.ijera.com 6 | P a g e Colony Algorithm the purpose of which is to continue sending data using the previous path (as from Path Selection Algo.). Hence we achieved efficiency in terms of energy by applying path selection whereas Ant Colony Optimization Algorithm gives the required reliability. REFERENCES [1] Singh, G., Das, S. Gosavi, S., Pujar, S. Ant Colony Algorithms for Steiner Trees: An Application to Routing in Sensor Networks. In Recent developments in Biologically Inspired Computing; de Castro, L.N., Von Zuben, F.J., Eds.; Idea Group Publishing: Hershey, USA, 2004; pp. 181-206. [2] P. Liu, Y.F. Hu, G. Min, G. Dai, “Semantization improves the Energy efficiency of Wireless Sensor Networks”, IEEE Communications Society subject matter experts publication WCNC, 2010. [3] Kashif Saleem, Norsheila Fisal, M. Ariff Baharudin, Adel Ali Ahmed, Sharifah Hafizah, Sharifah Kamila, Ant Colony inspired Self-Optimized Routing Protocol based on Cross Layer Architecture for Wireless Sensor Networks, ISSN, Volume 9, October 2010, 1109-2742. [4] Sanatan Mohanty “ Energy Efficient Routing Algorithms for Wireless Sensor Networks and Performance Evaluation of Quality of Service for IEEE 802.15.4 Networks”, Master thesis, National Institute of Technology, Rourkela, January 2010 [5] Sensor Networks: A Comparative Study” [ Communications, 2004 IEEE International Conference on] communications. [6] Hussein T. Mouftah , “Advances in WSN”, University of Ottawa, February, 2008. [7] “Wireless Sensor Networks Technology, Protocols, and Applications” Kazem Sohraby, Daniel Minoli, Taieb Znati, A John Willy & Sons, Inc Publications, 2007.