SlideShare una empresa de Scribd logo
1 de 3
Descargar para leer sin conexión
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645
www.ijmer.com 2585 | Page
Mahammad Irfan Shaik1
, Sayeed Yasin2
1
M. Tech, Nimra College of Engineering & Technology, Vijayawada, A.P., India.
2
Asst. Professor, Dept.of CSE, Nimra College of Engineering & Technology, Vijayawada, A.P., India
Abstract: A tree- based wireless sensor network (WSN) is a collection of sensors nodes, such as sink is the root of tree and
leaves are the nodes. Data in such a topology flows from sensor nodes (leaves) to the sink (root) node of the tree. Collection
of data from a set of sensors to an intermediate parent (sink) in a tree network is known as converge-casting. The delivery
time and the data rate are application specific. As an example, in oil and gas refineries the sensor equipment and controllers
need to collect data from all the sensors within a specific deadline for any kind of leakage or failures. Whereas applications
like weather forecasting, under-water observations needs continuous and quick data delivery for analysis, for longer
periods. In this paper our goal is on such applications focusing on fast data streaming from sensor to sink node. The two
optimal approaches for data collection proposed in this paper are – aggregated-data convergecast where packets are
aggregated at each hop, and raw-data convergecast where each data packet travel towards sink node individually. First
method is most suitable where data is highly co-related and objective is to collect maximum sensor reading and second
method is used where the reading of each sensor is equally important.
Keywords: Broadcast, Converge cast, Data collection, WSN.
I. INTRODUCTION
Data collection from a set of sensors to a common sink over a tree-based network is a fundamental traffic pattern in
wireless sensor networks (WSNs). This many-to-one communication paradigm in which data flows from many nodes to a
single node is called as convergecast. One may view convergecast as opposite to multicast or broadcast in which data flows
from a single node to a set of nodes in the network. The following figures shows a simple example that illustrates the
characteristics of a typical broadcast and convergecast. In a broadcast, as shown in Figure 1, node s is the message source
and nodes a, b, and c are expected recipients. Node “a” hears the message directly from s and forwards a copy to nodes b and
c. In case of a convergecast, as shown in Figure 2, nodes a, b, and c each has a message destinedto the sink node s, and a
serves as a relay for b and c.
Once data is collected at the sink node, it can either be recorded and stored for future analysis, or can be processed
immediately to take certain actions depending on application requirements. In a sensor network, data collection can either be
triggered by external sources, such as queries to get a snapshot view of the network, or events as and when they appear, or
can be for the continuous periodic monitoring without any external triggering. In all cases, however, the many-to-one
communication pattern is very common. Depending on application requirements, various objectives can be associated with
data collection. For instance, in disaster early warning applications, such as forest fire detection [1] and gas/oil leaks [2], or
structural damage identification [3], bursty traffic generated by events needs to be delivered to the sink as quickly and as
reliably as possible to prevent catastrophes.
Figure 1: Broadcast
Figure 2: Convergecast
Optimal Converge cast Methods for Tree- Based WSNs
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645
www.ijmer.com 2586 | Page
Particularly under regular, heavy traffic conditions, contention-free medium access control (MAC) protocols, such
as Time Division Multiple Access (TDMA), where the nodes communicate on different time slots to prevent the conflicts,
offer several advantages for data collection as compared to contention-based protocols [4]. They eliminate collisions, idle
listening and overhearing, which are the main sources of energy consumption in wireless communications [5].
II. RELATED WORK
In [6], the authors discussed about the hypothetical limits of data collection capacity. Here the wireless sensor
network is a TDMA based network. In the past, the data collection capacity is based on very large scale random networks,
though most of the sensors are not deployed uniformly and the available sensors will not be as huge as in theory. In [7], the
authors discuss about the improvement of communication performance by using multiple channels. The current multi-
channel protocols are not suitable for sensor networks due to minimum number of available channels and unavoidable time
errors found in such networks. Here a novel tree based multi channel scheme for data collection applications is constructed
that allocates disjoint trees and exploits parallel transmissions among trees. In [8], the authors constructed a distributed
scheduling algorithm for the tree networks that requires at most max(3n
k
– 1,N) time slots for convergecast, where n
k
represents the maximum number of nodes in any sub tree and N represents the number of nodes in network. The Distributed
scheduling algorithm requires at most 3N time slots in any sensor network.
In [9], the authors address the problem of performing the operation of Data Aggregation enhanced
Convergecast(DAC) in an energy and latency efficient manner. By assuming as all the nodes in the sensor network have a
data item and there is an a priori known application dependent data compression factor, the total data is collected. In [10], the
authors describes the contention free Time Division Multiple access scheduling based protocols for collecting data using tree
based routing topologies. By using TDMA method, the nodes can communicate on different slots to prevent interference and
conflicts. Consecutive time slots are grouped into non- overlapping frames. Hence the schedule for each time frame is
repeated when data collection is periodic.
III. PROPOSED WORK
A. Periodic Aggregated Convergecast
Data aggregation is a commonly used technique in sensor networks that can eliminate redundancy and minimize the
number of transmissions, thus saving energy and improving network lifetime. Aggregation can be performed in many ways,
such as by suppressing duplicate messages; using data compression and various packets merging techniques; or taking
advantage of the correlation in the sensor readings. Given the lower bound “Δ(T)” on the schedule length in the absence of
interfering links, we now present a time slot assignment scheme in Algorithm 1, called BFSTIMESLOTASSIGNMENT, that
achieves this bound. In each iteration of the algorithm, an edge e is chosen in the Breadth First Search (BFS) order starting
from any node, and is assigned the minimum time slot that is different from all its adjacent edges respecting interfering
constraints. Note that, since we evaluate the performance of algorithm 1 also for the case when the interfering links are
present, we check for the corresponding constraint in line 4; however, when interference is eliminated this check is always
redundant. The algorithm 1 runs in O(|ET |2) time and minimizes the schedule length when there are no interfering links. All
the interfering links removed, and so the sensor network is scheduled in 3 time slots.
Algorithm 1 BFS-TIMESLOTASSIGNMENT
1. Let T = (V, ET)
2. while ET is not EMPTY do
3. Select edge (e) from ET using Breadth First Search
Manner
4. Allocate minimum time slot t to the selected edge e
5. Move to next edge in ET.
6. end while
B. Raw Data Convergecast
In raw data convergecast, data of each sensor is equally important, therefore aggregation is not desirable. Each
packet is individually scheduled to reach the sink node. The problem of minimizing the scheduling length for raw data
convergecast is proved to be NP-complete problem. Figure 3, shows a basic tree structure where {s, 1, 4}, {s, 2, 5}, {s, 3, 6}
are branches of tree and {1, 4}, {2, 5}, {3, 6} are sub-trees.
Figure 3: Tree Topology
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645
www.ijmer.com 2587 | Page
We can deduce a local time slot allotment algorithm for each sensor node with an objective to schedule parallel
transmissions and allow sink to collect data packets continuously. We assume that sink node knows the number of available
nodes in each top sub-trees. Each sensor node maintains buffer and state of full or empty if it has data packet available or
not. The algorithm for raw data convergecast slot allotment is shown in Algorithm 2.
Algorithm 2 LOCAL-TIMESLOTASSIGNMENT
1. Initialize node[buffer]=FULL
2. Pick a node (N)
3. If (N = Sink) then
Among available sub-tree, select one with largest
number of remaining packets (i).
4. Plan a link ( root(i), S)
5. Else IF ( N != Sink and node[buffer] = EMPTY)
then
6. Select a child (C) at random whose buffer is full
7. Plan a link (C, node)
8. C[buffer]= EMPTY
9. End If
10 End If
In Algorithm 2, lines 3-4 gives scheduling rules between sink and root node of sub trees. A top subtree is eligible to
be elected for transmission if it has at least one packet to be transmitted. If none of the top- subtrees are eligible, the sink
node does not receive any packet during that time slot. Inside each top-subtree, sensor nodes are scheduled according to the
rules in lines 5-8. We define a subtree to be active if there are still packets left in the subtree that are to be relayed. If a
node’s buffer is empty and the subtree rooted at this node is active, then we schedule one of its children at random whose
buffer is not empty.
IV. CONCLUSION
Wireless Sensor Networks (WSNs) consists of very small sensors. These sensors are wirelessly connected to each
other for performing same task collectively such as monitoring weather conditions or specifically parameters like pressure,
temperature, sound and vibrations etc. By using time division multiple access, the nodes communicate on different time slots
in order to prevent conflicts. In order to improve the data collection, the capacity at each sensor node is adjusted whenever
the packet moves from one sensor node to another sensor node. . An optimal convergecast method is proposed for
transmitting the packets with minimum cost for long suited nodes.
REFERENCES
[1] Yu, L.,Wang, N., Meng, X.: Real-time forest fire detection with wireless sensor networks. In: WiCom, vol. 2, pp. 1214–1217 (2005)
[2] Dalbro, M., Eikeland, E., Veld, A.J.i., Gjessing, S., Lande, T.S., Riis, H.K., Sørsen, O.: Wireless sensor networks for off-shore oil
and gas installations. In: SENSORCOMM ’08, pp. 258–263 (2008)
[3] Chintalapudi, K., Fu, T., Paek, J., Kothari, N., Rangwala, S., Caffrey, J., Govindan, R., Johnson, E., Masri, S.: Monitoring civil
structures with a wireless sensor network. IEEE Internet Computing 10(2), 26–34 (2006)
[4] Gandham, S., Zhang, Y., Huang, Q.: Distributed time-optimal scheduling for convergecast in wireless sensor networks. Computer
Networks 52(3), 610–629 (2008)
[5] Demirkol, I., Ersoy, C., Alagoz, F.: Mac protocols for wireless sensor networks: a survey. IEEE Communications Magazine 44(4),
115–121 (2006)
[6] Siyuan Chen, Minsu Huang, Shaojie Tang, Yu Wang, “Capacity of Data Collection in Arbitrary Wireless Sensor Networks”, IEEE
Transaction on Parallel and Distributed Systems, Vol.23, No.1, January 2012.
[7] Yafeng Wu, John A. Stankovic, Tian He and Shan Lin, “Realistic and Efficient Multi – Channel Communications in Wireless
Sensor Networks”, University of Minnesota.
[8] Yiin Zhang b, Qingfeng Huang , Shashidhar Gandham, “Distributed time-optimal scheduling for convergecast in Wireless Sensor
Networks”, 7 November 2007.
[9] S.Upadhyayula, S.K.S.Gupta, “Spanning Tree based algorithms for low latency and energy efficient data aggregation enhanced
convergecast,(DAC) in Wireless sensor Networks”, Arizona state University, 22 April 2006.
[10] Ozlem Durmaz Incell, Amitabha Ghosh and Bhaskar Krishnamachari, “Scheduling Algorithms for Tree-Based Data Collection in
Wireless Sensor Networks”.

Más contenido relacionado

La actualidad más candente

Paper id 35201569
Paper id 35201569Paper id 35201569
Paper id 35201569IJRAT
 
Multilevel priority packet scheduling scheme for wireless networks
Multilevel priority packet scheduling scheme for wireless networksMultilevel priority packet scheduling scheme for wireless networks
Multilevel priority packet scheduling scheme for wireless networksijdpsjournal
 
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACH
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACHBased on Heterogeneity and Electing Probability of Nodes Improvement in LEACH
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACHijsrd.com
 
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
 
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...Fast Data Collection with Interference and Life Time in Tree Based Wireless S...
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...IJMER
 
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORK
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORKA PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORK
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORKIJCNCJournal
 
Wireless Sensor Network over High Altitude Platform
Wireless Sensor Network over High Altitude PlatformWireless Sensor Network over High Altitude Platform
Wireless Sensor Network over High Altitude PlatformTELKOMNIKA JOURNAL
 
A seminar report on data aggregation in wireless sensor networks
A seminar report on data aggregation in wireless sensor networksA seminar report on data aggregation in wireless sensor networks
A seminar report on data aggregation in wireless sensor networkspraveen369
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...Editor IJCATR
 
Performance evaluation of energy
Performance evaluation of energyPerformance evaluation of energy
Performance evaluation of energyijp2p
 
Performance evaluation of variants of particle swarm optimization algorithms ...
Performance evaluation of variants of particle swarm optimization algorithms ...Performance evaluation of variants of particle swarm optimization algorithms ...
Performance evaluation of variants of particle swarm optimization algorithms ...Aayush Gupta
 
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...TELKOMNIKA JOURNAL
 

La actualidad más candente (17)

Paper id 35201569
Paper id 35201569Paper id 35201569
Paper id 35201569
 
Ed33777782
Ed33777782Ed33777782
Ed33777782
 
I04503075078
I04503075078I04503075078
I04503075078
 
E035425030
E035425030E035425030
E035425030
 
DESIGN AND IMPLEMENTATION OF ADVANCED MULTILEVEL PRIORITY PACKET SCHEDULING S...
DESIGN AND IMPLEMENTATION OF ADVANCED MULTILEVEL PRIORITY PACKET SCHEDULING S...DESIGN AND IMPLEMENTATION OF ADVANCED MULTILEVEL PRIORITY PACKET SCHEDULING S...
DESIGN AND IMPLEMENTATION OF ADVANCED MULTILEVEL PRIORITY PACKET SCHEDULING S...
 
Multilevel priority packet scheduling scheme for wireless networks
Multilevel priority packet scheduling scheme for wireless networksMultilevel priority packet scheduling scheme for wireless networks
Multilevel priority packet scheduling scheme for wireless networks
 
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACH
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACHBased on Heterogeneity and Electing Probability of Nodes Improvement in LEACH
Based on Heterogeneity and Electing Probability of Nodes Improvement in LEACH
 
eeca
eecaeeca
eeca
 
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)
 
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...Fast Data Collection with Interference and Life Time in Tree Based Wireless S...
Fast Data Collection with Interference and Life Time in Tree Based Wireless S...
 
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORK
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORKA PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORK
A PROPOSAL FOR IMPROVE THE LIFETIME OF WIRELESS SENSOR NETWORK
 
Wireless Sensor Network over High Altitude Platform
Wireless Sensor Network over High Altitude PlatformWireless Sensor Network over High Altitude Platform
Wireless Sensor Network over High Altitude Platform
 
A seminar report on data aggregation in wireless sensor networks
A seminar report on data aggregation in wireless sensor networksA seminar report on data aggregation in wireless sensor networks
A seminar report on data aggregation in wireless sensor networks
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
 
Performance evaluation of energy
Performance evaluation of energyPerformance evaluation of energy
Performance evaluation of energy
 
Performance evaluation of variants of particle swarm optimization algorithms ...
Performance evaluation of variants of particle swarm optimization algorithms ...Performance evaluation of variants of particle swarm optimization algorithms ...
Performance evaluation of variants of particle swarm optimization algorithms ...
 
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...
Energy-Efficient Compressive Data Gathering Utilizing Virtual Multi-Input Mul...
 

Destacado

Bf32785787
Bf32785787Bf32785787
Bf32785787IJMER
 
Ae32626632
Ae32626632Ae32626632
Ae32626632IJMER
 
Resolution of human arm redundancy in point tasks by synthesizing two criteria
Resolution of human arm redundancy in point tasks by  synthesizing two criteriaResolution of human arm redundancy in point tasks by  synthesizing two criteria
Resolution of human arm redundancy in point tasks by synthesizing two criteriaIJMER
 
At31119122
At31119122At31119122
At31119122IJMER
 
Making Trust Relationship For Peer To Peer System With Secure Protocol
Making Trust Relationship For Peer To Peer System With Secure  ProtocolMaking Trust Relationship For Peer To Peer System With Secure  Protocol
Making Trust Relationship For Peer To Peer System With Secure ProtocolIJMER
 
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...IJMER
 
Study the Situation of Housing Social Quantitative and Qualitative Indicators...
Study the Situation of Housing Social Quantitative and Qualitative Indicators...Study the Situation of Housing Social Quantitative and Qualitative Indicators...
Study the Situation of Housing Social Quantitative and Qualitative Indicators...IJMER
 
Be32779784
Be32779784Be32779784
Be32779784IJMER
 
F04013437
F04013437F04013437
F04013437IJMER
 
Dw31595598
Dw31595598Dw31595598
Dw31595598IJMER
 
An Efficient PDP Scheme for Distributed Cloud Storage
An Efficient PDP Scheme for Distributed Cloud StorageAn Efficient PDP Scheme for Distributed Cloud Storage
An Efficient PDP Scheme for Distributed Cloud StorageIJMER
 
Helicopter Flapping Under Dynamic Stall
Helicopter Flapping Under Dynamic StallHelicopter Flapping Under Dynamic Stall
Helicopter Flapping Under Dynamic StallIJMER
 
A Novel Method for Blocking Misbehaving Users over Anonymizing Networks
A Novel Method for Blocking Misbehaving Users over Anonymizing NetworksA Novel Method for Blocking Misbehaving Users over Anonymizing Networks
A Novel Method for Blocking Misbehaving Users over Anonymizing NetworksIJMER
 
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...IJMER
 
Fatigue Performance in Grinding and Turning: An Overview
Fatigue Performance in Grinding and Turning: An OverviewFatigue Performance in Grinding and Turning: An Overview
Fatigue Performance in Grinding and Turning: An OverviewIJMER
 
Prediction of groundwater quality in Selected Locations in Imo State
Prediction of groundwater quality in Selected Locations in  Imo StatePrediction of groundwater quality in Selected Locations in  Imo State
Prediction of groundwater quality in Selected Locations in Imo StateIJMER
 
Analyzing the indicators walkability of cities, in order to improving urban ...
Analyzing the indicators walkability of cities, in order to  improving urban ...Analyzing the indicators walkability of cities, in order to  improving urban ...
Analyzing the indicators walkability of cities, in order to improving urban ...IJMER
 
A Review of Issues in Environmentally Conscious Manufacturing and Product Re...
A Review of Issues in Environmentally Conscious Manufacturing  and Product Re...A Review of Issues in Environmentally Conscious Manufacturing  and Product Re...
A Review of Issues in Environmentally Conscious Manufacturing and Product Re...IJMER
 
Au2640944101
Au2640944101Au2640944101
Au2640944101IJMER
 
Big Bang–Big Crunch Optimization Algorithm for the Maximum Power Point Track...
Big Bang–Big Crunch Optimization Algorithm for the Maximum  Power Point Track...Big Bang–Big Crunch Optimization Algorithm for the Maximum  Power Point Track...
Big Bang–Big Crunch Optimization Algorithm for the Maximum Power Point Track...IJMER
 

Destacado (20)

Bf32785787
Bf32785787Bf32785787
Bf32785787
 
Ae32626632
Ae32626632Ae32626632
Ae32626632
 
Resolution of human arm redundancy in point tasks by synthesizing two criteria
Resolution of human arm redundancy in point tasks by  synthesizing two criteriaResolution of human arm redundancy in point tasks by  synthesizing two criteria
Resolution of human arm redundancy in point tasks by synthesizing two criteria
 
At31119122
At31119122At31119122
At31119122
 
Making Trust Relationship For Peer To Peer System With Secure Protocol
Making Trust Relationship For Peer To Peer System With Secure  ProtocolMaking Trust Relationship For Peer To Peer System With Secure  Protocol
Making Trust Relationship For Peer To Peer System With Secure Protocol
 
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
 
Study the Situation of Housing Social Quantitative and Qualitative Indicators...
Study the Situation of Housing Social Quantitative and Qualitative Indicators...Study the Situation of Housing Social Quantitative and Qualitative Indicators...
Study the Situation of Housing Social Quantitative and Qualitative Indicators...
 
Be32779784
Be32779784Be32779784
Be32779784
 
F04013437
F04013437F04013437
F04013437
 
Dw31595598
Dw31595598Dw31595598
Dw31595598
 
An Efficient PDP Scheme for Distributed Cloud Storage
An Efficient PDP Scheme for Distributed Cloud StorageAn Efficient PDP Scheme for Distributed Cloud Storage
An Efficient PDP Scheme for Distributed Cloud Storage
 
Helicopter Flapping Under Dynamic Stall
Helicopter Flapping Under Dynamic StallHelicopter Flapping Under Dynamic Stall
Helicopter Flapping Under Dynamic Stall
 
A Novel Method for Blocking Misbehaving Users over Anonymizing Networks
A Novel Method for Blocking Misbehaving Users over Anonymizing NetworksA Novel Method for Blocking Misbehaving Users over Anonymizing Networks
A Novel Method for Blocking Misbehaving Users over Anonymizing Networks
 
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...
X-Ray Diffraction Analysis of the Microscopies of Some Corrosion-Protective B...
 
Fatigue Performance in Grinding and Turning: An Overview
Fatigue Performance in Grinding and Turning: An OverviewFatigue Performance in Grinding and Turning: An Overview
Fatigue Performance in Grinding and Turning: An Overview
 
Prediction of groundwater quality in Selected Locations in Imo State
Prediction of groundwater quality in Selected Locations in  Imo StatePrediction of groundwater quality in Selected Locations in  Imo State
Prediction of groundwater quality in Selected Locations in Imo State
 
Analyzing the indicators walkability of cities, in order to improving urban ...
Analyzing the indicators walkability of cities, in order to  improving urban ...Analyzing the indicators walkability of cities, in order to  improving urban ...
Analyzing the indicators walkability of cities, in order to improving urban ...
 
A Review of Issues in Environmentally Conscious Manufacturing and Product Re...
A Review of Issues in Environmentally Conscious Manufacturing  and Product Re...A Review of Issues in Environmentally Conscious Manufacturing  and Product Re...
A Review of Issues in Environmentally Conscious Manufacturing and Product Re...
 
Au2640944101
Au2640944101Au2640944101
Au2640944101
 
Big Bang–Big Crunch Optimization Algorithm for the Maximum Power Point Track...
Big Bang–Big Crunch Optimization Algorithm for the Maximum  Power Point Track...Big Bang–Big Crunch Optimization Algorithm for the Maximum  Power Point Track...
Big Bang–Big Crunch Optimization Algorithm for the Maximum Power Point Track...
 

Similar a Optimal Converge cast Methods for Tree- Based WSNs

Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...
Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...
Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...IJECEIAES
 
An efficient ant optimized multipath routing in wireless sensor network
An efficient ant optimized multipath routing in wireless sensor networkAn efficient ant optimized multipath routing in wireless sensor network
An efficient ant optimized multipath routing in wireless sensor networkEditor Jacotech
 
A_Fair_Multiple-Slot_Assignment_Protocol_for_Sched
A_Fair_Multiple-Slot_Assignment_Protocol_for_SchedA_Fair_Multiple-Slot_Assignment_Protocol_for_Sched
A_Fair_Multiple-Slot_Assignment_Protocol_for_SchedDebesh Sadhukhan
 
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
 
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ijasuc
 
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ijasuc
 
Routing for Sensors with Parameters as used in Agricultural Field
Routing for Sensors with Parameters as used in Agricultural FieldRouting for Sensors with Parameters as used in Agricultural Field
Routing for Sensors with Parameters as used in Agricultural FieldIDES Editor
 
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...IJCNCJournal
 
Priority Based Multi Sen Car Technique in WSN
Priority Based Multi Sen Car Technique in WSNPriority Based Multi Sen Car Technique in WSN
Priority Based Multi Sen Car Technique in WSNijcnes
 
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...INFOGAIN PUBLICATION
 
Energy Conservation in Wireless Sensor Networks Using Cluster-Based Approach
Energy Conservation in Wireless Sensor Networks Using Cluster-Based ApproachEnergy Conservation in Wireless Sensor Networks Using Cluster-Based Approach
Energy Conservation in Wireless Sensor Networks Using Cluster-Based ApproachIJRES Journal
 
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...IJMTST Journal
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...Editor IJCATR
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...Editor IJCATR
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...Editor IJCATR
 
Power saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniquePower saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniqueeSAT Publishing House
 
In network aggregation using efficient routing techniques for event driven se...
In network aggregation using efficient routing techniques for event driven se...In network aggregation using efficient routing techniques for event driven se...
In network aggregation using efficient routing techniques for event driven se...IJCNCJournal
 
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor Networks
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor NetworksA New Energy-Efficient Routing Protocol for Wireless Body Area Sensor Networks
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor NetworksLeila_maleke
 

Similar a Optimal Converge cast Methods for Tree- Based WSNs (20)

Fa36942946
Fa36942946Fa36942946
Fa36942946
 
Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...
Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...
Evaluation of Energy Consumption using Receiver–Centric MAC Protocol in Wirel...
 
An efficient ant optimized multipath routing in wireless sensor network
An efficient ant optimized multipath routing in wireless sensor networkAn efficient ant optimized multipath routing in wireless sensor network
An efficient ant optimized multipath routing in wireless sensor network
 
A_Fair_Multiple-Slot_Assignment_Protocol_for_Sched
A_Fair_Multiple-Slot_Assignment_Protocol_for_SchedA_Fair_Multiple-Slot_Assignment_Protocol_for_Sched
A_Fair_Multiple-Slot_Assignment_Protocol_for_Sched
 
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
 
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
 
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
ENERGY EFFICIENCY OF MIMO COOPERATIVE NETWORKS WITH ENERGY HARVESTING SENSOR ...
 
Routing for Sensors with Parameters as used in Agricultural Field
Routing for Sensors with Parameters as used in Agricultural FieldRouting for Sensors with Parameters as used in Agricultural Field
Routing for Sensors with Parameters as used in Agricultural Field
 
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...
PERFORMANCE ANALYSIS OF CHANNEL ACCESS MODEL FOR MAC IN RANDOMLY DISTRIBUTED ...
 
Priority Based Multi Sen Car Technique in WSN
Priority Based Multi Sen Car Technique in WSNPriority Based Multi Sen Car Technique in WSN
Priority Based Multi Sen Car Technique in WSN
 
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...
Ijaems apr-2016-22TDMA- MAC Protocol based Energy- Potency for Periodic Sensi...
 
Energy Conservation in Wireless Sensor Networks Using Cluster-Based Approach
Energy Conservation in Wireless Sensor Networks Using Cluster-Based ApproachEnergy Conservation in Wireless Sensor Networks Using Cluster-Based Approach
Energy Conservation in Wireless Sensor Networks Using Cluster-Based Approach
 
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...
 
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...
An Energy-Efficient Min-Max Optimization with RSA Security in Wireless Sensor...
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
 
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
An Improved Energy Efficient Wireless Sensor Networks Through Clustering In C...
 
Power saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniquePower saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling technique
 
In network aggregation using efficient routing techniques for event driven se...
In network aggregation using efficient routing techniques for event driven se...In network aggregation using efficient routing techniques for event driven se...
In network aggregation using efficient routing techniques for event driven se...
 
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor Networks
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor NetworksA New Energy-Efficient Routing Protocol for Wireless Body Area Sensor Networks
A New Energy-Efficient Routing Protocol for Wireless Body Area Sensor Networks
 

Más de IJMER

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...IJMER
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingIJMER
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreIJMER
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)IJMER
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...IJMER
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...IJMER
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...IJMER
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...IJMER
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationIJMER
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless BicycleIJMER
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIJMER
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemIJMER
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesIJMER
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...IJMER
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningIJMER
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessIJMER
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersIJMER
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And AuditIJMER
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLIJMER
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyIJMER
 

Más de IJMER (20)

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed Delinting
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja Fibre
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless Bicycle
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise Applications
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation System
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological Spaces
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine Learning
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And Audit
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDL
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One Prey
 

Último

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Optimal Converge cast Methods for Tree- Based WSNs

  • 1. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645 www.ijmer.com 2585 | Page Mahammad Irfan Shaik1 , Sayeed Yasin2 1 M. Tech, Nimra College of Engineering & Technology, Vijayawada, A.P., India. 2 Asst. Professor, Dept.of CSE, Nimra College of Engineering & Technology, Vijayawada, A.P., India Abstract: A tree- based wireless sensor network (WSN) is a collection of sensors nodes, such as sink is the root of tree and leaves are the nodes. Data in such a topology flows from sensor nodes (leaves) to the sink (root) node of the tree. Collection of data from a set of sensors to an intermediate parent (sink) in a tree network is known as converge-casting. The delivery time and the data rate are application specific. As an example, in oil and gas refineries the sensor equipment and controllers need to collect data from all the sensors within a specific deadline for any kind of leakage or failures. Whereas applications like weather forecasting, under-water observations needs continuous and quick data delivery for analysis, for longer periods. In this paper our goal is on such applications focusing on fast data streaming from sensor to sink node. The two optimal approaches for data collection proposed in this paper are – aggregated-data convergecast where packets are aggregated at each hop, and raw-data convergecast where each data packet travel towards sink node individually. First method is most suitable where data is highly co-related and objective is to collect maximum sensor reading and second method is used where the reading of each sensor is equally important. Keywords: Broadcast, Converge cast, Data collection, WSN. I. INTRODUCTION Data collection from a set of sensors to a common sink over a tree-based network is a fundamental traffic pattern in wireless sensor networks (WSNs). This many-to-one communication paradigm in which data flows from many nodes to a single node is called as convergecast. One may view convergecast as opposite to multicast or broadcast in which data flows from a single node to a set of nodes in the network. The following figures shows a simple example that illustrates the characteristics of a typical broadcast and convergecast. In a broadcast, as shown in Figure 1, node s is the message source and nodes a, b, and c are expected recipients. Node “a” hears the message directly from s and forwards a copy to nodes b and c. In case of a convergecast, as shown in Figure 2, nodes a, b, and c each has a message destinedto the sink node s, and a serves as a relay for b and c. Once data is collected at the sink node, it can either be recorded and stored for future analysis, or can be processed immediately to take certain actions depending on application requirements. In a sensor network, data collection can either be triggered by external sources, such as queries to get a snapshot view of the network, or events as and when they appear, or can be for the continuous periodic monitoring without any external triggering. In all cases, however, the many-to-one communication pattern is very common. Depending on application requirements, various objectives can be associated with data collection. For instance, in disaster early warning applications, such as forest fire detection [1] and gas/oil leaks [2], or structural damage identification [3], bursty traffic generated by events needs to be delivered to the sink as quickly and as reliably as possible to prevent catastrophes. Figure 1: Broadcast Figure 2: Convergecast Optimal Converge cast Methods for Tree- Based WSNs
  • 2. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645 www.ijmer.com 2586 | Page Particularly under regular, heavy traffic conditions, contention-free medium access control (MAC) protocols, such as Time Division Multiple Access (TDMA), where the nodes communicate on different time slots to prevent the conflicts, offer several advantages for data collection as compared to contention-based protocols [4]. They eliminate collisions, idle listening and overhearing, which are the main sources of energy consumption in wireless communications [5]. II. RELATED WORK In [6], the authors discussed about the hypothetical limits of data collection capacity. Here the wireless sensor network is a TDMA based network. In the past, the data collection capacity is based on very large scale random networks, though most of the sensors are not deployed uniformly and the available sensors will not be as huge as in theory. In [7], the authors discuss about the improvement of communication performance by using multiple channels. The current multi- channel protocols are not suitable for sensor networks due to minimum number of available channels and unavoidable time errors found in such networks. Here a novel tree based multi channel scheme for data collection applications is constructed that allocates disjoint trees and exploits parallel transmissions among trees. In [8], the authors constructed a distributed scheduling algorithm for the tree networks that requires at most max(3n k – 1,N) time slots for convergecast, where n k represents the maximum number of nodes in any sub tree and N represents the number of nodes in network. The Distributed scheduling algorithm requires at most 3N time slots in any sensor network. In [9], the authors address the problem of performing the operation of Data Aggregation enhanced Convergecast(DAC) in an energy and latency efficient manner. By assuming as all the nodes in the sensor network have a data item and there is an a priori known application dependent data compression factor, the total data is collected. In [10], the authors describes the contention free Time Division Multiple access scheduling based protocols for collecting data using tree based routing topologies. By using TDMA method, the nodes can communicate on different slots to prevent interference and conflicts. Consecutive time slots are grouped into non- overlapping frames. Hence the schedule for each time frame is repeated when data collection is periodic. III. PROPOSED WORK A. Periodic Aggregated Convergecast Data aggregation is a commonly used technique in sensor networks that can eliminate redundancy and minimize the number of transmissions, thus saving energy and improving network lifetime. Aggregation can be performed in many ways, such as by suppressing duplicate messages; using data compression and various packets merging techniques; or taking advantage of the correlation in the sensor readings. Given the lower bound “Δ(T)” on the schedule length in the absence of interfering links, we now present a time slot assignment scheme in Algorithm 1, called BFSTIMESLOTASSIGNMENT, that achieves this bound. In each iteration of the algorithm, an edge e is chosen in the Breadth First Search (BFS) order starting from any node, and is assigned the minimum time slot that is different from all its adjacent edges respecting interfering constraints. Note that, since we evaluate the performance of algorithm 1 also for the case when the interfering links are present, we check for the corresponding constraint in line 4; however, when interference is eliminated this check is always redundant. The algorithm 1 runs in O(|ET |2) time and minimizes the schedule length when there are no interfering links. All the interfering links removed, and so the sensor network is scheduled in 3 time slots. Algorithm 1 BFS-TIMESLOTASSIGNMENT 1. Let T = (V, ET) 2. while ET is not EMPTY do 3. Select edge (e) from ET using Breadth First Search Manner 4. Allocate minimum time slot t to the selected edge e 5. Move to next edge in ET. 6. end while B. Raw Data Convergecast In raw data convergecast, data of each sensor is equally important, therefore aggregation is not desirable. Each packet is individually scheduled to reach the sink node. The problem of minimizing the scheduling length for raw data convergecast is proved to be NP-complete problem. Figure 3, shows a basic tree structure where {s, 1, 4}, {s, 2, 5}, {s, 3, 6} are branches of tree and {1, 4}, {2, 5}, {3, 6} are sub-trees. Figure 3: Tree Topology
  • 3. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2585-2587 ISSN: 2249-6645 www.ijmer.com 2587 | Page We can deduce a local time slot allotment algorithm for each sensor node with an objective to schedule parallel transmissions and allow sink to collect data packets continuously. We assume that sink node knows the number of available nodes in each top sub-trees. Each sensor node maintains buffer and state of full or empty if it has data packet available or not. The algorithm for raw data convergecast slot allotment is shown in Algorithm 2. Algorithm 2 LOCAL-TIMESLOTASSIGNMENT 1. Initialize node[buffer]=FULL 2. Pick a node (N) 3. If (N = Sink) then Among available sub-tree, select one with largest number of remaining packets (i). 4. Plan a link ( root(i), S) 5. Else IF ( N != Sink and node[buffer] = EMPTY) then 6. Select a child (C) at random whose buffer is full 7. Plan a link (C, node) 8. C[buffer]= EMPTY 9. End If 10 End If In Algorithm 2, lines 3-4 gives scheduling rules between sink and root node of sub trees. A top subtree is eligible to be elected for transmission if it has at least one packet to be transmitted. If none of the top- subtrees are eligible, the sink node does not receive any packet during that time slot. Inside each top-subtree, sensor nodes are scheduled according to the rules in lines 5-8. We define a subtree to be active if there are still packets left in the subtree that are to be relayed. If a node’s buffer is empty and the subtree rooted at this node is active, then we schedule one of its children at random whose buffer is not empty. IV. CONCLUSION Wireless Sensor Networks (WSNs) consists of very small sensors. These sensors are wirelessly connected to each other for performing same task collectively such as monitoring weather conditions or specifically parameters like pressure, temperature, sound and vibrations etc. By using time division multiple access, the nodes communicate on different time slots in order to prevent conflicts. In order to improve the data collection, the capacity at each sensor node is adjusted whenever the packet moves from one sensor node to another sensor node. . An optimal convergecast method is proposed for transmitting the packets with minimum cost for long suited nodes. REFERENCES [1] Yu, L.,Wang, N., Meng, X.: Real-time forest fire detection with wireless sensor networks. In: WiCom, vol. 2, pp. 1214–1217 (2005) [2] Dalbro, M., Eikeland, E., Veld, A.J.i., Gjessing, S., Lande, T.S., Riis, H.K., Sørsen, O.: Wireless sensor networks for off-shore oil and gas installations. In: SENSORCOMM ’08, pp. 258–263 (2008) [3] Chintalapudi, K., Fu, T., Paek, J., Kothari, N., Rangwala, S., Caffrey, J., Govindan, R., Johnson, E., Masri, S.: Monitoring civil structures with a wireless sensor network. IEEE Internet Computing 10(2), 26–34 (2006) [4] Gandham, S., Zhang, Y., Huang, Q.: Distributed time-optimal scheduling for convergecast in wireless sensor networks. Computer Networks 52(3), 610–629 (2008) [5] Demirkol, I., Ersoy, C., Alagoz, F.: Mac protocols for wireless sensor networks: a survey. IEEE Communications Magazine 44(4), 115–121 (2006) [6] Siyuan Chen, Minsu Huang, Shaojie Tang, Yu Wang, “Capacity of Data Collection in Arbitrary Wireless Sensor Networks”, IEEE Transaction on Parallel and Distributed Systems, Vol.23, No.1, January 2012. [7] Yafeng Wu, John A. Stankovic, Tian He and Shan Lin, “Realistic and Efficient Multi – Channel Communications in Wireless Sensor Networks”, University of Minnesota. [8] Yiin Zhang b, Qingfeng Huang , Shashidhar Gandham, “Distributed time-optimal scheduling for convergecast in Wireless Sensor Networks”, 7 November 2007. [9] S.Upadhyayula, S.K.S.Gupta, “Spanning Tree based algorithms for low latency and energy efficient data aggregation enhanced convergecast,(DAC) in Wireless sensor Networks”, Arizona state University, 22 April 2006. [10] Ozlem Durmaz Incell, Amitabha Ghosh and Bhaskar Krishnamachari, “Scheduling Algorithms for Tree-Based Data Collection in Wireless Sensor Networks”.