SlideShare a Scribd company logo
1 of 5
Download to read offline
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, No 5, May 2013
1909
www.ijarcet.org

Abstract— Wireless Sensor Network is a resource constraint
network, in which all sensor nodes have limited resources. In
order to save resources and energy data must be aggregated to
reduce the amount of traffic in the network. Data aggregation
has to done with the help of clustering scheme. Clusters reduce
the localized traffic by means of grouping sensor nodes and
compress the data together and then transmit only compact
data to base station. Therefore optimal cluster head selection is
important to maximize the lifetime of the network by utilizing
the limited energy in an efficient manner. Various algorithms
are proposed for the selection of cluster head for maximizing
the network life time. This paper is focused on the survey of
such algorithms.
Index Terms— Cluster, Hierarchical Cluster, Cluster Head
Selection, Energy factor.
I. INTRODUCTION
Wireless Sensor Network [1],[2],[3] (WSN) consists of
autonomous sensors to monitor physical or ecological
conditions, such as temperature, sound, pressure, etc. and to
cooperatively bypass their data through the network to a main
location. The development of wireless sensor networks was
motivated by military applications such as battlefield
supervision; today such networks are used in many
manufacturing and consumer applications, such as process
monitoring and control, health monitoring [4], etc.
Sensor nodes can be imagined as small computers,
extremely basic in terms of their interfaces and their
components. They usually consist of a processing unit with
limited computational power and limited memory. Every
sensor node has a power source typically in the form of a
battery. The base stations may have one or more components
of the WSN with infinite computational, energy and
communication resources. They act as a gateway between
sensor nodes and the end user as they typically forward data
from the WSN on to a server.
Manuscript received April, 2013.
Srie Vidhya Janani.E, Department of Computer Science and
Engineering, Anna University, Regional Centre, Madurai, India.
+91-9894351450
Ganeshkumar.P, Department of Electronics and Communication
Engineering, K.L.N.College of Engineering, Madurai, India
Vasantha Suganthi.G, Department of Computer Science and
Engineering, Anna University, Regional Centre, Madurai, India.
+91-8056814929
Sultan.M, Department of Computer Science and Engineering,
St. Michael College of Engineering and Technology, Sivagangai, India,
+91-9944394001,
Kaleeswaran.D, Department of Computer Science and Engineering,
St. Michael College of Engineering and Technology, Sivagangai, India,
+91-9487682176,
II. CLUSTERING IN WSN
Hierarchical clustering is the efficient way [5] to utilize
the energy in an efficient manner. Grouping of sensors that
performing similar tasks are known as clusters. In
hierarchical cluster, it contains Cluster Head, Regular Nodes
and Base Station. After the cluster head is selected, it collects
the data from all of its member nodes and aggregates it in
order to eliminate the redundancy. Thus it limits the amount
of data transmission to Base Station, hence remaining energy
level is increased and network lifetime is maximized. There
are several key attributes [6] which must be carefully
considered, while designing the clusters in WSN:
A. Clustering Parameters
1) Number of Clusters
It may be varied according to the CH selection algorithms.
In some cases this count will be the predestined one.
2) Intra-cluster Communication
Communication between the regular node and CH may be
one-hop communication or multi-hop communication.
3) Nodes and CH Mobility
Cluster formation is dynamically changed in the case of
sensor nodes are in mobility.
4) Node Type and Roles
Nodes may be in homogeneous or heterogeneous nature. In
homogeneous, all sensor nodes have same capabilities such
as same energy level, configurations. In heterogeneous,
nodes are varied in configurations.
5) Cluster Head Selection
CHs are elected from the deployed nodes based on the
criteria such as residual energy, connectivity, communication
cost and mobility.CH selection may be in deterministic or
probalistic manner.
6) Multiple Levels
In very large networks, multi level clustering approach is
used to achieve better energy distribution.
7) Overlapping
Most of the protocols do not support for overlapping of
different clusters.
A Survey on Algorithms for Cluster Head
Selection in WSN
Srie Vidhya Janani. E, Ganeshkumar.P, Vasantha Suganthi.G, Sultan.M, Kaleeswaran. D
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, No 5, May 2013
www.ijarcet.org
1910
B. Issues to be Considered in Clustering
To create an organizational structure among sensor nodes
in WSN, it has the ability to deploy them in an ad hoc
manner, as it is not feasible to organize these nodes into
groups‘ pre -deployment. For this reason, there has been an
large amount of research in ways of creating these
organizational structures(or clusters).The clustering
phenomenon, plays an important role in not just organization
of the network, but can dramatically affect network
performance. There are several key limitations in WSNs, that
clustering schemes must consider.
1) Limited Energy
Unlike energetic designs, wireless sensor nodes are
―off-grid‖, meaning that they have limited energy storage and
the efficient use of this energy will be vital in determining the
range of suitable applications for these networks. The limited
energy in sensor nodes must be considered as proper
clustering can reduce the overall energy usage in a network.
2) Network Lifetime:
The energy limitation on nodes results in a limited
network lifetime for nodes in a network. Proper clustering
should attempt to reduce the energy usage, and hereby
increase network lifetime.
3) Limited Abilities:
The small physical size and small amount of stored energy
in a sensor node limit many abilities of nodes in terms of
processing and communication abilities. A good clustering
algorithm should make use of shared resources within an
organizational structure, while taking into account the
limitation on individual node abilities.
4) Application Dependency:
Often a given application will heavily rely on cluster
organization. When designing a clustering algorithm,
application robustness must be considered as a good
clustering algorithm should be able to adapt to a variety of
application requirements.
III. CLUSTERING ALGORITHMS BASED ON WITHOUT ENERGY
CONSIDERATION
A. LEACH Protocol [Low Energy Adaptive Clustering
Hierarchy]
LEACH protocol organizes the nodes by
themselves. Regular nodes in cluster send data to Cluster
Head (CH). Cluster Head aggregates the data and sends to
base Station. In LEACH [7] Cluster Head Selection is based
on the desired percentage of CHs for the network and number
of times the node has been a CH so far. Each node should
select a random number between the interval 0 &1. If the
generated random number is less than threshold then the node
becomes a CH for current round. Threshold is obtained by
using the following formula:
T(n) = { P/1-P*(r mod 1/P) , if n ε G
Where, P is the desired percentage of clusters; r
denotes the current round; G denotes set of nodes that have
not been CHs in the last 1/P rounds. Cluster Head Selection,
Cluster Formation and Data Communication are taken place
at a time instant is known as rounds. Each round has two
phases: Set-up Phase & Steady State Phase. During Set-up
Phase Cluster Head announces its election by sending
advertisement message to all other nodes in order to form the
cluster. During Steady State Phase each CH creates TDMA
schedule for their members to transmit their data and it also
tells when it to transmit. Nodes can send data during their
allocated period. Radio of regular nodes is turned off until
their scheduled time reached. Thus the energy is saved.
Finally CH aggregates all data and sends to Base Station.
Problems in Leach are i) CH selection is random and it does
not consider about energy consumption of nodes. Therefore
there may be a chance for CH will die earlier than other
nodes. When CH dies, the cluster will become useless. ii) It
cannot cover large area and CHs are not uniformly
distributed. iii) It cannot be able to address the schedulability
and predictability measures.
B. Adaptive Contention Window Based Cluster Head
Election Mechanism [ACW]
In this [8] all sensor nodes randomly pick up a back off
value from the contention window based on uniform
distribution. The node which has minimal back off value can
become Cluster Head. Back off means, during transmission if
the node detects an idle channel, it transmits a frame. If
collision occurs, then the node has to wait for a random
amount of time and starts all over again. By using this
mechanism, cluster head distribution becomes uniform.
Probability of Cluster Head Selection is high compared to
LEACH. This also suffers by the same problem of LEACH
because this mechanism also not considers the energy
consumption of nodes. If the initial length of the contention
window is not properly set, then it leads to lower probability
of success in the selection of Cluster Head. By this algorithm,
it is possible to select the CH better than LEACH but this
mechanism does not focus on predictability.
C. Clustering and In Network Processing Routing
Algorithm: CIPRA
In this, cluster formation and routing tree construction are
carried out simultaneously so that they reduce their energy
required to organize a multi-hop routing tree of sensed data.
Here data aggregation is performed by each and every node.
Thus it reduces the amount of transmission. Cluster Head
Selection is based on the total number of sensors and its
unique ID. Cluster Head is obtained by using the formula i
mod N for every round. If other nodes are not able to obtain
the elected message, then they have to rerun the CH selection.
Once CH is selected, routing tree is constructed then data
transmission will take place [9].Here each node consumes an
amount of energy to receive message from several tentative
parent nodes. In CIPRA, sensor nodes can be able to
dynamically adjust radio transmission energy in order to
adapt the topology changes. But CIPRA technique can select
only one CH at a time to reduce energy requirement. To
select multiple CHs, residual energy should be considered.
Even CIPRA can adopt the dynamic changes; it is very
difficult to predict the life time bounds of network.
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, No 5, May 2013
1911
www.ijarcet.org
IV. CLUSTERING ALGORITHMS BASED ON ENERGY
CONSIDERATION
A. Energy Residue Aware (ERA) Algorithm
In this algorithm, CH election is same as that of LEACH.
But it differs from cluster formation that is association
between cluster head and other nodes. After the CH is elected
according to LEACH, CH estimates their residual energy
[10] and broadcast this information to all other nodes.
Residual energy of CH is calculated by subtracting the
remaining energy of CH in current round from energy
requirement for transmitting data to base station. All other
regular nodes calculate their residual energy by subtracting
their remaining energy in current round from energy
requirement for transferring data to every CH. After this they
associate with one CH according to the sum of maximum
energy residue path. Thus it maximizes the network lifetime
by balancing the energy consumption of the network. In
LEACH, regular nodes choose their cluster head according to
shortest distance; due to this there will be a chance for dying
CH in earlier. Compared to LEACH, ERA prolongs network
life time by balancing the energy consumption of nodes. ERA
ensures optimal CH selection, prolongs network life time but
it does not focus on predictability of network.
B. LEACH – C Algorithm [LEACH – Centralized]
In this, Cluster Head Selection depends on the current
location of the node and residual energy [11]. During setup
phase, each node sends its current location and residual
energy to base station. Base station estimates the average
energy from the collected energy information. It finds that
which node‗s energy level is higher than average energy
level; and those nodes will be selected as Cluster Head. After
selection, base station broadcasts the message along with
selected Cluster Head‘s ID to all nodes. Node whose ID is
matched with the ID containing in the message becomes CH.
In LEACH –C, CHs are dispersed throughout the network
because it is based on location & residual energy. Here the
problem is, base station is responsible for calculating average
energy level; in case any one of the node fails to
communicate with base station due to far away from base
station then the successful probability of CH selection is less.
LEACH – C considers the energy level of network but not
focuses on predictability of network.
C. Efficient Cluster Head Selection Scheme For Data
Aggregation [EECHSSDA]
EECHSSDA [12] overcomes the problem of LEACH- C.
Cluster Head Selection is same as that of LEACH-C. With
decrease in energy level at CH, it selects Associate CH
(ACH). If CHs energy is going to drain, ACH acts as a CH.
For ACH selection, the node which has higher energy level
after the energy of CH is less than average energy acts as an
ACH. Due to this ACH,, no need to select the CH
periodically.Hence it reduces load overhead, energy
consumption and no need to select CH periodically.
EECHSSDA ensures to obtain optimal cluster head, energy
efficiency, but not addresses any schedulability bounds of
network; hence it does not focus on predictability.
D. Hybrid Energy- Efficient Distributed Clustering
[HEED]
HEED [13] is a hierarchical, distributed, clustering scheme.
It allows single hop communication within each cluster and
allows multi-hop communication between CHs and base
station.CH selection depends on residual energy and intra
cluster communication cost. Residual energy is used to set
the initial set of cluster heads. Intra cluster communication
cost is used for deciding to join a cluster or not. This cost
value is based on node‘s proximity or node‘s degree to the
neighbor. Each sensor node estimates CHprob value for
becoming a CH as follows :
CHprob=Cprob * Eresidual/Emax
This probability value should not be beyond the threshold
value Pmin; Pmin is inversely proportional to Emax. This
algorithm consists of constant number of iterations. Every
node goes through this iteration until it finds a CH that it will
be the node with least communication cost. At the end of
iteration every node doubles the CHprob value. Iteration will
be terminated if CHprob value reaches 1.Two types of CH
status that a sensor node announces to its neighbors; i) Node
becomes a tentative CH with CHprob less than 1; ii) Node
becomes permanently becomes a CH if its CHprob reaches 1.
At the end final CHs are considered as CHs, and tentative CH
becomes regular nodes. In this, if two nodes are within the
transmission range of each other, then the probability of
selecting CH will be small. But in HEED, synchronization is
required and energy consumption is significant if CHs are far
away. It also requires knowledge of entire network to
determine the intra cluster communication cost; in practical it
is very difficult to calculate the cost. So it is very difficult to
obtain the network lifetime bounds to ensure predictability.
E. Probabilistic Clustering Algorithm
This algorithm is the extended version of HEED[14]. This
algorithm is used to generate a small number of CH in
relatively few rounds, especially in sparse networks. It has
three phases: i) Core Head Selection ii) Cluster Head
selection iii) Finalize CH. During Core Head Selection each
node checks whether its cost is least among its neighbors. If it
is true, then it will set itself as Core Head; otherwise select
the neighbor node with least cost as Core Head. During
Cluster Head Selection other than Core Heads are involved.
CH selection procedure is same as of HEED. During final
round, final CHs are considered as CHs, and tentative CH
becomes regular nodes. In this, every regular node must have
one neighboring final CH with the highest priority as its CH;
otherwise it will be considered as an uncovered one. All
uncovered nodes run the Core Head Selection procedure in
order to select some extra CHs. Here also obtain the
predictability bounds of network is difficult.
F. High Energy First Algorithm [HEF]
HEF is used to obtain the optimal Cluster Head, maximize
the network life time & schedulability bounds also derived
under IOCH [15]. Here the Cluster Head is elected based on
maximum residual energy. After each round, energy
consumption of CH and regular nodes are calculated. From
this calculated value, those nodes contain higher residual
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, No 5, May 2013
www.ijarcet.org
1912
energy will be selected as CH. Cluster formation is similar to
LEACH. HEF algorithm is based on residual energy, at
different rounds nodes have maximum energy will be
selected as CH. So the drain rate of the nodes will be linear
and packet delivery rate is increased. At the end of each
round, utilization of energy is better and hence network
lifetime is prolonged in higher level compared to other
algorithms. It also supports for deriving life time bounds for
performing schedulability test to ensure predictability of the
nodes. This prediction is very much helpful for real time
WSN.
V. COMPARISON OF ALGORITHMS
From this survey, it is observed that, clustering algorithms
without energy awareness, CH cannot be rotated, and loads
cannot be shared. Therefore it is difficult for sensors to
choose the most appropriate cluster heads to maximize their
network lifetime, and hot-spot CH sensors die quickly.
Clustering algorithms with energy awareness does not
address the schedulability analysis. In this predictability of
optimality is in stochastic nature. It does not guarantee that
the hard network lifetime constraints can be met.
TABLE I
COMPARISON OF CLUSTER HEAD SELECTION ALGORITHMS
Clustering
Approach
CHs
Selection
CHs
Rotation
Energy
Factor
Prolong
Network
lifetime
Predictabi
lity
LEACH Prob/
random
Yes No Yes No
ACW Backoff Yes No Yes No
CIPRA ID-Based Yes No Yes No
ERA Prob/
random
Yes Yes Yes No
LEACH - C Average
Energy
Yes Yes Yes No
EECHSSDA Average
Energy
Yes Yes Yes No
HEED Prob/
Energy
Yes Yes Yes No
Extended
HEED
Prob/
Energy
Yes Yes Yes No
HEF Residual
Energy
Yes Yes Yes Yes
VI. CONCLUSION
To maximize the network life time optimal cluster head
selection is important. CHs require more energy than all other
nodes because they perform processing, sensing,
communication and aggregation. In case, the cluster head
dies in earlier, then the entire network becomes useless; since
the CH cannot communicate with Base Station. To obtain
optimal cluster head, CH should be elected based on the
residual energy of each and every node. Therefore energy
efficiency is maximized & network lifetime is also
prolonged.
REFERENCES
[1].Chiara Buratti, Andrea Conti, Davide Dardari, and Roberto Verdone,
―An Overview on Wireless Sensor Networks Technology and Evolution‖ in
Sensors 2009, 9, 6869-6896, 31 August 2009.
[2]. Dardari, D.; Conti, A.; Buratti, C.; Verdone, R., ―Mathematical
evaluation of environmental monitoring estimation error through
energy-efficient wireless sensor networks‖ in IEEE Trans. Mobile
Computing. 2007, 6, 790–803.
[3]. Akyildiz, I.; Su, W.; Sankarasubramaniam, Y.; Cayirci, E., ―A survey on
sensor networks‖, in IEEE Communication Magazine, 2002, 40, 102–114.
[4].Lee, D.-S.; Lee, Y.-D.; Chung,W.-Y.; Myllyla, R. ― Vital sign monitoring
system with life emergency event detection using wireless sensor network‖,
in Proceedings of IEEE Conference on Sensors, Daegu, Korea, 2006.
[5]. D K Singh, M P Singh, Shio Kumar Singh ,‖ A Survey of
Energy-Efficient Hierarchical Cluster-Based Routing in Wireless Sensor
Networks”, in International Journal of Advanced Networking and
Applications, Volume: 02, Issue: 02, Pages: 570-580 (2010).
[61]. Shio Kumar Singh, M P Singh, and D K Singh, ―Routing Protocols in
Wireless Sensor Networks –A Survey ―in International Journal of Computer
Science & Engineering Survey (IJCSES) Vol.1, No.2, November 2010.
[7]. W.Heinzelman, A.P. Chandrakasan, and H. Balakrishnan,
―Energy-Efficient Communication Protocol forWireless Microsensor
Networks‖, in System Sciences, 2000.Proceedings of the 33rd
Annual
Hawaii International Conference on Publication Date:4-7 jan
2000,vol.2,p-10.
[8]. L.-C., Wang, C.-W.Wang, and C.-M. Liu, ―Adaptive Contention
Window-Based cluster head selection algorithm for wireless sensor
networks,‖ in VTC-2005-Fall.2005 IEEE 62nd
September 2005,vol.3
pp.1819-1823.
[9]. E.Chu, T.Mine, and M.Amamiya,‖ A Data gathering mechanism based
on clustering and in-network processing routing algorithm: CIPRA‖, in The
Third International Conference on Mobile Computing and Ubiquitous
Networking, ICMU 2006.
[10]. H.Chen, C.S.Wu, Y.-S.Chu, C.-C.Cheng, and L.-K.Tsai, ―Energy
Residue Aware(ERA) clustering algorithm for leach based wireless sensor
networks,‖ in Second International Conference on Systems and Network
Communications(ICSNC 2007),2007, pp.40-45.
[11]. W.Heinzelman, A.P. Chandrakasan, and H. Balakrishnan, ―An
application –specific protocol architecture for wireless microsensor
networks,‖ IEEE Trans.on Communications,vol.1, no.4,pp.660-670,
Oct.2002.
[12]. Kiran Maraiya, Kamal Kant and Nitin Gupta, ―Efficient Cluster Head
Selection Scheme for Data Aggregation in Wireless Sensor Network‖ , in
International Journal of Computer Applications (0975-8887), volume 23 –
No.9, June 2011.
[13]. Fahmy and O. Younis, ―Distributed clustering in ad-hoc sensor
networks:A hybrid, energy-efficient approach,‖ in Proceedings of the IEEE
Conference on Computer Communications (INFOCOM), , Hong
Kong,2004.
[14].H.Huang and J.Wu, ―A Probabilistic clustering algorithm in wireless
sensor networks,‖ in VTC-2005-Fall.2005 IEEE 62nd
September 2005,vol.3
,pp.1796-1798.
[15]. Bo-Chao Cheng, Hsi-Hsun Yeh, and Ping-Hai Hsu, ―Schedulability
Analysis for Hard Network Lifetime Wireless Sensor Networks With High
Energy First Clustering‖, in IEEE Transactions on Reliability, vol. 60, no. 3,
September 2011.
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, No 5, May 2013
1913
www.ijarcet.org
BIOGRAPHY
Srie Vidhya Janani.E is currently
working as an Assistant Professor, in the
department of Computer Science and
Engineering at the Anna University,
Madurai Region. She is a Research Scholar
carrying out her research in Wireless
Sensor Networks. Her main research
interests lie in the area of wireless sensor
networks with emphasis on Energy
Efficiency, Clustering, and Optimal
Scheduling.
Dr.P.Ganesh Kumar obtained his B.E degree
from Madurai Kamaraj University and
received his M.E degree in Applied
Electronics from Bharathiyar University in the
year 2000.Also he obtained his Ph.D degree in
Information and Communication Engineering
from Anna University chennai in the year
2009.He has published 53 research papers in
reputed International, national journal and
conferences. He is a grant recipient of Tamil
Nadu State council for Science and
Technology and Motorola Scholar award. He
has been invited as Chairpersons and delivered
special lectures in many international and
national conference and workshops. His
current areas of interest are Wireless networks,
Wireless Sensor Networks, Signal and Image
processing.
Vasantha Suganthi.G is currently a PG
scholar in Department of Computer Science
and Engineering at Anna University
Regional Centre, Madurai. Se received her
Bachelor Degree in Information Technology
from P.S.R. Engineering College, Sivakasi,
in 2004. Her Research interests on data
aggregation, enhancing energy conservation
in Wireless Sensor Network.
Sultan.M is currently a PG scholar in
Department of Computer Science and
Engineering at St.Michael.College of
Engineering and Technology, Kalayarkoil,
Sivagangai. He received his Bachelor Degree in
Information Technology and Communication
Engineering from K.L.N.College of Information
Technology, Sivagangai, in 2009. His Research
areas include, grid computing, cloud computing
and wireless sensor network security.
Kaleeswaran.D is currently working as
Assistant Professor in the Department of
Computer Science and Engineering, St.Michael
College of Engineering and Technology,
Kalayarkoil. He received his Bachelor degree in
Information Technology from Sowdambiga
Engineering College in 2010 and completed his
Master Degree in Computer Science and
Engineering from St.Michael College of
Engineering and Technology, Kalayarkoil in
2012. His Research areas include data mining
and data warehousing, grid computing, cloud
computing and wireless sensor network security. He Published 21
international Conferences & 5 International journals

More Related Content

What's hot

Hierarchical clustering algo for wsn
Hierarchical clustering algo for wsnHierarchical clustering algo for wsn
Hierarchical clustering algo for wsnSamruddhi Gaikwad
 
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODINCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODijwmn
 
Data Dissemination in Wireless Sensor Networks: A State-of-the Art Survey
Data Dissemination in Wireless Sensor Networks: A State-of-the Art SurveyData Dissemination in Wireless Sensor Networks: A State-of-the Art Survey
Data Dissemination in Wireless Sensor Networks: A State-of-the Art SurveyCSCJournals
 
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...IJCSEA Journal
 
Modified leach protocol in wireless sensor network a survey
Modified leach protocol in wireless sensor network a surveyModified leach protocol in wireless sensor network a survey
Modified leach protocol in wireless sensor network a surveyIAEME Publication
 
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)ijsrd.com
 
34 9141 it ns2-tentative route selection approach for edit septian
34 9141 it  ns2-tentative route selection approach for edit septian34 9141 it  ns2-tentative route selection approach for edit septian
34 9141 it ns2-tentative route selection approach for edit septianIAESIJEECS
 
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...graphhoc
 
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...IJERA Editor
 
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 cluster head selection in LEACH protocol
Energy efficient cluster head selection in LEACH protocolEnergy efficient cluster head selection in LEACH protocol
Energy efficient cluster head selection in LEACH protocolARUNP116
 
Enhanced Leach Protocol
Enhanced Leach ProtocolEnhanced Leach Protocol
Enhanced Leach Protocolijceronline
 
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)ijsrd.com
 

What's hot (15)

Hierarchical clustering algo for wsn
Hierarchical clustering algo for wsnHierarchical clustering algo for wsn
Hierarchical clustering algo for wsn
 
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODINCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
 
eeca
eecaeeca
eeca
 
Data Dissemination in Wireless Sensor Networks: A State-of-the Art Survey
Data Dissemination in Wireless Sensor Networks: A State-of-the Art SurveyData Dissemination in Wireless Sensor Networks: A State-of-the Art Survey
Data Dissemination in Wireless Sensor Networks: A State-of-the Art Survey
 
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...
SLGC: A New Cluster Routing Algorithm in Wireless Sensor Network for Decrease...
 
Modified leach protocol in wireless sensor network a survey
Modified leach protocol in wireless sensor network a surveyModified leach protocol in wireless sensor network a survey
Modified leach protocol in wireless sensor network a survey
 
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
 
34 9141 it ns2-tentative route selection approach for edit septian
34 9141 it  ns2-tentative route selection approach for edit septian34 9141 it  ns2-tentative route selection approach for edit septian
34 9141 it ns2-tentative route selection approach for edit septian
 
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...
Coverage and Connectivity Aware Neural Network Based Energy Efficient Routing...
 
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...
A Novel Cluster-Based Energy Efficient Routing With Hybrid Protocol in Wirele...
 
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 cluster head selection in LEACH protocol
Energy efficient cluster head selection in LEACH protocolEnergy efficient cluster head selection in LEACH protocol
Energy efficient cluster head selection in LEACH protocol
 
Enhanced Leach Protocol
Enhanced Leach ProtocolEnhanced Leach Protocol
Enhanced Leach Protocol
 
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
Energy Efficient LEACH protocol for Wireless Sensor Network (I-LEACH)
 
H0421043049
H0421043049H0421043049
H0421043049
 

Viewers also liked

Ted Portfolio 03 2009 Small
Ted Portfolio 03 2009 SmallTed Portfolio 03 2009 Small
Ted Portfolio 03 2009 SmallTedCrandall
 
Social authoring breakout session
Social authoring breakout sessionSocial authoring breakout session
Social authoring breakout sessiontrowenhorst
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Editor IJARCET
 
Volume 2-issue-6-2052-2055
Volume 2-issue-6-2052-2055Volume 2-issue-6-2052-2055
Volume 2-issue-6-2052-2055Editor IJARCET
 
Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationEditor IJARCET
 

Viewers also liked (8)

129 134
129 134129 134
129 134
 
456 460
456 460456 460
456 460
 
Ted Portfolio 03 2009 Small
Ted Portfolio 03 2009 SmallTed Portfolio 03 2009 Small
Ted Portfolio 03 2009 Small
 
Social authoring breakout session
Social authoring breakout sessionSocial authoring breakout session
Social authoring breakout session
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
 
sysprog3 Part2
sysprog3 Part2sysprog3 Part2
sysprog3 Part2
 
Volume 2-issue-6-2052-2055
Volume 2-issue-6-2052-2055Volume 2-issue-6-2052-2055
Volume 2-issue-6-2052-2055
 
Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturization
 

Similar to 1909 1913

INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODINCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODijwmn
 
ENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKS
ENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKSENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKS
ENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKSijassn
 
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
 
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORK
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORKIMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORK
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORKIAEME Publication
 
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Network
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor NetworkSimulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Network
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Networkjosephjonse
 
Data gathering in wireless sensor networks using intermediate nodes
Data gathering in wireless sensor networks using intermediate nodesData gathering in wireless sensor networks using intermediate nodes
Data gathering in wireless sensor networks using intermediate nodesIJCNCJournal
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )ijassn
 
Energy Efficient Data Aggregation in Wireless Sensor Networks: A Survey
Energy Efficient Data Aggregation in Wireless Sensor Networks: A SurveyEnergy Efficient Data Aggregation in Wireless Sensor Networks: A Survey
Energy Efficient Data Aggregation in Wireless Sensor Networks: A Surveyijsrd.com
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )ijassn
 
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...CSCJournals
 
An energy efficient protocol based study of wsn to increase the lifetime
An energy efficient protocol based study of wsn to increase the lifetimeAn energy efficient protocol based study of wsn to increase the lifetime
An energy efficient protocol based study of wsn to increase the lifetimeIAEME Publication
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)inventionjournals
 
Iaetsd survey on wireless sensor networks routing
Iaetsd survey on wireless sensor networks routingIaetsd survey on wireless sensor networks routing
Iaetsd survey on wireless sensor networks routingIaetsd Iaetsd
 
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...IJCNCJournal
 
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...IJCNCJournal
 

Similar to 1909 1913 (20)

INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHODINCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
INCREASING WIRELESS SENSOR NETWORKS LIFETIME WITH NEW METHOD
 
ENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKS
ENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKSENERGY EFFICIENT DATA COMMUNICATION APPROACH IN WIRELESS SENSOR NETWORKS
ENERGY EFFICIENT DATA COMMUNICATION APPROACH 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...
 
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...
 
B05630814
B05630814B05630814
B05630814
 
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORK
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORKIMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORK
IMPROVEMENT OF LEACH AND ITS VARIANTS IN WIRELESS SENSOR NETWORK
 
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Network
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor NetworkSimulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Network
Simulation Based Analysis of Cluster-Based Protocol in Wireless Sensor Network
 
Data gathering in wireless sensor networks using intermediate nodes
Data gathering in wireless sensor networks using intermediate nodesData gathering in wireless sensor networks using intermediate nodes
Data gathering in wireless sensor networks using intermediate nodes
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
 
Energy Efficient Data Aggregation in Wireless Sensor Networks: A Survey
Energy Efficient Data Aggregation in Wireless Sensor Networks: A SurveyEnergy Efficient Data Aggregation in Wireless Sensor Networks: A Survey
Energy Efficient Data Aggregation in Wireless Sensor Networks: A Survey
 
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
International Journal of Advanced Smart Sensor Network Systems ( IJASSN )
 
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...
Maximizing Lifetime of Homogeneous Wireless Sensor Network through Energy Eff...
 
An energy efficient protocol based study of wsn to increase the lifetime
An energy efficient protocol based study of wsn to increase the lifetimeAn energy efficient protocol based study of wsn to increase the lifetime
An energy efficient protocol based study of wsn to increase the lifetime
 
A04560105
A04560105A04560105
A04560105
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
40120130406001
4012013040600140120130406001
40120130406001
 
Iaetsd survey on wireless sensor networks routing
Iaetsd survey on wireless sensor networks routingIaetsd survey on wireless sensor networks routing
Iaetsd survey on wireless sensor networks routing
 
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...
Designing an Energy Efficient Clustering in Heterogeneous Wireless Sensor Net...
 
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...
DESIGNING AN ENERGY EFFICIENT CLUSTERING IN HETEROGENEOUS WIRELESS SENSOR NET...
 

More from Editor IJARCET

Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Editor IJARCET
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Editor IJARCET
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Editor IJARCET
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Editor IJARCET
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Editor IJARCET
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Editor IJARCET
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Editor IJARCET
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Editor IJARCET
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Editor IJARCET
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Editor IJARCET
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Editor IJARCET
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Editor IJARCET
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Editor IJARCET
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Editor IJARCET
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Editor IJARCET
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Editor IJARCET
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Editor IJARCET
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Editor IJARCET
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Editor IJARCET
 
Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101Editor IJARCET
 

More from Editor IJARCET (20)

Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107
 
Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101
 

Recently uploaded

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 

Recently uploaded (20)

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 

1909 1913

  • 1. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, No 5, May 2013 1909 www.ijarcet.org  Abstract— Wireless Sensor Network is a resource constraint network, in which all sensor nodes have limited resources. In order to save resources and energy data must be aggregated to reduce the amount of traffic in the network. Data aggregation has to done with the help of clustering scheme. Clusters reduce the localized traffic by means of grouping sensor nodes and compress the data together and then transmit only compact data to base station. Therefore optimal cluster head selection is important to maximize the lifetime of the network by utilizing the limited energy in an efficient manner. Various algorithms are proposed for the selection of cluster head for maximizing the network life time. This paper is focused on the survey of such algorithms. Index Terms— Cluster, Hierarchical Cluster, Cluster Head Selection, Energy factor. I. INTRODUCTION Wireless Sensor Network [1],[2],[3] (WSN) consists of autonomous sensors to monitor physical or ecological conditions, such as temperature, sound, pressure, etc. and to cooperatively bypass their data through the network to a main location. The development of wireless sensor networks was motivated by military applications such as battlefield supervision; today such networks are used in many manufacturing and consumer applications, such as process monitoring and control, health monitoring [4], etc. Sensor nodes can be imagined as small computers, extremely basic in terms of their interfaces and their components. They usually consist of a processing unit with limited computational power and limited memory. Every sensor node has a power source typically in the form of a battery. The base stations may have one or more components of the WSN with infinite computational, energy and communication resources. They act as a gateway between sensor nodes and the end user as they typically forward data from the WSN on to a server. Manuscript received April, 2013. Srie Vidhya Janani.E, Department of Computer Science and Engineering, Anna University, Regional Centre, Madurai, India. +91-9894351450 Ganeshkumar.P, Department of Electronics and Communication Engineering, K.L.N.College of Engineering, Madurai, India Vasantha Suganthi.G, Department of Computer Science and Engineering, Anna University, Regional Centre, Madurai, India. +91-8056814929 Sultan.M, Department of Computer Science and Engineering, St. Michael College of Engineering and Technology, Sivagangai, India, +91-9944394001, Kaleeswaran.D, Department of Computer Science and Engineering, St. Michael College of Engineering and Technology, Sivagangai, India, +91-9487682176, II. CLUSTERING IN WSN Hierarchical clustering is the efficient way [5] to utilize the energy in an efficient manner. Grouping of sensors that performing similar tasks are known as clusters. In hierarchical cluster, it contains Cluster Head, Regular Nodes and Base Station. After the cluster head is selected, it collects the data from all of its member nodes and aggregates it in order to eliminate the redundancy. Thus it limits the amount of data transmission to Base Station, hence remaining energy level is increased and network lifetime is maximized. There are several key attributes [6] which must be carefully considered, while designing the clusters in WSN: A. Clustering Parameters 1) Number of Clusters It may be varied according to the CH selection algorithms. In some cases this count will be the predestined one. 2) Intra-cluster Communication Communication between the regular node and CH may be one-hop communication or multi-hop communication. 3) Nodes and CH Mobility Cluster formation is dynamically changed in the case of sensor nodes are in mobility. 4) Node Type and Roles Nodes may be in homogeneous or heterogeneous nature. In homogeneous, all sensor nodes have same capabilities such as same energy level, configurations. In heterogeneous, nodes are varied in configurations. 5) Cluster Head Selection CHs are elected from the deployed nodes based on the criteria such as residual energy, connectivity, communication cost and mobility.CH selection may be in deterministic or probalistic manner. 6) Multiple Levels In very large networks, multi level clustering approach is used to achieve better energy distribution. 7) Overlapping Most of the protocols do not support for overlapping of different clusters. A Survey on Algorithms for Cluster Head Selection in WSN Srie Vidhya Janani. E, Ganeshkumar.P, Vasantha Suganthi.G, Sultan.M, Kaleeswaran. D
  • 2. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, No 5, May 2013 www.ijarcet.org 1910 B. Issues to be Considered in Clustering To create an organizational structure among sensor nodes in WSN, it has the ability to deploy them in an ad hoc manner, as it is not feasible to organize these nodes into groups‘ pre -deployment. For this reason, there has been an large amount of research in ways of creating these organizational structures(or clusters).The clustering phenomenon, plays an important role in not just organization of the network, but can dramatically affect network performance. There are several key limitations in WSNs, that clustering schemes must consider. 1) Limited Energy Unlike energetic designs, wireless sensor nodes are ―off-grid‖, meaning that they have limited energy storage and the efficient use of this energy will be vital in determining the range of suitable applications for these networks. The limited energy in sensor nodes must be considered as proper clustering can reduce the overall energy usage in a network. 2) Network Lifetime: The energy limitation on nodes results in a limited network lifetime for nodes in a network. Proper clustering should attempt to reduce the energy usage, and hereby increase network lifetime. 3) Limited Abilities: The small physical size and small amount of stored energy in a sensor node limit many abilities of nodes in terms of processing and communication abilities. A good clustering algorithm should make use of shared resources within an organizational structure, while taking into account the limitation on individual node abilities. 4) Application Dependency: Often a given application will heavily rely on cluster organization. When designing a clustering algorithm, application robustness must be considered as a good clustering algorithm should be able to adapt to a variety of application requirements. III. CLUSTERING ALGORITHMS BASED ON WITHOUT ENERGY CONSIDERATION A. LEACH Protocol [Low Energy Adaptive Clustering Hierarchy] LEACH protocol organizes the nodes by themselves. Regular nodes in cluster send data to Cluster Head (CH). Cluster Head aggregates the data and sends to base Station. In LEACH [7] Cluster Head Selection is based on the desired percentage of CHs for the network and number of times the node has been a CH so far. Each node should select a random number between the interval 0 &1. If the generated random number is less than threshold then the node becomes a CH for current round. Threshold is obtained by using the following formula: T(n) = { P/1-P*(r mod 1/P) , if n ε G Where, P is the desired percentage of clusters; r denotes the current round; G denotes set of nodes that have not been CHs in the last 1/P rounds. Cluster Head Selection, Cluster Formation and Data Communication are taken place at a time instant is known as rounds. Each round has two phases: Set-up Phase & Steady State Phase. During Set-up Phase Cluster Head announces its election by sending advertisement message to all other nodes in order to form the cluster. During Steady State Phase each CH creates TDMA schedule for their members to transmit their data and it also tells when it to transmit. Nodes can send data during their allocated period. Radio of regular nodes is turned off until their scheduled time reached. Thus the energy is saved. Finally CH aggregates all data and sends to Base Station. Problems in Leach are i) CH selection is random and it does not consider about energy consumption of nodes. Therefore there may be a chance for CH will die earlier than other nodes. When CH dies, the cluster will become useless. ii) It cannot cover large area and CHs are not uniformly distributed. iii) It cannot be able to address the schedulability and predictability measures. B. Adaptive Contention Window Based Cluster Head Election Mechanism [ACW] In this [8] all sensor nodes randomly pick up a back off value from the contention window based on uniform distribution. The node which has minimal back off value can become Cluster Head. Back off means, during transmission if the node detects an idle channel, it transmits a frame. If collision occurs, then the node has to wait for a random amount of time and starts all over again. By using this mechanism, cluster head distribution becomes uniform. Probability of Cluster Head Selection is high compared to LEACH. This also suffers by the same problem of LEACH because this mechanism also not considers the energy consumption of nodes. If the initial length of the contention window is not properly set, then it leads to lower probability of success in the selection of Cluster Head. By this algorithm, it is possible to select the CH better than LEACH but this mechanism does not focus on predictability. C. Clustering and In Network Processing Routing Algorithm: CIPRA In this, cluster formation and routing tree construction are carried out simultaneously so that they reduce their energy required to organize a multi-hop routing tree of sensed data. Here data aggregation is performed by each and every node. Thus it reduces the amount of transmission. Cluster Head Selection is based on the total number of sensors and its unique ID. Cluster Head is obtained by using the formula i mod N for every round. If other nodes are not able to obtain the elected message, then they have to rerun the CH selection. Once CH is selected, routing tree is constructed then data transmission will take place [9].Here each node consumes an amount of energy to receive message from several tentative parent nodes. In CIPRA, sensor nodes can be able to dynamically adjust radio transmission energy in order to adapt the topology changes. But CIPRA technique can select only one CH at a time to reduce energy requirement. To select multiple CHs, residual energy should be considered. Even CIPRA can adopt the dynamic changes; it is very difficult to predict the life time bounds of network.
  • 3. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, No 5, May 2013 1911 www.ijarcet.org IV. CLUSTERING ALGORITHMS BASED ON ENERGY CONSIDERATION A. Energy Residue Aware (ERA) Algorithm In this algorithm, CH election is same as that of LEACH. But it differs from cluster formation that is association between cluster head and other nodes. After the CH is elected according to LEACH, CH estimates their residual energy [10] and broadcast this information to all other nodes. Residual energy of CH is calculated by subtracting the remaining energy of CH in current round from energy requirement for transmitting data to base station. All other regular nodes calculate their residual energy by subtracting their remaining energy in current round from energy requirement for transferring data to every CH. After this they associate with one CH according to the sum of maximum energy residue path. Thus it maximizes the network lifetime by balancing the energy consumption of the network. In LEACH, regular nodes choose their cluster head according to shortest distance; due to this there will be a chance for dying CH in earlier. Compared to LEACH, ERA prolongs network life time by balancing the energy consumption of nodes. ERA ensures optimal CH selection, prolongs network life time but it does not focus on predictability of network. B. LEACH – C Algorithm [LEACH – Centralized] In this, Cluster Head Selection depends on the current location of the node and residual energy [11]. During setup phase, each node sends its current location and residual energy to base station. Base station estimates the average energy from the collected energy information. It finds that which node‗s energy level is higher than average energy level; and those nodes will be selected as Cluster Head. After selection, base station broadcasts the message along with selected Cluster Head‘s ID to all nodes. Node whose ID is matched with the ID containing in the message becomes CH. In LEACH –C, CHs are dispersed throughout the network because it is based on location & residual energy. Here the problem is, base station is responsible for calculating average energy level; in case any one of the node fails to communicate with base station due to far away from base station then the successful probability of CH selection is less. LEACH – C considers the energy level of network but not focuses on predictability of network. C. Efficient Cluster Head Selection Scheme For Data Aggregation [EECHSSDA] EECHSSDA [12] overcomes the problem of LEACH- C. Cluster Head Selection is same as that of LEACH-C. With decrease in energy level at CH, it selects Associate CH (ACH). If CHs energy is going to drain, ACH acts as a CH. For ACH selection, the node which has higher energy level after the energy of CH is less than average energy acts as an ACH. Due to this ACH,, no need to select the CH periodically.Hence it reduces load overhead, energy consumption and no need to select CH periodically. EECHSSDA ensures to obtain optimal cluster head, energy efficiency, but not addresses any schedulability bounds of network; hence it does not focus on predictability. D. Hybrid Energy- Efficient Distributed Clustering [HEED] HEED [13] is a hierarchical, distributed, clustering scheme. It allows single hop communication within each cluster and allows multi-hop communication between CHs and base station.CH selection depends on residual energy and intra cluster communication cost. Residual energy is used to set the initial set of cluster heads. Intra cluster communication cost is used for deciding to join a cluster or not. This cost value is based on node‘s proximity or node‘s degree to the neighbor. Each sensor node estimates CHprob value for becoming a CH as follows : CHprob=Cprob * Eresidual/Emax This probability value should not be beyond the threshold value Pmin; Pmin is inversely proportional to Emax. This algorithm consists of constant number of iterations. Every node goes through this iteration until it finds a CH that it will be the node with least communication cost. At the end of iteration every node doubles the CHprob value. Iteration will be terminated if CHprob value reaches 1.Two types of CH status that a sensor node announces to its neighbors; i) Node becomes a tentative CH with CHprob less than 1; ii) Node becomes permanently becomes a CH if its CHprob reaches 1. At the end final CHs are considered as CHs, and tentative CH becomes regular nodes. In this, if two nodes are within the transmission range of each other, then the probability of selecting CH will be small. But in HEED, synchronization is required and energy consumption is significant if CHs are far away. It also requires knowledge of entire network to determine the intra cluster communication cost; in practical it is very difficult to calculate the cost. So it is very difficult to obtain the network lifetime bounds to ensure predictability. E. Probabilistic Clustering Algorithm This algorithm is the extended version of HEED[14]. This algorithm is used to generate a small number of CH in relatively few rounds, especially in sparse networks. It has three phases: i) Core Head Selection ii) Cluster Head selection iii) Finalize CH. During Core Head Selection each node checks whether its cost is least among its neighbors. If it is true, then it will set itself as Core Head; otherwise select the neighbor node with least cost as Core Head. During Cluster Head Selection other than Core Heads are involved. CH selection procedure is same as of HEED. During final round, final CHs are considered as CHs, and tentative CH becomes regular nodes. In this, every regular node must have one neighboring final CH with the highest priority as its CH; otherwise it will be considered as an uncovered one. All uncovered nodes run the Core Head Selection procedure in order to select some extra CHs. Here also obtain the predictability bounds of network is difficult. F. High Energy First Algorithm [HEF] HEF is used to obtain the optimal Cluster Head, maximize the network life time & schedulability bounds also derived under IOCH [15]. Here the Cluster Head is elected based on maximum residual energy. After each round, energy consumption of CH and regular nodes are calculated. From this calculated value, those nodes contain higher residual
  • 4. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, No 5, May 2013 www.ijarcet.org 1912 energy will be selected as CH. Cluster formation is similar to LEACH. HEF algorithm is based on residual energy, at different rounds nodes have maximum energy will be selected as CH. So the drain rate of the nodes will be linear and packet delivery rate is increased. At the end of each round, utilization of energy is better and hence network lifetime is prolonged in higher level compared to other algorithms. It also supports for deriving life time bounds for performing schedulability test to ensure predictability of the nodes. This prediction is very much helpful for real time WSN. V. COMPARISON OF ALGORITHMS From this survey, it is observed that, clustering algorithms without energy awareness, CH cannot be rotated, and loads cannot be shared. Therefore it is difficult for sensors to choose the most appropriate cluster heads to maximize their network lifetime, and hot-spot CH sensors die quickly. Clustering algorithms with energy awareness does not address the schedulability analysis. In this predictability of optimality is in stochastic nature. It does not guarantee that the hard network lifetime constraints can be met. TABLE I COMPARISON OF CLUSTER HEAD SELECTION ALGORITHMS Clustering Approach CHs Selection CHs Rotation Energy Factor Prolong Network lifetime Predictabi lity LEACH Prob/ random Yes No Yes No ACW Backoff Yes No Yes No CIPRA ID-Based Yes No Yes No ERA Prob/ random Yes Yes Yes No LEACH - C Average Energy Yes Yes Yes No EECHSSDA Average Energy Yes Yes Yes No HEED Prob/ Energy Yes Yes Yes No Extended HEED Prob/ Energy Yes Yes Yes No HEF Residual Energy Yes Yes Yes Yes VI. CONCLUSION To maximize the network life time optimal cluster head selection is important. CHs require more energy than all other nodes because they perform processing, sensing, communication and aggregation. In case, the cluster head dies in earlier, then the entire network becomes useless; since the CH cannot communicate with Base Station. To obtain optimal cluster head, CH should be elected based on the residual energy of each and every node. Therefore energy efficiency is maximized & network lifetime is also prolonged. REFERENCES [1].Chiara Buratti, Andrea Conti, Davide Dardari, and Roberto Verdone, ―An Overview on Wireless Sensor Networks Technology and Evolution‖ in Sensors 2009, 9, 6869-6896, 31 August 2009. [2]. Dardari, D.; Conti, A.; Buratti, C.; Verdone, R., ―Mathematical evaluation of environmental monitoring estimation error through energy-efficient wireless sensor networks‖ in IEEE Trans. Mobile Computing. 2007, 6, 790–803. [3]. Akyildiz, I.; Su, W.; Sankarasubramaniam, Y.; Cayirci, E., ―A survey on sensor networks‖, in IEEE Communication Magazine, 2002, 40, 102–114. [4].Lee, D.-S.; Lee, Y.-D.; Chung,W.-Y.; Myllyla, R. ― Vital sign monitoring system with life emergency event detection using wireless sensor network‖, in Proceedings of IEEE Conference on Sensors, Daegu, Korea, 2006. [5]. D K Singh, M P Singh, Shio Kumar Singh ,‖ A Survey of Energy-Efficient Hierarchical Cluster-Based Routing in Wireless Sensor Networks”, in International Journal of Advanced Networking and Applications, Volume: 02, Issue: 02, Pages: 570-580 (2010). [61]. Shio Kumar Singh, M P Singh, and D K Singh, ―Routing Protocols in Wireless Sensor Networks –A Survey ―in International Journal of Computer Science & Engineering Survey (IJCSES) Vol.1, No.2, November 2010. [7]. W.Heinzelman, A.P. Chandrakasan, and H. Balakrishnan, ―Energy-Efficient Communication Protocol forWireless Microsensor Networks‖, in System Sciences, 2000.Proceedings of the 33rd Annual Hawaii International Conference on Publication Date:4-7 jan 2000,vol.2,p-10. [8]. L.-C., Wang, C.-W.Wang, and C.-M. Liu, ―Adaptive Contention Window-Based cluster head selection algorithm for wireless sensor networks,‖ in VTC-2005-Fall.2005 IEEE 62nd September 2005,vol.3 pp.1819-1823. [9]. E.Chu, T.Mine, and M.Amamiya,‖ A Data gathering mechanism based on clustering and in-network processing routing algorithm: CIPRA‖, in The Third International Conference on Mobile Computing and Ubiquitous Networking, ICMU 2006. [10]. H.Chen, C.S.Wu, Y.-S.Chu, C.-C.Cheng, and L.-K.Tsai, ―Energy Residue Aware(ERA) clustering algorithm for leach based wireless sensor networks,‖ in Second International Conference on Systems and Network Communications(ICSNC 2007),2007, pp.40-45. [11]. W.Heinzelman, A.P. Chandrakasan, and H. Balakrishnan, ―An application –specific protocol architecture for wireless microsensor networks,‖ IEEE Trans.on Communications,vol.1, no.4,pp.660-670, Oct.2002. [12]. Kiran Maraiya, Kamal Kant and Nitin Gupta, ―Efficient Cluster Head Selection Scheme for Data Aggregation in Wireless Sensor Network‖ , in International Journal of Computer Applications (0975-8887), volume 23 – No.9, June 2011. [13]. Fahmy and O. Younis, ―Distributed clustering in ad-hoc sensor networks:A hybrid, energy-efficient approach,‖ in Proceedings of the IEEE Conference on Computer Communications (INFOCOM), , Hong Kong,2004. [14].H.Huang and J.Wu, ―A Probabilistic clustering algorithm in wireless sensor networks,‖ in VTC-2005-Fall.2005 IEEE 62nd September 2005,vol.3 ,pp.1796-1798. [15]. Bo-Chao Cheng, Hsi-Hsun Yeh, and Ping-Hai Hsu, ―Schedulability Analysis for Hard Network Lifetime Wireless Sensor Networks With High Energy First Clustering‖, in IEEE Transactions on Reliability, vol. 60, no. 3, September 2011.
  • 5. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, No 5, May 2013 1913 www.ijarcet.org BIOGRAPHY Srie Vidhya Janani.E is currently working as an Assistant Professor, in the department of Computer Science and Engineering at the Anna University, Madurai Region. She is a Research Scholar carrying out her research in Wireless Sensor Networks. Her main research interests lie in the area of wireless sensor networks with emphasis on Energy Efficiency, Clustering, and Optimal Scheduling. Dr.P.Ganesh Kumar obtained his B.E degree from Madurai Kamaraj University and received his M.E degree in Applied Electronics from Bharathiyar University in the year 2000.Also he obtained his Ph.D degree in Information and Communication Engineering from Anna University chennai in the year 2009.He has published 53 research papers in reputed International, national journal and conferences. He is a grant recipient of Tamil Nadu State council for Science and Technology and Motorola Scholar award. He has been invited as Chairpersons and delivered special lectures in many international and national conference and workshops. His current areas of interest are Wireless networks, Wireless Sensor Networks, Signal and Image processing. Vasantha Suganthi.G is currently a PG scholar in Department of Computer Science and Engineering at Anna University Regional Centre, Madurai. Se received her Bachelor Degree in Information Technology from P.S.R. Engineering College, Sivakasi, in 2004. Her Research interests on data aggregation, enhancing energy conservation in Wireless Sensor Network. Sultan.M is currently a PG scholar in Department of Computer Science and Engineering at St.Michael.College of Engineering and Technology, Kalayarkoil, Sivagangai. He received his Bachelor Degree in Information Technology and Communication Engineering from K.L.N.College of Information Technology, Sivagangai, in 2009. His Research areas include, grid computing, cloud computing and wireless sensor network security. Kaleeswaran.D is currently working as Assistant Professor in the Department of Computer Science and Engineering, St.Michael College of Engineering and Technology, Kalayarkoil. He received his Bachelor degree in Information Technology from Sowdambiga Engineering College in 2010 and completed his Master Degree in Computer Science and Engineering from St.Michael College of Engineering and Technology, Kalayarkoil in 2012. His Research areas include data mining and data warehousing, grid computing, cloud computing and wireless sensor network security. He Published 21 international Conferences & 5 International journals