SlideShare a Scribd company logo
1 of 3
Download to read offline
International Journal of Technical Research and Applications e-ISSN: 2320-8163, 
www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 
12 | P a g e 
COMPACT ROUTING USING SWARM ALGORITHM 
Deepti Srivastava1, Nimish Singh2 
Department of Computer Science 
Abstract— In this paper we borrow the ideas from swarm intelligence to propose a model for compact routing mechanism so as to decrease the size of the routing list in a multipath network.. Swarm intelligence is the study of computational systems inspired by the ‘collective intelligence’. A large part of the research in swarm intelligence has focused on the reverse engineering and the adaptation of collective behaviors observed in natural systems with the aim of designing effective algorithms for distributed optimization. We are focusing here on the design of routing algorithms that store a small amount of information in a routing list at each node in a network, and provide a bound on the stretch of messaging routes which is also referred to as Compact Routing. 
Index Terms— swarm intelligence, collective intelligence algorithm, compact routing. (Key words) 
A. Introduction. 
A network is a collection of computers and other hardware interconnected by communication channels that allow sharing of resources and information. The process of selecting paths in a network along which to send network traffic is called routing. Routing may be divided in the following categories: 
a. Proactive, reactive, and hybrid routing 
b. Source and next hop routing 
c. Flat and hierarchical routing 
d. Distributed and centralized routing 
e. Single path and multipath routing 
In proactive routing fresh lists of destinations and their routes is maintained by periodically distributing routing tables throughout the network. Respective amount of data for maintenance is required to be handled and there is slow reaction on restructuring and failures. This technique is also referred to as table driven routing. In reactive routing which also called on demand routing we find a route on demand by flooding the network with Route Request packets. Here the latency time in route finding is high. Hybrid routing combines the advantages of proactive and of reactive routing. The routing is initially established with some proactively prospected routes and then serves the demand from additionally activated nodes through reactive flooding. The choice for one or the other method requires predetermination for special cases [1]. 
In source routing, the data packet has the complete route called source route in the header. Typically, the source node builds the whole route and the data packet routes itself [2]. In next hop routing the routing table on each node contains the next hop node and a cost metric for each destination. Data packet only has the destination address .This routing is also known as hop by hop routing. 
In a flat routing, each network ID is represented individually in the routing table. Flat routing protocols distribute information as needed to any router that can be reached or receive information. No effort is made to organize the network or its traffic. The only requirement here is to discover the best route hop by hop to a destination by any path [3]. In hierarchical routing routers are grouped together by function into a hierarchy. The routers contain all the details about how to route the packets to the destination within its own region. It is necessary to group the regions into clusters, the clusters into zones and zones into groups and so on. 
Centralized routing model is a routing model in which routing is centrally carried out using a centralized database. In other words, the routing table is kept at a single “central” node, which should be consulted when other nodes need to make a routing decision. This centralized database possesses a global network view. In distributed routing model, each node keeps a separate routing table. Distributed routing model is a routing model, which is excellent for domains that can be identified as entirely opaque. In case of a failure (when there is a need to restore rapidly), distributed routing system can be relied upon to bear the responsibility of the on-demand computation of a paths of recovery for each of the light-paths that have failed (even at the point of detecting an expected failure) [4]. 
In a single-path routing infrastructure, only a single path exists between any two networks in the internetwork. While this may simplify the routing tables and the packet flow paths, single-path internetworks are not fault tolerant. Single Path protocols learn routes and select a single best route to each destination. It will only insert a single path to a destination in the IP routing table. In a multipath routing infrastructure, multiple paths exist between networks in the internetwork. Multipath internetworks are fault tolerant when dynamic routing is used, and some routing protocols, such as OSPF, can balance the load of network traffic across multiple paths with
International Journal of Technical Research and Applications e-ISSN: 2320-8163, 
www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 
13 | P a g e 
the same metric value. Multi-path protocols learn routes and can select more than one path to a destination 
In this paper we are focusing on selecting minimum distance between the source and the destination with compact sized routing list at each node. A routing list which is also known as routing information base (RIB), is a data table stored in a router or a networked computer that lists the routes to particular network destinations, and in some cases, metrics or distances associated with those routes. The routing list contains information about the topology of the network immediately around it. There are multiple paths connecting each node in a network. We here divide the flow among a number of paths instead of using a single path results in a better balancing of load throughout the network. Compact routing algorithm is used for balancing load of each node which helps to optimize network throughput and Swarm Intelligence Algorithm is used for selecting the minimum path between two nodes. 
B. Compact Routing 
A routing scheme is a distributed algorithm that allows any source node to route messages to any destination node, given the destination‟s network identifier. In the routing strategy each node contains a routing table which specifies an output port for each destination [11]. Compact routing is basically used for minimizing the size of the routing list. 
C. Swarm Intelligence 
Swarm Intelligence is a relatively novel field. It addresses the study of the collective behaviours of systems made by many components that coordinate using decentralized controls and self- organization. Swarm intelligence has focused on the collective behaviours observed in natural systems. Swarm intelligence is used in designing of effective algorithms for distributed optimization. Swarm intelligence (SI) is a relatively novel field that was originally defined as „„Any attempt to design algorithms or distributed problem-solving devices inspired by the collective behaviour of social insects and other animal societies” [6]. 
D. Working Model 
Early work on compact routing focused on routing schemes for special networks such as rings, trees and grids. Peleg and Upfal were the first to construct a universal compact routing scheme. Compact routing uses a routing scheme algorithm for generating a routing scheme for every given network, that is, for all sorts of topologies. A trivial version of this routing strategy .In this strategy each node contain a routing table which specifies an output port for each destination. 
Although this routing strategy can guarantee routing through the shortest path, each router has to store locally O(n log d) bits of memory, where d is the degree of the node and n is the total number of nodes in the network. As the network grows in size, it becomes necessary to reduce the amount of memory store at each node. 
Let a network G (a weighted connected graph) G= (V, E) with |v|=n be a labelled undirected network. Here Complexity Measures in the terms of Space & Stretch. 
Space = size of the largest local routing tables 
More precisely, size of the smallest local routing algorithm including all constants and data-structures 
In the grid example: space = O(log n) bits 
Stretch = ratio between length of the route and distance 
|route(x, y)| 6 stretch • dist(x, y) 
In the grid example: stretch = 1 (shortest path)(1…..) 
In this we are using the swarm optimization algorithm to find the shortest path between the source and the destination node. The Particle Swarm Optimization algorithm comprises of a collection of particles that move around the search space influenced by their own best past location and the best past location of the whole swarm or a close neighbour. 
Procedure to minimize the size of routing tables using swarm algorithm is as follows: 
1) Now firstly take the empty buffer at each node. 
2) In the population size buffer the routing list generated randomly. 
3) When the particles stop the movement from node to node then the final position of the particle updated in the list. 
4) After that it updates the velocity and the final position of the particle in buffer. 
5) The actual position of the particle with particle route is updated in the list. 
Hence the routing table is minimized. 
E. Conclusion & future work 
Networks consist of large sets of resource-constrained nodes. The design of effective, robust, and scalable routing algorithm in these networks is a challenging task. On the other hand, the relatively novel domain of swarm intelligence offers algorithmic design principles, inspired by complex adaptive biological systems that well match the constraints and the challenges of networks. This is the reason, in the last years a number of routing algorithm for networks have been developed based on Swarm Intelligence principles, and, more specifically, taking inspiration from foraging behaviours of ant and bee colonies [9]. In this paper, we have presented a rather extensive survey of these SI-based algorithms for routing in networks. Finally, we have outlined a general methodology which is scientifically sound in evaluating optimized distance between two nodes with minimized routing list. 
To conclude, we want to sketch some future directions for the field rather than highlighting methodological problems. We strongly believe that we will witness a large diffusion of Swarm Intelligence-based solutions for real-world networks whether it is wired or wireless.
International Journal of Technical Research and Applications e-ISSN: 2320-8163, 
www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 
14 | P a g e 
REFERENCES 
[1] Wolfson School of Mechanical and Manufacturing Engineering Loughborough University, Loughborough, Leics LE11 3TU http://www.primetechnologywatch.org.uk (ISBN 1-84402-020- 7) ,2002 
[2] http://en.wikipedia.org/wiki/Microelectromechanical_systems 
[3] Salvatore A. Vittorio “MicroElectroMechanical Systems (MEMS)” oct, 2001 
[4] http://blog.electricbricks.com/en/2010/03/giroscopo/ ,1 may,2010 
[5] Micromachine Devices, European Study Sees MEMS Market at More Than $34 billion by 02, May 1997, p. 1. 
[6] http://www.efytimes.com/e1/creativenews.asp?edid=92194 
[7] http://en.wikipedia.org/wiki/Total_analysis_system 
[8] Miko Elwenspoek “Proceeding of Sensor Technology 2001 held in Enschede, The Netherland, 14-15 May 2001” 
[9] http://www.potomac-laser.com/services/our-capabilities/micro- welding/ 
[10] http://www.gatewaylaser.com/welding.html

More Related Content

What's hot

Review on Clustering and Data Aggregation in Wireless Sensor Network
Review on Clustering and Data Aggregation in Wireless Sensor NetworkReview on Clustering and Data Aggregation in Wireless Sensor Network
Review on Clustering and Data Aggregation in Wireless Sensor NetworkEditor IJCATR
 
Opportunistic Data Forwarding in Manet
Opportunistic Data Forwarding in ManetOpportunistic Data Forwarding in Manet
Opportunistic Data Forwarding in ManetIJTET Journal
 
Destination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETDestination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETEditor IJCATR
 
Local distance's neighbouring quantification
Local distance's neighbouring quantificationLocal distance's neighbouring quantification
Local distance's neighbouring quantificationijwmn
 
Distance’s quantification
Distance’s quantificationDistance’s quantification
Distance’s quantificationcsandit
 
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...IOSR Journals
 
JPN1409 Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networks
JPN1409  Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless NetworksJPN1409  Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networks
JPN1409 Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networkschennaijp
 
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKS
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKSLOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKS
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKSIJARIIT
 
Geographical routing protocols for mobile ad hoc
Geographical routing protocols for mobile ad hocGeographical routing protocols for mobile ad hoc
Geographical routing protocols for mobile ad hoceSAT Publishing House
 
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)Narendra Singh Yadav
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Implementation of hybrid data collection (mobile element and hierarchical clu...
Implementation of hybrid data collection (mobile element and hierarchical clu...Implementation of hybrid data collection (mobile element and hierarchical clu...
Implementation of hybrid data collection (mobile element and hierarchical clu...IJARIIT
 
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...Eswar Publications
 
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKSCOMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKSijcax
 
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANET
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANETIntegrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANET
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANETijsrd.com
 
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRM
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRMMDSR to Reduce Link Breakage Routing Overhead in MANET Using PRM
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRMIOSR Journals
 

What's hot (20)

Review on Clustering and Data Aggregation in Wireless Sensor Network
Review on Clustering and Data Aggregation in Wireless Sensor NetworkReview on Clustering and Data Aggregation in Wireless Sensor Network
Review on Clustering and Data Aggregation in Wireless Sensor Network
 
Opportunistic Data Forwarding in Manet
Opportunistic Data Forwarding in ManetOpportunistic Data Forwarding in Manet
Opportunistic Data Forwarding in Manet
 
Destination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETDestination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANET
 
Local distance's neighbouring quantification
Local distance's neighbouring quantificationLocal distance's neighbouring quantification
Local distance's neighbouring quantification
 
Distance’s quantification
Distance’s quantificationDistance’s quantification
Distance’s quantification
 
L045037278
L045037278L045037278
L045037278
 
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...
A Simulation Based Performance Comparison of Routing Protocols (Reactive and ...
 
JPN1409 Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networks
JPN1409  Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless NetworksJPN1409  Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networks
JPN1409 Neighbor Table Based Shortcut Tree Routing in ZigBee Wireless Networks
 
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKS
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKSLOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKS
LOAD BALANCING AND PROVIDING SECURITY USING RSA IN WIRELESS SENSOR NETWORKS
 
Position based Opportunistic routing in MANET
Position based Opportunistic routing in MANETPosition based Opportunistic routing in MANET
Position based Opportunistic routing in MANET
 
Hj2413101315
Hj2413101315Hj2413101315
Hj2413101315
 
Geographical routing protocols for mobile ad hoc
Geographical routing protocols for mobile ad hocGeographical routing protocols for mobile ad hoc
Geographical routing protocols for mobile ad hoc
 
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)
Influence of Clustering on the Performance of MobileAd Hoc Networks (MANETs)
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Implementation of hybrid data collection (mobile element and hierarchical clu...
Implementation of hybrid data collection (mobile element and hierarchical clu...Implementation of hybrid data collection (mobile element and hierarchical clu...
Implementation of hybrid data collection (mobile element and hierarchical clu...
 
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
 
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKSCOMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS
COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS
 
A study of the effect of different topology parameters on the routing overhea...
A study of the effect of different topology parameters on the routing overhea...A study of the effect of different topology parameters on the routing overhea...
A study of the effect of different topology parameters on the routing overhea...
 
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANET
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANETIntegrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANET
Integrated Resource Adaptive On Demand Geographic Routing (IRA-ODGR) for MANET
 
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRM
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRMMDSR to Reduce Link Breakage Routing Overhead in MANET Using PRM
MDSR to Reduce Link Breakage Routing Overhead in MANET Using PRM
 

Viewers also liked

My last vacations Leonardo castro malaver
My last vacations Leonardo castro malaverMy last vacations Leonardo castro malaver
My last vacations Leonardo castro malaverleonik2510
 
Using powerpoint at exhibitions presentation
Using powerpoint at exhibitions presentationUsing powerpoint at exhibitions presentation
Using powerpoint at exhibitions presentationLorna Rose
 
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتون
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتونBenetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتون
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتونEhsan Zeraatparvar
 

Viewers also liked (18)

Care designpwpt.net
Care designpwpt.netCare designpwpt.net
Care designpwpt.net
 
My last vacations Leonardo castro malaver
My last vacations Leonardo castro malaverMy last vacations Leonardo castro malaver
My last vacations Leonardo castro malaver
 
PRODUCTION OF HARD SHEETS FROM MUNICIPAL SOLID WASTE
PRODUCTION OF HARD SHEETS FROM MUNICIPAL SOLID WASTEPRODUCTION OF HARD SHEETS FROM MUNICIPAL SOLID WASTE
PRODUCTION OF HARD SHEETS FROM MUNICIPAL SOLID WASTE
 
Ijtra130517
Ijtra130517Ijtra130517
Ijtra130517
 
PERFORMANCE COMPARISON OF AODV AND DSDV ROUTING PROTOCOLS IN WIRELESS AD HOC ...
PERFORMANCE COMPARISON OF AODV AND DSDV ROUTING PROTOCOLS IN WIRELESS AD HOC ...PERFORMANCE COMPARISON OF AODV AND DSDV ROUTING PROTOCOLS IN WIRELESS AD HOC ...
PERFORMANCE COMPARISON OF AODV AND DSDV ROUTING PROTOCOLS IN WIRELESS AD HOC ...
 
DEVELOPMENT OF A MULTIAGENT BASED METHODOLOGY FOR COMPLEX SYSTEMS
DEVELOPMENT OF A MULTIAGENT BASED METHODOLOGY FOR COMPLEX SYSTEMSDEVELOPMENT OF A MULTIAGENT BASED METHODOLOGY FOR COMPLEX SYSTEMS
DEVELOPMENT OF A MULTIAGENT BASED METHODOLOGY FOR COMPLEX SYSTEMS
 
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
 
ANALYSIS OF WATER OF RAIGARH AREA WITH SPECIAL REFERENCE TO HEAVY METALS
ANALYSIS OF WATER OF RAIGARH AREA WITH SPECIAL REFERENCE TO HEAVY METALSANALYSIS OF WATER OF RAIGARH AREA WITH SPECIAL REFERENCE TO HEAVY METALS
ANALYSIS OF WATER OF RAIGARH AREA WITH SPECIAL REFERENCE TO HEAVY METALS
 
130509
130509130509
130509
 
Using powerpoint at exhibitions presentation
Using powerpoint at exhibitions presentationUsing powerpoint at exhibitions presentation
Using powerpoint at exhibitions presentation
 
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتون
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتونBenetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتون
Benetton Group Marketing Analysis/ تحلیل بازاریابی گروه بنتون
 
PARENTING STYLES AS A PREDICTORS OF ACADEMIC ACHIEVEMENT OF STUDENTS
PARENTING STYLES AS A PREDICTORS OF ACADEMIC ACHIEVEMENT OF STUDENTSPARENTING STYLES AS A PREDICTORS OF ACADEMIC ACHIEVEMENT OF STUDENTS
PARENTING STYLES AS A PREDICTORS OF ACADEMIC ACHIEVEMENT OF STUDENTS
 
M-COMMERCE: NEW TOOL FOR INDUSTRY
M-COMMERCE: NEW TOOL FOR INDUSTRYM-COMMERCE: NEW TOOL FOR INDUSTRY
M-COMMERCE: NEW TOOL FOR INDUSTRY
 
THE INFLUENCE OF ETHICAL IDEOLOGIES ON ATTITUDES TOWARD SUICIDE
THE INFLUENCE OF ETHICAL IDEOLOGIES ON ATTITUDES TOWARD SUICIDETHE INFLUENCE OF ETHICAL IDEOLOGIES ON ATTITUDES TOWARD SUICIDE
THE INFLUENCE OF ETHICAL IDEOLOGIES ON ATTITUDES TOWARD SUICIDE
 
EXTRACURRICULAR ACTIVITIES AND STUDENT’S PERFORMANCE IN SECONDARY SCHOOL
EXTRACURRICULAR ACTIVITIES AND STUDENT’S PERFORMANCE IN SECONDARY SCHOOL EXTRACURRICULAR ACTIVITIES AND STUDENT’S PERFORMANCE IN SECONDARY SCHOOL
EXTRACURRICULAR ACTIVITIES AND STUDENT’S PERFORMANCE IN SECONDARY SCHOOL
 
Resume
ResumeResume
Resume
 
FERRITIC AS A POTENT MARKER OF BREST CANCER
FERRITIC AS A POTENT MARKER OF BREST CANCERFERRITIC AS A POTENT MARKER OF BREST CANCER
FERRITIC AS A POTENT MARKER OF BREST CANCER
 
COMPLAINT MANAGEMENT SYSTEM IN BANKS: INTRODUCTION TO COMPSAT GRID TO MINIMIZ...
COMPLAINT MANAGEMENT SYSTEM IN BANKS: INTRODUCTION TO COMPSAT GRID TO MINIMIZ...COMPLAINT MANAGEMENT SYSTEM IN BANKS: INTRODUCTION TO COMPSAT GRID TO MINIMIZ...
COMPLAINT MANAGEMENT SYSTEM IN BANKS: INTRODUCTION TO COMPSAT GRID TO MINIMIZ...
 

Similar to Ijtra130510

Improved routing scheme with ACO in WSN in comparison to DSDV
Improved routing scheme with ACO in WSN in comparison to DSDVImproved routing scheme with ACO in WSN in comparison to DSDV
Improved routing scheme with ACO in WSN in comparison to DSDVijsrd.com
 
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...IOSR Journals
 
Improving End-to-End Network Throughput Using Multiple Best Pa.docx
Improving End-to-End Network Throughput Using Multiple Best Pa.docxImproving End-to-End Network Throughput Using Multiple Best Pa.docx
Improving End-to-End Network Throughput Using Multiple Best Pa.docxsheronlewthwaite
 
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKSSURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKSgraphhoc
 
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...ijafrc
 
Congestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolCongestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolIOSR Journals
 
Congestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolCongestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolIOSR Journals
 
Advanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load BalancingAdvanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load Balancingijdpsjournal
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs) IJMER
 
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...eSAT Journals
 
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...eSAT Publishing House
 
Comparing: Routing Protocols on Basis of sleep mode
Comparing: Routing Protocols on Basis of sleep modeComparing: Routing Protocols on Basis of sleep mode
Comparing: Routing Protocols on Basis of sleep modeIJMER
 
Improved AODV based on Load and Delay for Route Discovery in MANET
Improved AODV based on Load and Delay for Route Discovery in MANETImproved AODV based on Load and Delay for Route Discovery in MANET
Improved AODV based on Load and Delay for Route Discovery in MANETIOSR Journals
 
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETs
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETsA SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETs
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETspijans
 
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...IJNSA Journal
 

Similar to Ijtra130510 (20)

Improved routing scheme with ACO in WSN in comparison to DSDV
Improved routing scheme with ACO in WSN in comparison to DSDVImproved routing scheme with ACO in WSN in comparison to DSDV
Improved routing scheme with ACO in WSN in comparison to DSDV
 
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
 
An Insight on Routing
An Insight on RoutingAn Insight on Routing
An Insight on Routing
 
UNIT-3 Adhoc.pptx
UNIT-3 Adhoc.pptxUNIT-3 Adhoc.pptx
UNIT-3 Adhoc.pptx
 
Improving End-to-End Network Throughput Using Multiple Best Pa.docx
Improving End-to-End Network Throughput Using Multiple Best Pa.docxImproving End-to-End Network Throughput Using Multiple Best Pa.docx
Improving End-to-End Network Throughput Using Multiple Best Pa.docx
 
Fo35991995
Fo35991995Fo35991995
Fo35991995
 
J0935461
J0935461J0935461
J0935461
 
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKSSURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS
SURVEY AND TAXONOMY OF UNICAST ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS
 
Network Layer
Network LayerNetwork Layer
Network Layer
 
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...
Improving Capacity and Load Distribution of a Node Using Circular Sailing Rou...
 
Congestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolCongestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing Protocol
 
Congestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing ProtocolCongestion Control in Manets Using Hybrid Routing Protocol
Congestion Control in Manets Using Hybrid Routing Protocol
 
Advanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load BalancingAdvanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load Balancing
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
 
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
 
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...Designing an opportunistic routing scheme for adaptive clustering in mobile a...
Designing an opportunistic routing scheme for adaptive clustering in mobile a...
 
Comparing: Routing Protocols on Basis of sleep mode
Comparing: Routing Protocols on Basis of sleep modeComparing: Routing Protocols on Basis of sleep mode
Comparing: Routing Protocols on Basis of sleep mode
 
Improved AODV based on Load and Delay for Route Discovery in MANET
Improved AODV based on Load and Delay for Route Discovery in MANETImproved AODV based on Load and Delay for Route Discovery in MANET
Improved AODV based on Load and Delay for Route Discovery in MANET
 
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETs
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETsA SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETs
A SURVEY OF ENHANCED ROUTING PROTOCOLS FOR MANETs
 
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...
Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and ...
 

More from International Journal of Technical Research & Application

More from International Journal of Technical Research & Application (20)

STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEWSTUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
 
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
 
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
 
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONSSTUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
 
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
 
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTERPOD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
 
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGADIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
 
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
 
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIRAN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
 
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESSLI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
 
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
 
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEWSCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
 
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKINGIMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
 
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTYEFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
 
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
 
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
 
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASHA STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
 
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
 
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
 
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
 

Recently uploaded

Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 

Recently uploaded (20)

Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 

Ijtra130510

  • 1. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 12 | P a g e COMPACT ROUTING USING SWARM ALGORITHM Deepti Srivastava1, Nimish Singh2 Department of Computer Science Abstract— In this paper we borrow the ideas from swarm intelligence to propose a model for compact routing mechanism so as to decrease the size of the routing list in a multipath network.. Swarm intelligence is the study of computational systems inspired by the ‘collective intelligence’. A large part of the research in swarm intelligence has focused on the reverse engineering and the adaptation of collective behaviors observed in natural systems with the aim of designing effective algorithms for distributed optimization. We are focusing here on the design of routing algorithms that store a small amount of information in a routing list at each node in a network, and provide a bound on the stretch of messaging routes which is also referred to as Compact Routing. Index Terms— swarm intelligence, collective intelligence algorithm, compact routing. (Key words) A. Introduction. A network is a collection of computers and other hardware interconnected by communication channels that allow sharing of resources and information. The process of selecting paths in a network along which to send network traffic is called routing. Routing may be divided in the following categories: a. Proactive, reactive, and hybrid routing b. Source and next hop routing c. Flat and hierarchical routing d. Distributed and centralized routing e. Single path and multipath routing In proactive routing fresh lists of destinations and their routes is maintained by periodically distributing routing tables throughout the network. Respective amount of data for maintenance is required to be handled and there is slow reaction on restructuring and failures. This technique is also referred to as table driven routing. In reactive routing which also called on demand routing we find a route on demand by flooding the network with Route Request packets. Here the latency time in route finding is high. Hybrid routing combines the advantages of proactive and of reactive routing. The routing is initially established with some proactively prospected routes and then serves the demand from additionally activated nodes through reactive flooding. The choice for one or the other method requires predetermination for special cases [1]. In source routing, the data packet has the complete route called source route in the header. Typically, the source node builds the whole route and the data packet routes itself [2]. In next hop routing the routing table on each node contains the next hop node and a cost metric for each destination. Data packet only has the destination address .This routing is also known as hop by hop routing. In a flat routing, each network ID is represented individually in the routing table. Flat routing protocols distribute information as needed to any router that can be reached or receive information. No effort is made to organize the network or its traffic. The only requirement here is to discover the best route hop by hop to a destination by any path [3]. In hierarchical routing routers are grouped together by function into a hierarchy. The routers contain all the details about how to route the packets to the destination within its own region. It is necessary to group the regions into clusters, the clusters into zones and zones into groups and so on. Centralized routing model is a routing model in which routing is centrally carried out using a centralized database. In other words, the routing table is kept at a single “central” node, which should be consulted when other nodes need to make a routing decision. This centralized database possesses a global network view. In distributed routing model, each node keeps a separate routing table. Distributed routing model is a routing model, which is excellent for domains that can be identified as entirely opaque. In case of a failure (when there is a need to restore rapidly), distributed routing system can be relied upon to bear the responsibility of the on-demand computation of a paths of recovery for each of the light-paths that have failed (even at the point of detecting an expected failure) [4]. In a single-path routing infrastructure, only a single path exists between any two networks in the internetwork. While this may simplify the routing tables and the packet flow paths, single-path internetworks are not fault tolerant. Single Path protocols learn routes and select a single best route to each destination. It will only insert a single path to a destination in the IP routing table. In a multipath routing infrastructure, multiple paths exist between networks in the internetwork. Multipath internetworks are fault tolerant when dynamic routing is used, and some routing protocols, such as OSPF, can balance the load of network traffic across multiple paths with
  • 2. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 13 | P a g e the same metric value. Multi-path protocols learn routes and can select more than one path to a destination In this paper we are focusing on selecting minimum distance between the source and the destination with compact sized routing list at each node. A routing list which is also known as routing information base (RIB), is a data table stored in a router or a networked computer that lists the routes to particular network destinations, and in some cases, metrics or distances associated with those routes. The routing list contains information about the topology of the network immediately around it. There are multiple paths connecting each node in a network. We here divide the flow among a number of paths instead of using a single path results in a better balancing of load throughout the network. Compact routing algorithm is used for balancing load of each node which helps to optimize network throughput and Swarm Intelligence Algorithm is used for selecting the minimum path between two nodes. B. Compact Routing A routing scheme is a distributed algorithm that allows any source node to route messages to any destination node, given the destination‟s network identifier. In the routing strategy each node contains a routing table which specifies an output port for each destination [11]. Compact routing is basically used for minimizing the size of the routing list. C. Swarm Intelligence Swarm Intelligence is a relatively novel field. It addresses the study of the collective behaviours of systems made by many components that coordinate using decentralized controls and self- organization. Swarm intelligence has focused on the collective behaviours observed in natural systems. Swarm intelligence is used in designing of effective algorithms for distributed optimization. Swarm intelligence (SI) is a relatively novel field that was originally defined as „„Any attempt to design algorithms or distributed problem-solving devices inspired by the collective behaviour of social insects and other animal societies” [6]. D. Working Model Early work on compact routing focused on routing schemes for special networks such as rings, trees and grids. Peleg and Upfal were the first to construct a universal compact routing scheme. Compact routing uses a routing scheme algorithm for generating a routing scheme for every given network, that is, for all sorts of topologies. A trivial version of this routing strategy .In this strategy each node contain a routing table which specifies an output port for each destination. Although this routing strategy can guarantee routing through the shortest path, each router has to store locally O(n log d) bits of memory, where d is the degree of the node and n is the total number of nodes in the network. As the network grows in size, it becomes necessary to reduce the amount of memory store at each node. Let a network G (a weighted connected graph) G= (V, E) with |v|=n be a labelled undirected network. Here Complexity Measures in the terms of Space & Stretch. Space = size of the largest local routing tables More precisely, size of the smallest local routing algorithm including all constants and data-structures In the grid example: space = O(log n) bits Stretch = ratio between length of the route and distance |route(x, y)| 6 stretch • dist(x, y) In the grid example: stretch = 1 (shortest path)(1…..) In this we are using the swarm optimization algorithm to find the shortest path between the source and the destination node. The Particle Swarm Optimization algorithm comprises of a collection of particles that move around the search space influenced by their own best past location and the best past location of the whole swarm or a close neighbour. Procedure to minimize the size of routing tables using swarm algorithm is as follows: 1) Now firstly take the empty buffer at each node. 2) In the population size buffer the routing list generated randomly. 3) When the particles stop the movement from node to node then the final position of the particle updated in the list. 4) After that it updates the velocity and the final position of the particle in buffer. 5) The actual position of the particle with particle route is updated in the list. Hence the routing table is minimized. E. Conclusion & future work Networks consist of large sets of resource-constrained nodes. The design of effective, robust, and scalable routing algorithm in these networks is a challenging task. On the other hand, the relatively novel domain of swarm intelligence offers algorithmic design principles, inspired by complex adaptive biological systems that well match the constraints and the challenges of networks. This is the reason, in the last years a number of routing algorithm for networks have been developed based on Swarm Intelligence principles, and, more specifically, taking inspiration from foraging behaviours of ant and bee colonies [9]. In this paper, we have presented a rather extensive survey of these SI-based algorithms for routing in networks. Finally, we have outlined a general methodology which is scientifically sound in evaluating optimized distance between two nodes with minimized routing list. To conclude, we want to sketch some future directions for the field rather than highlighting methodological problems. We strongly believe that we will witness a large diffusion of Swarm Intelligence-based solutions for real-world networks whether it is wired or wireless.
  • 3. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 1, Issue 2 (july-august 2013), PP. 12-14 14 | P a g e REFERENCES [1] Wolfson School of Mechanical and Manufacturing Engineering Loughborough University, Loughborough, Leics LE11 3TU http://www.primetechnologywatch.org.uk (ISBN 1-84402-020- 7) ,2002 [2] http://en.wikipedia.org/wiki/Microelectromechanical_systems [3] Salvatore A. Vittorio “MicroElectroMechanical Systems (MEMS)” oct, 2001 [4] http://blog.electricbricks.com/en/2010/03/giroscopo/ ,1 may,2010 [5] Micromachine Devices, European Study Sees MEMS Market at More Than $34 billion by 02, May 1997, p. 1. [6] http://www.efytimes.com/e1/creativenews.asp?edid=92194 [7] http://en.wikipedia.org/wiki/Total_analysis_system [8] Miko Elwenspoek “Proceeding of Sensor Technology 2001 held in Enschede, The Netherland, 14-15 May 2001” [9] http://www.potomac-laser.com/services/our-capabilities/micro- welding/ [10] http://www.gatewaylaser.com/welding.html