SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 18, Issue 2, Ver. I (Mar-Apr. 2016), PP 42-46
www.iosrjournals.org
DOI: 10.9790/0661-18214246 www.iosrjournals.org 42 | Page
Heteroleach Protocol for Improvement of Stable Operation of
Wireless Sensor Networks
Rashmi Jain1
, Manali Kshirsagar2
, Latesh Malik3
1
Scholar, CSE Dept G.H.Raisoni College of Engg. Nagpur, Asst. Prof.,Dept of CSE, RGCER, Nagpur, India.
2
Professor,
Dept of Computer Technology,Yeshwanrao Chavan College of Engg. Nagpur, India.
3
Professor,
Dept of Computer Science & Engineering, G.H.Raisoni College of Engg. Nagpur, India.
Abstract : Wireless sensor networks(WSN) are very much sensitive to energy consumption by the sensor
nodes. Many protocols have been designed for efficient use of energy of the nodes so that the lifetime of the
network can prolong. The sensors consume more energy in communication of sensed information to the base
station as compared to actually sensing the physical phenomena and processing it. Therefore selection of
proper routing protocol for communication is crucial in sensor networks. Hierarchical and clustered
approaches are proven to be more efficient as compared to flat based organization of WSN. LEACH and other
variants of dynamic clustering approaches perform well in case of homogeneous network but a lot of overhead
energy is used for balanced operation of the network. We propose a smart heterogeneous method in which we
do not need to run a setup round after each steady state round. Both the phases need near about same amount of
energy. So if we reduce the number of setup operations which causes overhead energy loss, we can perform
more steady state operations with the same energy nodes. To achieve this we use heterogeneous nodes. Some of
the nodes have higher energy as compared to normal nodes which can serve as cluster heads for longer time
without a need of setup operation repeatedly and save energy. A proper selection of a multiplying factor α for
energy of high energy, high priority nodes, can prolong the lifetime up to twice as compared to LEACH.
Keywords: heterogeneous nodes, multiplying factor α, network lifetime, dynamic clustering, setup phase,
steady state phase
I. Introduction
Wireless sensor networks are used in many applications now days. But they have a very important
characteristic that sensor nodes‟ battery power is limited and they are not easy to recharge. All the sensors have
to sense the monitored phenomena and convey the data to the base station. Power requirement is more for
communication as compared to sensing or some processing at the node. If all the nodes start sending the data
separately to the base station then to much energy will be consumed in communication and node‟s energy will
drain soon. Therefore Heinzelman proposed a beneficial strategy, Low Energy Adaptive Clustering Hierarchy
(LEACH), for hierarchical organization of nodes. This protocol is more energy efficient as compared to flat
routing. Each round of data transmission consists of two phases namely setup phase and steady state phase.
Clusters are formed in the first phase. Cluster head and member nodes are selected and a schedule of data
transmission is communicated to all members. Actual data gathering and data transmission to base station is
done in second phase. All the nodes are having same initial energy and operation of CH is more energy
intensive. So to balance the energy consumption dynamic clustering is used. The setup phase energy is an
overhead energy and our analysis proves that this energy is on an average 100% of the energy requirement by
steady state phase where actual data transmission to sink takes place. This overhead energy can be reduced if we
use a heterogeneous approach. High energy nodes can be deployed to function as CHs so that frequency of setup
phase and thereby energy waste in overhead operation is reduced. We propose here a heterogeneous approach in
which a predetermined percentage of nodes will have high initial energy as compared to other normal nodes.
Overall energy of the network will remain same as that of LEACH. These high energy nodes will have high
priority to become the cluster heads in the setup phase. They will function as CHs till their energy do not reach a
predetermined threshold Emin. Therefore steady state operation can be done for many rounds without a need of
setup operation and that overhead energy can be saved. This energy saved will increase the lifetime expectancy
of network.
The paper is organized as follows. Section II contains some related work. Section III contains Proposed
Heteroleach protocol description; section IV contains the simulation results and discussion. Finally section V
contains the conclusion.
Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor ..
DOI: 10.9790/0661-18214246 www.iosrjournals.org 43 | Page
II. Related Work
As the WSN consist of large number of energy constrained nodes more energy is drained in
transmitting and receiving the data as compared to other processing. Therefore we can use cluster based
(Hierarchical) protocols. Cluster based protocols are used widely in wireless sensor networks, mobile ad- hoc
networks as well as wireless ad- hoc networks. Several clustering techniques have already been introduced for
partitioning nodes in these areas. LEACH is used as a basis for development of these protocols.
2.1 Low-energy adaptive clustering hierarchy(LEACH )
The idea of hierarchical routing approach proposed in LEACH has been an inspiration for many
hierarchical routing protocols, although some protocols have been independently developed [2]. All the nodes
have equal initial energy E0 and they are randomly placed in the sensor field.
It includes two operations performed in each round of working, namely setup and steady state operation.
Clusters of nodes are formed in setup phase where, a predetermined fraction of nodes, P, elect themselves as
CHs as follows. A sensor node chooses a random number, r, between 0 and 1. If this random number is less than
a threshold value, T(n), the node becomes a cluster head for the current round. The threshold value is calculated
based on an equation that incorporates the desired percentage to become a cluster-head, the current round, and
the set of nodes that have not been selected as a cluster-head in the last (1/P) rounds, denoted by G. It is given
by
T(n) = P/(1-P(r mod (1/P)), if n ϵ G
Where, G is the set of nodes that are involved in the CH election. Each elected CH broadcast an advertisement
message to the rest of the nodes in the network that they are the new cluster-heads. CHs create and broadcast a
TDMA schedule for the member nodes for data transmission so that collisions are avoided.
During the steady state phase, the sensor nodes can begin sensing and transmitting data to the cluster-heads. The
cluster head node receives all the data, aggregates it before sending it to the base-station and transmits this data
to base station. This data compaction will reduce the communication energy needed during transmission.
In the next round again the setup and steady state operations are repeated.
2.2 Stable Election Protocol (SEP)
This protocol uses a selected percentages (m) of nodes as advanced nodes which have more initial
energy (by a factor α) as compared to the normal nodes. Normal nodes have initial energy E0 and advanced
nodes have initial energy E0 * (1 + α). The system has α.m times more total energy as compared to scenario of
LEACH. Weighed probabilities for normal and advanced nodes are used which is represented by Pnorm and Padv
respectively. They are given by:
Pnorm=P/(1 + α.m)
Padv = P. (1 + α) /(1 + α.m)
The thresholds of cluster head selection for these nodes is given by Tnorm(n) and Tadv(n):
Tnorm (n) = Pnorm /(1- Pnorm (r mod (1/ Pnorm)), if n ϵ G’
Tadv (n) = Padv /(1- Padv (r mod (1/ Padv)), if n ϵ G’’
Where, G’ is set of normal nodes and G’’ is set of advanced nodes.
Thus probability of advanced nodes to become a cluster head is increased and duration of epoch is also
increased which increases the stability region of the network. But the overhead energy is still consumed similar
to that of the LEACH protocol. Therefore we propose another approach of network operation in which the nodes
will be arranged according to decreasing order of their energy and the nodes with the higher energy are given a
chance to become a CH. The next section gives the details of this approach.
III. Proposed Heteroleach Protocol
We consider total no of nodes to be same as LEACH. m percent of nodes are advanced nodes and (1-m)
percent of nodes are normal nodes. Advanced nodes have (1+ α) times more energy than normal nodes. Normal
nodes have initial energy E0. The nodes are placed randomly in the sensing area away from base station
therefore the energy consumption is also unequal for different nodes in different rounds. So we are arranging the
nodes in descending order of their energy and allowing the top P percent of nodes to become the cluster heads.
That is first i number of nodes will have more energy than other nodes k for all k > i. A set of p number
of these nodes will be selected as cluster heads (CH). It can be given as follows.
p
maxpE = U {ni | Ei > Ek for all k>i }
i=1
CH ={ni | ni ϵ maxpE }
Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor ..
DOI: 10.9790/0661-18214246 www.iosrjournals.org 44 | Page
We have selected the probability of CHs to be 5%. After selection of CHs, the other nodes will join the
nearest CH as its member node. CH determines the TDMA schedule for the member nodes and broadcasts it to
them so that member nodes will be active during their slot and remain in sleep mode for rest of the time. This
will save some energy of the nodes. With this the setup round will be completed and the steady state operation
may start. All the CHs have high energy as compared to normal nodes therefore they can continue as CHs for
longer time. We consider an energy threshold Emin and the CHs will function as CHs for next rounds till the
energy of these node do not reach below this Emin. So more number of steady state rounds can be performed with
a single setup operation. From the previous paper we can find that the energy needed in the setup operation is
nearly equal to steady state operation. So if j number of steady state rounds are performed before any CH‟s
energy goes below Emin, we can save j* (setup energy per round). Whenever one of the CH‟s energy goes below
Emin, a setup phase is executed and the CH, who‟s energy is depleted below Emin will be further treated as normal
node instead of advanced node. This node can contribute as a normal node in further rounds. With this
arrangement we can prolong the duration of first node dead to a larger extent and get a wider stable region for
the network operation.
3.1 Simulation parameters
MATLAB Tool is used for development of the program. The scenario considered is same as that of the
LEACH and SEP protocols. Just the initial energy of nodes is changed. For studying the effect of location of
base station on performance, we can change the position of the base station. Also we can change the advanced
node energy factor α, Emin and E0 for further analysis of working. Total initial energy of network is kept same as
that of LEACH scenario. The radio characteristics are considered same as proposed by Heinzelman. The general
parameters for simulation and study purpose are as mentioned in Table 1.
Table 1: Parameters for Simulation
Parameters Value
Network size 100m x 100m
Sink coordinates x = 50; y = 175
Eelec 50 nJ/bit
Efs 100 pJ/bit/m2
Emp 0.0013 pJ/bit/m4
Number of nodes 100
Eaggregation 5 nJ/bit/signal
Packet size 500 bytes
Advanced node energy factor α 9
Initial energy of normal nodes E0 0.6 J/node
Initial energy of advanced nodes (1+ α ). E0 J/node
Emin 0.3J
Broadcast range 50 m
Energy dissipation by the nodes while performing different operations are as follows:
Two models for the radio hardware energy dissipation are considered: free space and multipath fading where the
transmitter consumes energy to run the radio electronics and the power amplifier, and the receiver dissipates
energy to run the radio electronics. Both the free space (d2
power loss) and the multipath fading (d4
power loss)
channel models are used in this paper, depending on the distance between the transmitter and receiver. If the
distance is less than a threshold d0, the free space model is used; otherwise, the multipath model is used.
Thus, to transmit a k bit message a distance d, the radio expends [3]:
ETx (k,d) = k Eele + k εfs d2
, if d < d0
ETx (k,d) = k Eele + k εmp d4
, if d < d0……….. (1)
To receive this message, the radio expends:
ERx (k) = k Eele…………. (2)
Where, Eelec is the electronics energy; εfs and εmp are the amplifier energy of the free space model and the
multipath model.
3.2 Hetero Leach operation
The operation of the network starts with plotting of the nodes in the sensor field in a random way. Out
of n (100) number of total nodes m(10%) percent of the nodes are randomly selected as advanced nodes and
denoted as „+‟ symbol in the plot. Rest of the nodes is normal nodes denoted by „O‟ symbol. The sink node is
denoted by „X‟ symbol and has deterministic position (50, 50) in the scenario given in fig 1(a).
In the first setup round top p(5%) percent of nodes are selected as CHs and marked as „*‟in the figure.
According to our criteria these CHs can serve as CHs for 889 numbers of steady state rounds without a need of
another setup round. Fig 1(a) shows 1st
setup phase and Fig 1(b) shows the next setup phase after 889 rounds. In
this round one of the CH‟s energy goes below Emin therefore converted to normal node, „O‟ (CH node at position
Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor ..
DOI: 10.9790/0661-18214246 www.iosrjournals.org 45 | Page
(62, 30)) and serves as normal node further. Thus dynamic cluster updating is done whenever any existing CH
loses its energy beyond a certain limit.
Fig 1(a): 1st
setup phase in 1st
round Fig 1(b): Next setup phase after 889 rounds
IV. Results
We executed all the three protocols many times with the same number of nodes n (100), in the similar
sensing area (100m X 100m) and same sink position (50, 50). Initial energy of nodes for Heteroleach is as given
in table 1, whereas, in LEACH all nodes have same initial energy of 1.08J. In case of SEP normal nodes have
0.8J of energy and advanced nodes have energy with factor α = 4.5 that is 3.6J. All protocols have same total
initial energy of network as 108J. Five execution results are considered here and the round number for first node
dead is listed in the Table No. 2 given below.
Table 2. First node dead
Protocol / Round No. LEACH SEP HETEROLEACH
1 941 1094 2256
2 974 1040 2052
3 899 1094 2150
4 953 1116 2059
5 936 1131 2081
Average 940 1095 2120
The average results given shows that the stable region of operation in Heteroleach is near about twice
with respect to LEACH and SEP protocols. Number of nodes alive per round out of 2500 rounds is plotted in
figure 2. Nodes start dying after 1000 to 1200 number of rounds in case of LEACH and SEP protocol whereas in
HETEROLEACH (HLEACH) it starts dying after 2100 to 2200 rounds.
Fig. 2: Number of Alive nodes per Round
V. Conclusion
Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor ..
DOI: 10.9790/0661-18214246 www.iosrjournals.org 46 | Page
In operation of WSN the energy constrained nodes need more amount of energy during communication
of sensed data to sink node. As compared to flat routing, hierarchical approach performs well because number of
communications to long distance sink is reduced. A lot of protocols have been designed to govern their
operations where LEACH has been referred as base protocol. Dynamic leader updating is the key idea of these
approaches. The operation of the network takes place in two phases, setup and steady state phase. Setup phase is
an overhead operation for balancing the working of the network. We considered energy consumption in these
phases and proposed Heteroleach approach in which minimum energy waste is incurred during setup phase. We
assign some nodes higher initial energy so that they work as leaders for longer time without a need of running
setup phase again and they work till some threshold energy remains with them. Our approach is performing well
and different simulations show that lifetime expectancy of the network is on an average 80% more as compared
to LEACH protocol and SEP protocol. The time of first node death is also prolonged to above 2000 rounds
which is less than 1000 in LEACH and near to 1000 in case of SEP protocol considered.
References
[1]. “A review on wireless sensor networks routing protocol: Challenge in energy perspective" Ismail Ahmedy, Md. Asri Ngadi, Syaril
Nizam Omar and Junaid Chaudhry, Scientific Research and Essays Vol. 6(26), pp. 5628-5649, 9 November, 2011.
[2]. “Compression of Various Routing Protocol in Wireless Sensor Network‟, Parul Kansal, Deepali Kansal, Arun Balodi, International
Journal of Computer Applications (0975 – 8887) Volume 5– No.11, August 2010.
[3]. “A Dynamic Clustering Protocol for Wireless Sensor Networks”, Zhi-kun Liu, Zhong Liu, 2011 International Conference on
Computational and Information Sciences , 978-0-7695-4501-1/11 , 2011 IEEE.
[4]. “Energy efficient and secure pattern based data aggregation for wireless sensor networks” , P.Nair ,H.Cam, S.Ozdemir and D. M
Espda, IEEE Confrence on cations IEEE Sensors, Volume: 2,2003,pp732-736.
[5]. “A survey on clustering algorithms for wireless sensor networks”, Ameer Ahmed Abbasi, Mohamed Younis, Computer
Communications 30 (2007) 2826–2841.
[6]. “Energy Efficient Multi Hierarchy Clustering Protocol for Wireless Sensor Network”, Babar Nazir, Halabi Hasbullah, 2010
International Conference on Intelligence and Information Technology (ICIIT 2010).
[7]. “PEGASIS: Power-Efficient in Sensor Information Systems” , S. Lindsay and C. Raghavendra, Proc. on the 2002 IEEE Aerospace
Conf. Mar. 2003, pp. 1-6
[8]. “Energy Aware Intra Cluster Routing for Wireless Sensor Networks”, Adeel Akhtar, Abid Ali Minhas, and Sohail Jabbar,
International Journal of Hybrid Information Technology Vol.3, No.1, January, 2010.
[9]. “Wireless Ad Hoc Networks: Basic Concepts”, High Frequency Electronics, March 2007.
[10]. “Density Based Protocol For Head Selection In Wireless Sensor Networks”, Priti Narwal, S.S. Tyagi, International Journal of Soft
Computing and Engineering (IJSCE) ISSN: 2231-2307, Volume-1, Issue-3, July 2011.
[11]. “A Study of Dynamic Clustering Method to Extend the Lifetime of Wireless Sensor Network”, Wernhuar Tarng, Kun-Jie Huang,
Li-Zhong Deng, Kun-Rong Hsie and Mingteh Chen, World Academy of Science, Engineering and Technology 61 2010.
[12]. “A Dynamic Clustering and Energy Efficient Routing Technique for Sensor Networks”Ming Yu, Senior Member, IEEE, Kin K.
Leung, Fellow, IEEE, and Aniket Malvankar, Student Member, IEEE, IEEE transactions on wireless communications, vol. 6, no. 8,
August 2007.
[13]. “An Adaptive Clustering Protocol for Medium-ScaleWireless Sensor Networks”, Xu Zhezhuang, Zhang Shiqing, Zhang Xiliang,
Bao Binghao, Li Peng, 1-4244-1312-5/07© 2007 IEEE.
[14]. “Energy efficient clustering and routing scheme for Wireless Sensor Networks”, Wenjun Liu, Jiguo Yu, 978-1-4244-4738-1/09,
2009 IEEE.
[15]. “Energy Efficient Hierarchical Clustering For Sensor Networks”, S.V.Manisekaran, Dr.R.Venkatesan, 2010 Second International
conference on Computing, Communication and Networking Technologies 978-1-4244-6589-7/102010 IEEE.
[16]. “Energy-Efficient Communication Protocol for Wireless Microsensor Networks”, Wendi Heinzelman, Anantha Chandrakasan, Hari
Balakrishnan,33rd Hawaii International Conference 2000 IEEE.
[17]. “Stable Sensor Network (SSN): A Dynamic Clustering Technique for Maximizing Stability in Wireless Sensor Networks”, A. B.
M. Alim Al Islam, Chowdhury Sayeed Hyder, Humayun Kabir, Mahmuda Naznin, Scientific Research jornal on Wireless Sensor
Network, 2010, 2, 538-554
[18]. ” Wireless Sensor Networks, Technology, Protocols, and Applications”, Kazem Sohraby, Daniel Minoli, Taieb Znati, John Wiley &
Sons Publication, 2007.
[19]. “Application-Specific Protocol Architectures for Wireless Networks”, W. R. Heinzelman, Ph.D. thesis, Massachusetts Institute of
Technology, 2000.
[20]. “SEP: A Stable Election Protocol for clustered heterogeneous wireless sensor networks”, Georgios Smaragdakis, Ibrahim Matta,
Azer Bestavros, work supported in part by NSF grants ITR ANI-0205294, EIA-0202067, ANI-0095988, and ANI-9986397
[21]. “Energy Saving in Heterogeneous Wireless Sensor Networks”, Rashmi Jain, Manali Kshirsagar, IJSER Volume 4, Issue8, January
2013 Edition (ISSN 2229-5518).

More Related Content

What's hot

Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...
Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...
Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...IOSR Journals
 
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
 
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
 
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
 
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...IJCSIT Journal
 
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...IJTET Journal
 
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...IJCNCJournal
 
Energy-Efficient Hybrid K-Means Algorithm for Clustered Wireless Sensor Netw...
Energy-Efficient Hybrid K-Means Algorithm for Clustered  Wireless Sensor Netw...Energy-Efficient Hybrid K-Means Algorithm for Clustered  Wireless Sensor Netw...
Energy-Efficient Hybrid K-Means Algorithm for Clustered Wireless Sensor Netw...IJECEIAES
 
Performance evaluation of energy
Performance evaluation of energyPerformance evaluation of energy
Performance evaluation of energyijp2p
 

What's hot (13)

Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...
Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...
Design Optimization of Energy and Delay Efficient Wireless Sensor Network wit...
 
1909 1913
1909 19131909 1913
1909 1913
 
C04501027035
C04501027035C04501027035
C04501027035
 
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
 
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
 
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...
 
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...
COMPARISON OF ENERGY OPTIMIZATION CLUSTERING ALGORITHMS IN WIRELESS SENSOR NE...
 
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...
Prolong Lifetime Analysis and Efficient Utilization of Energy in Heterogeneou...
 
H0421043049
H0421043049H0421043049
H0421043049
 
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...
ENERGY CONSUMPTION IMPROVEMENT OF TRADITIONAL CLUSTERING METHOD IN WIRELESS S...
 
Energy-Efficient Hybrid K-Means Algorithm for Clustered Wireless Sensor Netw...
Energy-Efficient Hybrid K-Means Algorithm for Clustered  Wireless Sensor Netw...Energy-Efficient Hybrid K-Means Algorithm for Clustered  Wireless Sensor Netw...
Energy-Efficient Hybrid K-Means Algorithm for Clustered Wireless Sensor Netw...
 
Performance evaluation of energy
Performance evaluation of energyPerformance evaluation of energy
Performance evaluation of energy
 
20320130406029
2032013040602920320130406029
20320130406029
 

Viewers also liked

Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...
Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...
Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...IOSR Journals
 
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...IOSR Journals
 
DBMS-A Toll for Attaining Sustainability of Eco Systems
DBMS-A Toll for Attaining Sustainability of Eco SystemsDBMS-A Toll for Attaining Sustainability of Eco Systems
DBMS-A Toll for Attaining Sustainability of Eco SystemsIOSR Journals
 
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...IOSR Journals
 
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver Disease
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver DiseaseCore Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver Disease
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver DiseaseIOSR Journals
 
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...IOSR Journals
 
Development of an Algorithm for 16-Bit WTM
Development of an Algorithm for 16-Bit WTMDevelopment of an Algorithm for 16-Bit WTM
Development of an Algorithm for 16-Bit WTMIOSR Journals
 
Orientation of Radar Antenna
Orientation of Radar AntennaOrientation of Radar Antenna
Orientation of Radar AntennaIOSR Journals
 
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...IOSR Journals
 

Viewers also liked (20)

E1302032932
E1302032932E1302032932
E1302032932
 
Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...
Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...
Analysis of Stress Distribution in a Curved Structure Using Photoelastic and ...
 
N010617783
N010617783N010617783
N010617783
 
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...
Effect of Different Levels of Cadmium, Lead and Arsenic on the Growth Perform...
 
E1103043235
E1103043235E1103043235
E1103043235
 
DBMS-A Toll for Attaining Sustainability of Eco Systems
DBMS-A Toll for Attaining Sustainability of Eco SystemsDBMS-A Toll for Attaining Sustainability of Eco Systems
DBMS-A Toll for Attaining Sustainability of Eco Systems
 
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...
Use of Polyvinylindene Fluoride (PVDF) and Lead Zirconate Titanate (PZT) In S...
 
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver Disease
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver DiseaseCore Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver Disease
Core Components of the Metabolic Syndrome in Nonalcohlic Fatty Liver Disease
 
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...
An Evaluation of the Effect of Epoxidized Thevetia Nerrifolia Seed Oil Modifi...
 
Development of an Algorithm for 16-Bit WTM
Development of an Algorithm for 16-Bit WTMDevelopment of an Algorithm for 16-Bit WTM
Development of an Algorithm for 16-Bit WTM
 
I1803026164
I1803026164I1803026164
I1803026164
 
B012511421
B012511421B012511421
B012511421
 
K010327983
K010327983K010327983
K010327983
 
H1802045666
H1802045666H1802045666
H1802045666
 
Orientation of Radar Antenna
Orientation of Radar AntennaOrientation of Radar Antenna
Orientation of Radar Antenna
 
C010332025
C010332025C010332025
C010332025
 
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...
Crack Detection for Various Loading Conditions in Beam Using Hilbert – Huang ...
 
C011131925
C011131925C011131925
C011131925
 
C012630913
C012630913C012630913
C012630913
 
B012330714
B012330714B012330714
B012330714
 

Similar to G018214246

Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...
Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...
Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...IOSR Journals
 
Efficient use of Energy in WSN using H-LEACH
Efficient use of Energy in WSN using H-LEACHEfficient use of Energy in WSN using H-LEACH
Efficient use of Energy in WSN using H-LEACHdbpublications
 
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...ijassn
 
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...IJCNCJournal
 
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
 
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
 
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...chokrio
 
Enhanced Threshold Sensitive Stable Election Protocol
Enhanced Threshold Sensitive Stable Election ProtocolEnhanced Threshold Sensitive Stable Election Protocol
Enhanced Threshold Sensitive Stable Election Protocoliosrjce
 
tankala srinivas, palasa
tankala srinivas, palasatankala srinivas, palasa
tankala srinivas, palasashiva782
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...ijp2p
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...ijp2p
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...ijp2p
 
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
 
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
 
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...ijwmn
 

Similar to G018214246 (20)

Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...
Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...
Energy Efficient Stable Election Protocol for Clustered Heterogeneous Wireles...
 
Ijecet 06 09_003
Ijecet 06 09_003Ijecet 06 09_003
Ijecet 06 09_003
 
Efficient use of Energy in WSN using H-LEACH
Efficient use of Energy in WSN using H-LEACHEfficient use of Energy in WSN using H-LEACH
Efficient use of Energy in WSN using H-LEACH
 
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...
THRESHOLD SENSITIVE HETEROGENOUS ROUTING PROTOCOL FOR BETTER ENERGY UTILIZATI...
 
1909 1913
1909 19131909 1913
1909 1913
 
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...
A PROPOSAL TO IMPROVE SEP ROUTING PROTOCOL USING INSENSITIVE FUZZY C-MEANS IN...
 
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
 
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
 
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...
Fuzzy Logic Approach to Improving Stable Election Protocol for Clustered Hete...
 
Enhanced Threshold Sensitive Stable Election Protocol
Enhanced Threshold Sensitive Stable Election ProtocolEnhanced Threshold Sensitive Stable Election Protocol
Enhanced Threshold Sensitive Stable Election Protocol
 
E017332733
E017332733E017332733
E017332733
 
tankala srinivas, palasa
tankala srinivas, palasatankala srinivas, palasa
tankala srinivas, palasa
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
 
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
PERFORMANCE EVALUATION OF ENERGY EFFICIENT CLUSTERING PROTOCOL FOR CLUSTER HE...
 
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
 
Ed33777782
Ed33777782Ed33777782
Ed33777782
 
Ed33777782
Ed33777782Ed33777782
Ed33777782
 
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)
 
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...
Magnify Network Lifetime in WSN by Reducing Data Aggregation Distance of Weak...
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 
C011121114
C011121114C011121114
C011121114
 

Recently uploaded

Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 

Recently uploaded (20)

Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 

G018214246

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 18, Issue 2, Ver. I (Mar-Apr. 2016), PP 42-46 www.iosrjournals.org DOI: 10.9790/0661-18214246 www.iosrjournals.org 42 | Page Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor Networks Rashmi Jain1 , Manali Kshirsagar2 , Latesh Malik3 1 Scholar, CSE Dept G.H.Raisoni College of Engg. Nagpur, Asst. Prof.,Dept of CSE, RGCER, Nagpur, India. 2 Professor, Dept of Computer Technology,Yeshwanrao Chavan College of Engg. Nagpur, India. 3 Professor, Dept of Computer Science & Engineering, G.H.Raisoni College of Engg. Nagpur, India. Abstract : Wireless sensor networks(WSN) are very much sensitive to energy consumption by the sensor nodes. Many protocols have been designed for efficient use of energy of the nodes so that the lifetime of the network can prolong. The sensors consume more energy in communication of sensed information to the base station as compared to actually sensing the physical phenomena and processing it. Therefore selection of proper routing protocol for communication is crucial in sensor networks. Hierarchical and clustered approaches are proven to be more efficient as compared to flat based organization of WSN. LEACH and other variants of dynamic clustering approaches perform well in case of homogeneous network but a lot of overhead energy is used for balanced operation of the network. We propose a smart heterogeneous method in which we do not need to run a setup round after each steady state round. Both the phases need near about same amount of energy. So if we reduce the number of setup operations which causes overhead energy loss, we can perform more steady state operations with the same energy nodes. To achieve this we use heterogeneous nodes. Some of the nodes have higher energy as compared to normal nodes which can serve as cluster heads for longer time without a need of setup operation repeatedly and save energy. A proper selection of a multiplying factor α for energy of high energy, high priority nodes, can prolong the lifetime up to twice as compared to LEACH. Keywords: heterogeneous nodes, multiplying factor α, network lifetime, dynamic clustering, setup phase, steady state phase I. Introduction Wireless sensor networks are used in many applications now days. But they have a very important characteristic that sensor nodes‟ battery power is limited and they are not easy to recharge. All the sensors have to sense the monitored phenomena and convey the data to the base station. Power requirement is more for communication as compared to sensing or some processing at the node. If all the nodes start sending the data separately to the base station then to much energy will be consumed in communication and node‟s energy will drain soon. Therefore Heinzelman proposed a beneficial strategy, Low Energy Adaptive Clustering Hierarchy (LEACH), for hierarchical organization of nodes. This protocol is more energy efficient as compared to flat routing. Each round of data transmission consists of two phases namely setup phase and steady state phase. Clusters are formed in the first phase. Cluster head and member nodes are selected and a schedule of data transmission is communicated to all members. Actual data gathering and data transmission to base station is done in second phase. All the nodes are having same initial energy and operation of CH is more energy intensive. So to balance the energy consumption dynamic clustering is used. The setup phase energy is an overhead energy and our analysis proves that this energy is on an average 100% of the energy requirement by steady state phase where actual data transmission to sink takes place. This overhead energy can be reduced if we use a heterogeneous approach. High energy nodes can be deployed to function as CHs so that frequency of setup phase and thereby energy waste in overhead operation is reduced. We propose here a heterogeneous approach in which a predetermined percentage of nodes will have high initial energy as compared to other normal nodes. Overall energy of the network will remain same as that of LEACH. These high energy nodes will have high priority to become the cluster heads in the setup phase. They will function as CHs till their energy do not reach a predetermined threshold Emin. Therefore steady state operation can be done for many rounds without a need of setup operation and that overhead energy can be saved. This energy saved will increase the lifetime expectancy of network. The paper is organized as follows. Section II contains some related work. Section III contains Proposed Heteroleach protocol description; section IV contains the simulation results and discussion. Finally section V contains the conclusion.
  • 2. Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor .. DOI: 10.9790/0661-18214246 www.iosrjournals.org 43 | Page II. Related Work As the WSN consist of large number of energy constrained nodes more energy is drained in transmitting and receiving the data as compared to other processing. Therefore we can use cluster based (Hierarchical) protocols. Cluster based protocols are used widely in wireless sensor networks, mobile ad- hoc networks as well as wireless ad- hoc networks. Several clustering techniques have already been introduced for partitioning nodes in these areas. LEACH is used as a basis for development of these protocols. 2.1 Low-energy adaptive clustering hierarchy(LEACH ) The idea of hierarchical routing approach proposed in LEACH has been an inspiration for many hierarchical routing protocols, although some protocols have been independently developed [2]. All the nodes have equal initial energy E0 and they are randomly placed in the sensor field. It includes two operations performed in each round of working, namely setup and steady state operation. Clusters of nodes are formed in setup phase where, a predetermined fraction of nodes, P, elect themselves as CHs as follows. A sensor node chooses a random number, r, between 0 and 1. If this random number is less than a threshold value, T(n), the node becomes a cluster head for the current round. The threshold value is calculated based on an equation that incorporates the desired percentage to become a cluster-head, the current round, and the set of nodes that have not been selected as a cluster-head in the last (1/P) rounds, denoted by G. It is given by T(n) = P/(1-P(r mod (1/P)), if n ϵ G Where, G is the set of nodes that are involved in the CH election. Each elected CH broadcast an advertisement message to the rest of the nodes in the network that they are the new cluster-heads. CHs create and broadcast a TDMA schedule for the member nodes for data transmission so that collisions are avoided. During the steady state phase, the sensor nodes can begin sensing and transmitting data to the cluster-heads. The cluster head node receives all the data, aggregates it before sending it to the base-station and transmits this data to base station. This data compaction will reduce the communication energy needed during transmission. In the next round again the setup and steady state operations are repeated. 2.2 Stable Election Protocol (SEP) This protocol uses a selected percentages (m) of nodes as advanced nodes which have more initial energy (by a factor α) as compared to the normal nodes. Normal nodes have initial energy E0 and advanced nodes have initial energy E0 * (1 + α). The system has α.m times more total energy as compared to scenario of LEACH. Weighed probabilities for normal and advanced nodes are used which is represented by Pnorm and Padv respectively. They are given by: Pnorm=P/(1 + α.m) Padv = P. (1 + α) /(1 + α.m) The thresholds of cluster head selection for these nodes is given by Tnorm(n) and Tadv(n): Tnorm (n) = Pnorm /(1- Pnorm (r mod (1/ Pnorm)), if n ϵ G’ Tadv (n) = Padv /(1- Padv (r mod (1/ Padv)), if n ϵ G’’ Where, G’ is set of normal nodes and G’’ is set of advanced nodes. Thus probability of advanced nodes to become a cluster head is increased and duration of epoch is also increased which increases the stability region of the network. But the overhead energy is still consumed similar to that of the LEACH protocol. Therefore we propose another approach of network operation in which the nodes will be arranged according to decreasing order of their energy and the nodes with the higher energy are given a chance to become a CH. The next section gives the details of this approach. III. Proposed Heteroleach Protocol We consider total no of nodes to be same as LEACH. m percent of nodes are advanced nodes and (1-m) percent of nodes are normal nodes. Advanced nodes have (1+ α) times more energy than normal nodes. Normal nodes have initial energy E0. The nodes are placed randomly in the sensing area away from base station therefore the energy consumption is also unequal for different nodes in different rounds. So we are arranging the nodes in descending order of their energy and allowing the top P percent of nodes to become the cluster heads. That is first i number of nodes will have more energy than other nodes k for all k > i. A set of p number of these nodes will be selected as cluster heads (CH). It can be given as follows. p maxpE = U {ni | Ei > Ek for all k>i } i=1 CH ={ni | ni ϵ maxpE }
  • 3. Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor .. DOI: 10.9790/0661-18214246 www.iosrjournals.org 44 | Page We have selected the probability of CHs to be 5%. After selection of CHs, the other nodes will join the nearest CH as its member node. CH determines the TDMA schedule for the member nodes and broadcasts it to them so that member nodes will be active during their slot and remain in sleep mode for rest of the time. This will save some energy of the nodes. With this the setup round will be completed and the steady state operation may start. All the CHs have high energy as compared to normal nodes therefore they can continue as CHs for longer time. We consider an energy threshold Emin and the CHs will function as CHs for next rounds till the energy of these node do not reach below this Emin. So more number of steady state rounds can be performed with a single setup operation. From the previous paper we can find that the energy needed in the setup operation is nearly equal to steady state operation. So if j number of steady state rounds are performed before any CH‟s energy goes below Emin, we can save j* (setup energy per round). Whenever one of the CH‟s energy goes below Emin, a setup phase is executed and the CH, who‟s energy is depleted below Emin will be further treated as normal node instead of advanced node. This node can contribute as a normal node in further rounds. With this arrangement we can prolong the duration of first node dead to a larger extent and get a wider stable region for the network operation. 3.1 Simulation parameters MATLAB Tool is used for development of the program. The scenario considered is same as that of the LEACH and SEP protocols. Just the initial energy of nodes is changed. For studying the effect of location of base station on performance, we can change the position of the base station. Also we can change the advanced node energy factor α, Emin and E0 for further analysis of working. Total initial energy of network is kept same as that of LEACH scenario. The radio characteristics are considered same as proposed by Heinzelman. The general parameters for simulation and study purpose are as mentioned in Table 1. Table 1: Parameters for Simulation Parameters Value Network size 100m x 100m Sink coordinates x = 50; y = 175 Eelec 50 nJ/bit Efs 100 pJ/bit/m2 Emp 0.0013 pJ/bit/m4 Number of nodes 100 Eaggregation 5 nJ/bit/signal Packet size 500 bytes Advanced node energy factor α 9 Initial energy of normal nodes E0 0.6 J/node Initial energy of advanced nodes (1+ α ). E0 J/node Emin 0.3J Broadcast range 50 m Energy dissipation by the nodes while performing different operations are as follows: Two models for the radio hardware energy dissipation are considered: free space and multipath fading where the transmitter consumes energy to run the radio electronics and the power amplifier, and the receiver dissipates energy to run the radio electronics. Both the free space (d2 power loss) and the multipath fading (d4 power loss) channel models are used in this paper, depending on the distance between the transmitter and receiver. If the distance is less than a threshold d0, the free space model is used; otherwise, the multipath model is used. Thus, to transmit a k bit message a distance d, the radio expends [3]: ETx (k,d) = k Eele + k εfs d2 , if d < d0 ETx (k,d) = k Eele + k εmp d4 , if d < d0……….. (1) To receive this message, the radio expends: ERx (k) = k Eele…………. (2) Where, Eelec is the electronics energy; εfs and εmp are the amplifier energy of the free space model and the multipath model. 3.2 Hetero Leach operation The operation of the network starts with plotting of the nodes in the sensor field in a random way. Out of n (100) number of total nodes m(10%) percent of the nodes are randomly selected as advanced nodes and denoted as „+‟ symbol in the plot. Rest of the nodes is normal nodes denoted by „O‟ symbol. The sink node is denoted by „X‟ symbol and has deterministic position (50, 50) in the scenario given in fig 1(a). In the first setup round top p(5%) percent of nodes are selected as CHs and marked as „*‟in the figure. According to our criteria these CHs can serve as CHs for 889 numbers of steady state rounds without a need of another setup round. Fig 1(a) shows 1st setup phase and Fig 1(b) shows the next setup phase after 889 rounds. In this round one of the CH‟s energy goes below Emin therefore converted to normal node, „O‟ (CH node at position
  • 4. Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor .. DOI: 10.9790/0661-18214246 www.iosrjournals.org 45 | Page (62, 30)) and serves as normal node further. Thus dynamic cluster updating is done whenever any existing CH loses its energy beyond a certain limit. Fig 1(a): 1st setup phase in 1st round Fig 1(b): Next setup phase after 889 rounds IV. Results We executed all the three protocols many times with the same number of nodes n (100), in the similar sensing area (100m X 100m) and same sink position (50, 50). Initial energy of nodes for Heteroleach is as given in table 1, whereas, in LEACH all nodes have same initial energy of 1.08J. In case of SEP normal nodes have 0.8J of energy and advanced nodes have energy with factor α = 4.5 that is 3.6J. All protocols have same total initial energy of network as 108J. Five execution results are considered here and the round number for first node dead is listed in the Table No. 2 given below. Table 2. First node dead Protocol / Round No. LEACH SEP HETEROLEACH 1 941 1094 2256 2 974 1040 2052 3 899 1094 2150 4 953 1116 2059 5 936 1131 2081 Average 940 1095 2120 The average results given shows that the stable region of operation in Heteroleach is near about twice with respect to LEACH and SEP protocols. Number of nodes alive per round out of 2500 rounds is plotted in figure 2. Nodes start dying after 1000 to 1200 number of rounds in case of LEACH and SEP protocol whereas in HETEROLEACH (HLEACH) it starts dying after 2100 to 2200 rounds. Fig. 2: Number of Alive nodes per Round V. Conclusion
  • 5. Heteroleach Protocol for Improvement of Stable Operation of Wireless Sensor .. DOI: 10.9790/0661-18214246 www.iosrjournals.org 46 | Page In operation of WSN the energy constrained nodes need more amount of energy during communication of sensed data to sink node. As compared to flat routing, hierarchical approach performs well because number of communications to long distance sink is reduced. A lot of protocols have been designed to govern their operations where LEACH has been referred as base protocol. Dynamic leader updating is the key idea of these approaches. The operation of the network takes place in two phases, setup and steady state phase. Setup phase is an overhead operation for balancing the working of the network. We considered energy consumption in these phases and proposed Heteroleach approach in which minimum energy waste is incurred during setup phase. We assign some nodes higher initial energy so that they work as leaders for longer time without a need of running setup phase again and they work till some threshold energy remains with them. Our approach is performing well and different simulations show that lifetime expectancy of the network is on an average 80% more as compared to LEACH protocol and SEP protocol. The time of first node death is also prolonged to above 2000 rounds which is less than 1000 in LEACH and near to 1000 in case of SEP protocol considered. References [1]. “A review on wireless sensor networks routing protocol: Challenge in energy perspective" Ismail Ahmedy, Md. Asri Ngadi, Syaril Nizam Omar and Junaid Chaudhry, Scientific Research and Essays Vol. 6(26), pp. 5628-5649, 9 November, 2011. [2]. “Compression of Various Routing Protocol in Wireless Sensor Network‟, Parul Kansal, Deepali Kansal, Arun Balodi, International Journal of Computer Applications (0975 – 8887) Volume 5– No.11, August 2010. [3]. “A Dynamic Clustering Protocol for Wireless Sensor Networks”, Zhi-kun Liu, Zhong Liu, 2011 International Conference on Computational and Information Sciences , 978-0-7695-4501-1/11 , 2011 IEEE. [4]. “Energy efficient and secure pattern based data aggregation for wireless sensor networks” , P.Nair ,H.Cam, S.Ozdemir and D. M Espda, IEEE Confrence on cations IEEE Sensors, Volume: 2,2003,pp732-736. [5]. “A survey on clustering algorithms for wireless sensor networks”, Ameer Ahmed Abbasi, Mohamed Younis, Computer Communications 30 (2007) 2826–2841. [6]. “Energy Efficient Multi Hierarchy Clustering Protocol for Wireless Sensor Network”, Babar Nazir, Halabi Hasbullah, 2010 International Conference on Intelligence and Information Technology (ICIIT 2010). [7]. “PEGASIS: Power-Efficient in Sensor Information Systems” , S. Lindsay and C. Raghavendra, Proc. on the 2002 IEEE Aerospace Conf. Mar. 2003, pp. 1-6 [8]. “Energy Aware Intra Cluster Routing for Wireless Sensor Networks”, Adeel Akhtar, Abid Ali Minhas, and Sohail Jabbar, International Journal of Hybrid Information Technology Vol.3, No.1, January, 2010. [9]. “Wireless Ad Hoc Networks: Basic Concepts”, High Frequency Electronics, March 2007. [10]. “Density Based Protocol For Head Selection In Wireless Sensor Networks”, Priti Narwal, S.S. Tyagi, International Journal of Soft Computing and Engineering (IJSCE) ISSN: 2231-2307, Volume-1, Issue-3, July 2011. [11]. “A Study of Dynamic Clustering Method to Extend the Lifetime of Wireless Sensor Network”, Wernhuar Tarng, Kun-Jie Huang, Li-Zhong Deng, Kun-Rong Hsie and Mingteh Chen, World Academy of Science, Engineering and Technology 61 2010. [12]. “A Dynamic Clustering and Energy Efficient Routing Technique for Sensor Networks”Ming Yu, Senior Member, IEEE, Kin K. Leung, Fellow, IEEE, and Aniket Malvankar, Student Member, IEEE, IEEE transactions on wireless communications, vol. 6, no. 8, August 2007. [13]. “An Adaptive Clustering Protocol for Medium-ScaleWireless Sensor Networks”, Xu Zhezhuang, Zhang Shiqing, Zhang Xiliang, Bao Binghao, Li Peng, 1-4244-1312-5/07© 2007 IEEE. [14]. “Energy efficient clustering and routing scheme for Wireless Sensor Networks”, Wenjun Liu, Jiguo Yu, 978-1-4244-4738-1/09, 2009 IEEE. [15]. “Energy Efficient Hierarchical Clustering For Sensor Networks”, S.V.Manisekaran, Dr.R.Venkatesan, 2010 Second International conference on Computing, Communication and Networking Technologies 978-1-4244-6589-7/102010 IEEE. [16]. “Energy-Efficient Communication Protocol for Wireless Microsensor Networks”, Wendi Heinzelman, Anantha Chandrakasan, Hari Balakrishnan,33rd Hawaii International Conference 2000 IEEE. [17]. “Stable Sensor Network (SSN): A Dynamic Clustering Technique for Maximizing Stability in Wireless Sensor Networks”, A. B. M. Alim Al Islam, Chowdhury Sayeed Hyder, Humayun Kabir, Mahmuda Naznin, Scientific Research jornal on Wireless Sensor Network, 2010, 2, 538-554 [18]. ” Wireless Sensor Networks, Technology, Protocols, and Applications”, Kazem Sohraby, Daniel Minoli, Taieb Znati, John Wiley & Sons Publication, 2007. [19]. “Application-Specific Protocol Architectures for Wireless Networks”, W. R. Heinzelman, Ph.D. thesis, Massachusetts Institute of Technology, 2000. [20]. “SEP: A Stable Election Protocol for clustered heterogeneous wireless sensor networks”, Georgios Smaragdakis, Ibrahim Matta, Azer Bestavros, work supported in part by NSF grants ITR ANI-0205294, EIA-0202067, ANI-0095988, and ANI-9986397 [21]. “Energy Saving in Heterogeneous Wireless Sensor Networks”, Rashmi Jain, Manali Kshirsagar, IJSER Volume 4, Issue8, January 2013 Edition (ISSN 2229-5518).