SLTP: Scalable Lightweight Time Synchronization Protocol for Wireless Sensor Network

Size: px
Start display at page:

Download "SLTP: Scalable Lightweight Time Synchronization Protocol for Wireless Sensor Network"

Transcription

1 SLTP: Scalable Lightweight Time Synchronization Protocol for Wireless Sensor Network Sepideh Nazemi Gelyan, Arash Nasiri Eghbali 2, Laleh Roustapoor 2, Seyed Amir Yahyavi Firouz Abadi 3, and Mehdi Dehghan 2 Dept. Of Computer Engineering, Islamic Azad University, Firouzkooh Branch 2 Computer Engineering Department, Amirkabir University of Technology 3 Electrical & Computer Engineering Department, University of Tehran s.nazemi@iaufb.ac.ir, {eghbali, roustapoor, dehghan}@aut.ac.ir, a.yahyavi@ut.ac.ir Abstract. In wireless sensor networks, time synchronization is a critical problem. In this paper, we propose SLTP, a Scalable Lightweight Time-synchronization Protocol for wireless sensor networks. By using passive clustering and linear regression SLTP can reduce the energy consumption of network nodes and also decrease the overhead of creating and maintaining the clusters. Moreover SLTP uses linear regression to compute the time. Therefore, it can calculate the clock skew and offset between each node and its cluster head in order to estimate the local time of remote nodes in the future or the past. Simulation results show that by this we can gain considerable improvements in power consumption, accuracy and scalability in comparison to similar algorithms. Introduction Recently a new kind of wireless networks has emerged, one that has cheaper and smaller nodes []. These nodes are sensors which gather and process information from the physical and real world. They are used for geophysical monitoring and observing the special environments such as war zones, wild life, etc. Special and strategic applications of these networks in inaccessible and dangerous environments can cause some restrictions for network managers. For instance, the managers are unable to access nodes for recharging, reconfiguring and reprogramming. So when the nodes are damaged or their batteries are discharged, they are neither recyclable nor reprogrammable [8]. In sensor networks, the main reason for nodes failure is the discharge of batteries. Energy efficiency is a critical issue in wireless sensor networks [2]; therefore, using energy efficient programs and algorithms on these nodes is of great significance [2]. One of the most important problems in computer networks, including wireless sensor networks, is time synchronization among nodes. In view of the fact that wireless sensor networks are used for monitoring strategic environments, the accuracy of the information gathered is crucial. Information accuracy highly depends on time [8]; as a result, time synchronization plays an important role. Traditional time synchronization H. Zhang et al. (Eds.): MSN 2007, LNCS 4864, pp , Springer-Verlag Berlin Heidelberg 2007

2 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN 537 protocols are not suitable for sensor networks [2, 8]. For example NTP consumes too much energy in order to exchange the required messages and requires using GPS which is costly for sensor nodes [8]. Over the past few years, many time synchronization algorithms have been suggested. The main goals of these algorithms were to increase the time synchronization accuracy and to decrease the power consumption. RBS [] is one of the most cited protocols in this field. It synchronizes a set of receivers by using linear regression; in other words, RBS presents a way that enables nodes to calculate local time of remote nodes in proportion to their local times. This protocol is not scalable and in case of increase in the number of nodes its efficiency decreases significantly. Although RBS presents a solution for increasing the accuracy, it extremely suffers the network collisions. Some algorithms such as TPSN and LTS [3, 2] use tree construction. In general, in these algorithms, increase in the depth of the tree results in higher error rates. Also the creation and maintenance of the tree causes high overhead. In addition, tree-scanning algorithms require having some global information about the network which is inconsistent with distribution concept; indeed, wireless sensor networks are distributed systems that do not have access to such information [2, 2]. Some algorithms like PCHTS [6] and PCTS [5] use clustering techniques. PCHTS suffers high overhead due to costly creation and maintenance of the clusters. PCTS uses the passive clustering concept, which results in efficient energy consumption; on the other hand, it frequently has to set the node s clock to calculated values which leads to high-energy consumption by CPU. These values are calculated using the averaging technique. By using passive clustering, our proposed protocol not only decreases the nodes energy consumption but also reduces the overhead of creation and maintenance of the clusters. Moreover, we use linear regression for computing skew and offset for clock of each node in proportion to its cluster head. This helps nodes to estimate the local time of remote nodes in the future or the past. We used NS2 for simulating and evaluating our model. The organization of this paper is as follows: We first review related works in Section 2. In Section 3, first we discuss passive clustering (3.) as a basis for our method; afterwards we will describe our protocol in detail. In section 3.4, we demonstrate the theoretical analysis of our method. Error analysis is discussed in section 3.5. Section 4 presents our simulations setup and results. Protocol overhead is discussed in section Finally, we offer our conclusions and describe our plans for future work in section 5. 2 Related Works RBS [] synchronizes a set of receivers by using the available broadcasting channel in the network physical layer. The reference node broadcasts a predefined number of synchronization packets to its neighbors and these packets are received approximately at the same time. At this time receivers record their local times. After that, they exchange the received times with their neighbors. Next, they use linear regression for computing clock offset and skew corresponding to their neighbors. RBS does not readjust the clock. Also it does not consider the nondeterministic errors such as send time delay and access time delay, since broadcasting creates the same

3 538 S.N. Gelyan et al. amount of these errors for all nodes. The most important disadvantage of RBS is that it is not scalable. In other words, by increasing the number of nodes, synchronization accuracy falls and the number of exchanged messages for synchronization increases. LTS [2] creates a low-depth spanning tree composed of the nodes in the network, and uses a pair-wise synchronization algorithm for each one of the two nodes on the same edge of the tree [2, 3]. Reference node starts time synchronization and it continues until all leaves are synchronized. LTS uses Breadth-first-search algorithm which has higher communication overhead compared to other tree-construction algorithms. Also executing BFS in distributed systems is difficult. TPSN [3] has two phases. At the first phase, level discovery phase, a tree is created. At the second phase, the synchronization phase, each node in i th level synchronies itself with the node in (i-) th level by using a pair-wise synchronization algorithm. TSYNC [4] uses Multi channel nodes. This attribute results in lower collision rates. Each node has two channels, control and clock channel. All nodes use the same control channel but clock channel is unique for each node. Algorithm has two protocols. One of them is HRTS which is used for synchronizing the whole network and the other one is ITR which lets each node to synchronize itself on-demand. Each node that wants to be synchronized sends an ITR request message to its parent and this is repeated until the request message reaches the base station. The base station returns its clock though the clock channel to the requesting node. TSYNC uses broadcasting like RBS, but it has less overhead than RBS. Disadvantage of this algorithm is that we made an assumption about having multi channel sensor nodes which is not always the case. CHTS [6] uses clustering technique and nodes are able to change their radio ranges. Network is not homogenous, some nodes are high performance, and some are low performance. Cluster heads are selected from high performance nodes. CHTS has three sub algorithms; cluster head tree construction, cluster member tree construction, and the synchronization algorithm. CHTS makes too many assumptions in order to select cluster heads and cluster members. Moreover, algorithm extremely suffers from collisions, if the number of nodes increases. PCTS [5] uses passive clustering and overhearing in time synchronization phase. It has two phases. At first cluster heads collect clock information from members of their clusters. Next, they calculate the average value and send the calculated clock to members of their clusters. Some nodes that are members of more than one cluster have to calculate the average clock of all of their cluster heads and send the calculated clock to them. This algorithm has to set clock continuously which results in more power consumption and in order to do this it has to send lots of time synchronization packets which in turn causes a lot of collisions, during the time synchronization phase. 3 Protocol Description 3. Review on Passive Clustering Passive clustering is a method for creating clusters with less overhead than other methods [4]. Its setup time is very short and clustering the network is fast. The most eager node to become cluster head starts this procedure [5]. In our implementation this node broadcasts a special packet with a flag. Flag s value can be either ø or and

4 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN 539 the initial value is ø. The nodes that receive this packet will become cluster members and change the flag to, and then rebroadcast it. Adjacent nodes that receive it in turn will become cluster head and change the flag to ø and then broadcast too. This procedure is repeated until the whole network is scanned. During this procedure, some nodes receive packets from two or more cluster heads. These nodes change their status to gateway [5, 5]. We will discuss passive clustering in more detail in section Assumptions Time synchronization is done between cluster members and their cluster heads based on the assumption that cluster members do not need to exchange messages with each other, because analyzing data and query processing is done by cluster heads. However, time synchronization among cluster members of the same cluster or different clusters is possible. The nodes have the same abilities such as power level, radio range, etc. Nodes are able to change their status to cluster head, cluster member or gateway. Our algorithm does not require nodes to readjust their clocks. The use of linear regression for calculating drift between nodes clocks enables them to estimate the time of one another. This method has two advantages [2]:. Clock oscillators all tick at different rates resulting in different clock disciplines. We let each clock to work with its discipline. 2. Clocks do not require continuous readjustments by CPU which is important for efficient energy consumption. We do not employ a global time in our algorithm since having only local times is sufficient and more suitable for sensor networks applications [, 3]. However, using a global time like UTC is also possible. 3.3 Scalable Lightweight Time Synchronization Protocol Our Algorithm has two phases: configuration phase and synchronization phase. We will describe them below Configuration Phase The intent of this phase is to determine the cluster heads. The procedure for selecting cluster heads influences on network's lifetime [0]. There are many ways to select cluster heads []. We use a method close to passive clustering with a little modification so that it fits our needs. Configuration phase is divided into two parts based on network being static or dynamic. Static mode: The most eager node to become cluster head changes its status to cluster head and broadcasts a packet with a Boolean flag. Flag s value is set to ø. Every node that receives this packet changes its status to cluster member and sets the packet s flag to and rebroadcasts it. Nodes that have received this packet change their status to cluster head. They set the packet's flag to ø and broadcast it again. This is repeated until the whole network is covered. Each node stores its cluster head address. Nodes that receive this packet from 2 or more cluster heads will become

5 540 S.N. Gelyan et al. gateway. Gateways must send an ACK message to introduce themselves to their cluster heads. This ACK message contains the list of their cluster heads. Sending an ACK message enables cluster head to select one gateway between clusters. Having one gateway simplifies the routing. We used the following four rules in our implementation of passive clustering:. If a cluster member receives the packet from another cluster member, it must not rebroadcast the packet. 2. If a cluster head receives the packet from another cluster head, it must change its status to cluster member and rebroadcast the message with flag value. 3. If a cluster member receives the packet from another cluster s head or vice versa, it will not rebroadcast the packet. 4. If a node does not receive any packets for a specified amount of time, it must set its status to cluster head and broadcasts a message with flag value ø. Dynamic mode: In dynamic mode, only the selection of the cluster heads is done. Cluster members and gateways are determined in synchronization phase. Because of the network dynamics, a node that was a gateway in the past may not be one now and a node that belonged to cluster i may now belong to cluster j. We believe, our algorithm performs relatively well in dynamic networks. In case of applications that the rate of change in network structure is faster than configuration phase s speed, our algorithm may not work well. In dynamic networks configuration procedure must be executed before doing time synchronization. This procedure helps in uniform distribution of cluster heads Synchronization Phase After configuration phase is finished and cluster heads are selected, synchronization phase starts. During a defined time period which we call setup time cluster heads start broadcasting some packets in random intervals. These packets contain local times of cluster heads. When one of these packets is received by a cluster member, the cluster member records its own local time. In dynamic mode by receiving a packet, cluster members can figure out which cluster they belong to. By using linear regression method each cluster member can calculate its clock offset and clock skew in proportion to its cluster head. In dynamic mode, if a node receives packets from two or more cluster heads, it will become gateway. In general, gateway s task is to convert local time of cluster heads to each other. In static mode, time synchronization is repeatedly done in specific time intervals. If a node needs to synchronize itself with another node during this period, it can broadcast an independent time synchronization request message. The first cluster head that receives this message starts synchronization procedure and broadcasts synchronization packets. In dynamic mode as mentioned before, we have to execute configuration phase before each synchronization phase, in order to have a uniform distribution of cluster heads. If during synchronization phase a node does not receive any packets, node changes its status to cluster head and starts broadcasting synchronization packets with its local time. If the network's distribution is uniform, we may hope that this node will be able to connect through one gateway to the network.

6 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN 54 Below is the pseudo-code of our algorithm: CH: Cluster Header; CM: Cluster Member G: Gateway; h i: local time of node i Program timesync (output); Begin Configuration (base station); {in this part CHs and CMs are selected by our Passive Clustering algorithm} For each n i in CH set do broadcast (ID, h i ); For each n i in CM set do Begin Receive (ID, h i ); Store (ID, h i ); Compute regression (h i, h j ); Co=clock offset (h i, h j ); Cs=clock skew (h i, h j ) End; If (n k is in the CM set) and (n k has received from more than one CH) Then Begin n k.status:= G; {add n k to gateways set} For each i that has sent packet to same n k do Compute regression (h i, h k ) {i is the member of CH that has sent a packet to the same n k } End; If there is n m that does not receive any packet from CH then Broadcast (ID, h m ); End. 3.4 Analysis by Example To describe our analysis clearly we use some examples. After execution of our algorithm, each node except for the cluster heads calculates the following equation: h chi = αh cmi + β. () Which α is the clock skew and β is the clock offset between cluster head and cluster member. Assume that CM at its local time h cml sees an object in location (X, Y ). It calculates the local time of its cluster head, in proportion to its own local time of the object s observation. CM sends this time and the location of the object to its cluster head. This procedure is repeated by CM 2. CM 2 sees the object in its local time h cm2 in (X 2, Y 2 ). Therefore cluster head can calculate the speed and direction of the moving object (figure -a). Fig.. CH receives the observation time of the object from CM and CM2, (b) CM and CM2 are synchronizing their clocks

7 542 S.N. Gelyan et al. If two nodes in the same cluster want to exchange information, calculating their own α and β is sufficient. By the following equation, they can calculate time of each other (figure -b). () CM : h (2) h CM CM 2 : h α = α 2 CH CH h = α h = α h CM2 CM 2 CM2 + β + β 2 β2 β + α In general we can formulate the relation between local time of two nodes as follows. CM 2 can convert its local time to CM s local time by using equation 2 (figure 2). In spite of the fact that this calculations have error, if α and β are calculated accurately in each hop, they would remove each other s effect (Equation 3). As result, we will have fairly constant error amount in multi-hop time synchronization algorithm. In our Implementation it is not necessary for CM to have all of parameters (α and β) along the path from CM to CM2. The calculation is done in each node in the path until the packet reaches its destination. (2) Fig. 2. Two nodes from different clusters are synchronizing their clocks α2i i= h CM = h n α 0 Π = j= n i= 2i CM2 + n / 2 β2i β α i= 2i 2i i j= i j= α α 2 j 2 j (3) 3.5 Error Analysis n: Number of nodes in the path between source & destination By broadcasting we can ignore some sources of error in time synchronization [] such as send time and access time delay. These errors depend on parameters that we cannot control; for instance, the load on the sender's CPU or network s load. By broadcasting, these delays become similar for the whole network and as a result we can ignore them [8, ]. In addition, the speed of electro-magnetic signal in air is almost C (Light speed) [] and propagation delay is calculated by this equation: T= x/v, v =c.

8 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN 543 As a result, since sensors have limited range, propagation delay is very small and can be neglected. The remaining error is received time delay, according to [6] we can receive and process the packet in an interrupt. Calculating α and β in each hop has computational error as was mentioned in section 3.4. Therefore, as the path between source and destination node increases the error grows higher. 4 Performance Evaluation For performance evaluation we used NS 2.3. We selected PC_Avg [5] and RBS [] for performance comparison and created the same test conditions for all of them during the simulation time. We compare SLTP to PC_Avg in terms of accuracy and scalability. Also, we compare it to RBS for overhead and scalability. 4. Simulation Setup Simulation and evaluation of different algorithms that require different clock configurations on one system are very difficult. To create different clock behavior for each node, we use a different clock drift and offset. The values are selected randomly and each node's clock works according to these parameters. As mentioned in [], typically two nodes clock will drift -00µsecond per second. Also we assume that maximum clock offset is second. This pessimistic offset should cover for the propagation delay. All nodes have a range of 00 meters and are located in 000*000 square meters area. Network topology is grid. Default number of nodes is 40 and default simulation time is 0450s. We run the synchronization algorithm every 000 seconds. Each cluster head sends 0 initial synchronization packets (which contain its local time) with a second delay between each transmission. 4.2 Time Routing When a node wants to be synchronized with another one, it has to broadcast a request message. If this node is a cluster member or a gateway, it must send this request to its cluster head(s). The cluster head broadcasts this message to its cluster and saves the address of requesting node as the last hop of this message. Each gateway in this cluster, after receiving this packet, sends it to its entire cluster heads except the one that sent this packet in the first place. Cluster heads that receive this packet will save the gateway s address as the last hop of this message. This procedure is repeated until the packet reaches the destination node. A path is made between requesting node and destination node. In the reverse path in each hop the clock of destination node is converted until it reaches requesting node. 4.3 Simulation Results Since in each run, different paths between source and destination are selected we decided to run the algorithm 0 times for each different situation and calculate the average of error for each run. If gateways with small clock drifts and skew are chosen along the path, average of error will be smaller.

9 544 S.N. Gelyan et al Time Synchronization Results Figure 3 shows the average of error versus simulation time. It is clear that as time passes, error of SLTP increases gradually, while in case of PC_Avg this increase is dramatic. Since clock of each node works with a different drift and offset, and the difference among clusters clock can be significant, PC_Avg algorithm will not be able to appropriately synchronize different clusters. Because SLTP uses linear regression, it is able to manage this problem. Figure 4, shows the influence of number of hops increase on the error. As indicated, SLTP's error in all situations was significantly less than PC_Avg's. Besides, as the number of hops increases, error ratio of PC_Avg goes up dramatically but in case of SLTP this increase is gradual. Average of error in SLTP in one hop is 0.3± 0.06s. Increasing the number of hops has a little effect on SLTP s error. The reason for this is mentioned in section 3.4. Figure 5 compares the scalability of SLTP versus PC_Avg. We can observe that error of SLTP is almost stable and SLTP s error seems independent of the number of nodes. Figure 6 shows the two algorithms' tolerance under different drifts. Fig. 3. Comparison of SLTP s and PC_Avg s error versus simulation time Fig. 4. Comparison of SLTP s and PC_Avg s error versus number of hops

10 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN 545 Fig. 5. Comparison of SLTP and PC_Avg in scalability Fig. 6. Comparison of SLTP s and PC_Avg s tolerance under different drift Overhead By using passive clustering and linear regression we decreased the number of exchanged messages in SLTP. Table shows the number of messages used to synchronize the whole network for SLTP and two similar algorithms. Table. Number of transmitted messages for the following algorithms Number of messages C * m C*(2 + K) N 2 * m Algorithm SLTP PC_Avg RBS C: Number of Cluster Heads K: Number of Cluster Members N: Number of Nodes m: Number of Synchronization Packets C<<K<<N

11 546 S.N. Gelyan et al. Note that although the number of cluster members in PC_Avg is usually less than the number of synchronization packets, since all of the cluster members send their clocks to their cluster heads at the same time the possibility of collision and packet loss increases. 5 Conclusion We introduced the SLTP for time synchronization in wireless sensor network. By using passive clustering and linear regression, not only the accuracy of time synchronization in comparison to similar algorithms is improved but also we were able to reduce the consumption of energy in each node by decreasing the number of exchanged messages. Because of the fact that by expanding the network error doesn't increase, SLTP is scalable. By using linear regression SLTP can tolerate the changes in drift under various situations. SLTP is the best fit for the following situations: When the lifetime of the network is very important, when we need a large network to monitor a wide area, or when our application requires medium time accuracy. From our point of view SLTP will work in dynamic networks as well as in static networks. In this paper we evaluated SLTP only on static networks. This protocol should be tested on dynamic networks as well. References. Elson, J., Girod, L., Estrin, D.: Fine-Grained Network Time Synchronization Using Reference Broadcasts. In: 5th Symposium on Operating Systems Design and Implementation, vol. 36, pp ACM Press, USA (2002) 2. van Greunen Jan Rabaey, J.: Lightweight Time Synchronization for Sensor Networks. In: WSNA. 2nd ACM International Workshop on Wireless Sensor Networks and Applications, pp. 9 (2003) 3. Ganeriwal, S., Kumar, R., Srivastava, M.B.: Timing-sync Protocol for Sensor Networks. In: st International Conference on Embedded Networked Sensor Systems, pp (2003) 4. Dai, H., Han, R.: TSync: A Lightweight Bidirectional Time Synchronization Service for Wireless Sensor Networks. In: ACM SIGMOBILE Mobile Computing and Communications Review archive, vol. 8, pp ACM Press, USA (2004) 5. Mamun-Or-Rashid, Md., Hong, C.S., Chi-Hyung: Passive Cluster Based Clock Synchronization in Sensor Network. In: Advanced Industrial Conference on Telecommunications AICT/SAPIR/ELETE 2005, pp (2005) 6. Kim, H., Kim, D., Yoo, S.-e.: Cluster-based Hierarchical Time Synchronization for Multihop Wireless Sensor Networks. In: 20th International Conference on Advanced Information Networking and Applications, pp (2006) 7. Sundararaman, B., Buy, U., Kshemkalyani, A.D.: Clock Synchronization for Wireless Sensor Networks: A Survey. Ad Hoc Networks 3(3), (2005) 8. Römer, K.: Time Synchronization and Localization in Sensor Networks PhD thesis. No. 606, ETH Zurich, Switzerland (June 2005) 9. Blum, P., Meier, L., Thiele, L.: Improved Interval-Based Clock Synchronization in Sensor Networks. In: IPSN th International Symposium on Information Processing in Sensor Networks, pp (2004)

12 SLTP: Scalable Lightweight Time Synchronization Protocol for WSN Younis, O., Fahmy, S.: Distributed Clustering in Ad-hoc Sensor Network: a Hybrid, Energy-Efficient Approach. In: 23th Annual Joint Conference of the IEEE Computer and Communications Societies, vol., pp (2004). Bush, S.F.: Low-Energy Sensor Network Time Synchronization as an Emergent Property. In: ICCN th International Conference on Computer Communications and Networks, pp (2005) 2. Elson, J., Römer, K.: A New Regime for Time Synchronization. ACM Computer Communication Review (CCR) 33(), (2003) 3. Bandyopadhyay, S., Coyle, E.J.: An Energy Efficient Hierarchical Clustering Algorithm for Wireless Sensor Network. In: IEEE INFOCOM, pp (2003) 4. Ha c, A.: Wireless Sensor Network Designs. John Wiley & Sons, USA (2003) 5. Handziski, V., Kopke, A., Karl, H., Drytkiewicz, C.F.W.: Improving the Energy Efficiency of Directed Diffusion Using Passive Clustering. In: European workshop on wireless sensor network. EWSN 2004, pp (2004)

Chapter 6 Ti T me m s ynchronization

Chapter 6 Ti T me m s ynchronization Chapter 6 Time synchronization Outline 6.1. The Problems of Time Synchronization 6.2. Protocols Based on Sender/Receiver Synchronization 6.2.1. Network Time Protocol (NTP) 6.2.2. Timing-sync Protocol for

More information

Chapter 6 Time synchronization

Chapter 6 Time synchronization Chapter 6 Time synchronization Outline 6.1. The Problems of Time Synchronization 6.2. Protocols Based on Sender/Receiver Synchronization Network Time Protocol (NTP) Timing-sync Protocol for Sensor Networks

More information

Reliable Time Synchronization Protocol for Wireless Sensor Networks

Reliable Time Synchronization Protocol for Wireless Sensor Networks Reliable Time Synchronization Protocol for Wireless Sensor Networks Soyoung Hwang and Yunju Baek Department of Computer Science and Engineering Pusan National University, Busan 69-735, South Korea {youngox,yunju}@pnu.edu

More information

Time Synchronization in Wireless Sensor Networks: CCTS

Time Synchronization in Wireless Sensor Networks: CCTS Time Synchronization in Wireless Sensor Networks: CCTS 1 Nerin Thomas, 2 Smita C Thomas 1, 2 M.G University, Mount Zion College of Engineering, Pathanamthitta, India Abstract: A time synchronization algorithm

More information

Enhanced Timing-Sync Protocol for Sensor Networks

Enhanced Timing-Sync Protocol for Sensor Networks Enhanced Timing-Sync Protocol for Sensor Networks Shi Kyu Bae Abstract The prominent time synchronization protocol for wireless sensor networks (WSN), Timing-sync Protocol for Sensor Networks (TPSN), was

More information

"Comparative study of: Different Time synchronization Techniques in WSN."

Comparative study of: Different Time synchronization Techniques in WSN. "Comparative study of: Different Time synchronization Techniques in WSN." Ms.Manisha T.Sonone 1, Prof.M.M.Pathan 2 1. student at GHRCE,Nagpur,India 2. Assistant Professor at GHRCE,Nagpur,India -----------------------------------------------------------------------------------------------------------------------------------------------

More information

Synchronization in Sensor Networks

Synchronization in Sensor Networks Synchronization in Sensor Networks Blerta Bishaj Helsinki University of Technology 1. Introduction... 2 2. Characterizing Time Synchronization... 2 3. Causes of clock desynchronization... 3 4. Algorithms...

More information

Symmetric Clock Synchronization in Sensor Networks

Symmetric Clock Synchronization in Sensor Networks Symmetric Clock Synchronization in Sensor Networks Philipp Sommer Computer Engineering and Networks Laboratory ETH Zurich 892 Zurich, Switzerland sommer@tik.ee.ethz.ch Roger Wattenhofer Computer Engineering

More information

Mobile Agent Driven Time Synchronized Energy Efficient WSN

Mobile Agent Driven Time Synchronized Energy Efficient WSN Mobile Agent Driven Time Synchronized Energy Efficient WSN Sharanu 1, Padmapriya Patil 2 1 M.Tech, Department of Electronics and Communication Engineering, Poojya Doddappa Appa College of Engineering,

More information

Study on Wireless Sensor Networks Challenges and Routing Protocols

Study on Wireless Sensor Networks Challenges and Routing Protocols International Research Journal of Applied and Basic Sciences 2013 Available online at www.irjabs.com ISSN 2251-838X / Vol, 5 (7): 824-828 Science Explorer Publications Study on Wireless Sensor Networks

More information

HRTS: a Hierarchical Reactive Time Synchronization protocol for wireless sensor networks

HRTS: a Hierarchical Reactive Time Synchronization protocol for wireless sensor networks HRTS: a Hierarchical Reactive Time Synchronization protocol for wireless sensor networks Saeid Pourroostaei Ardakani, Julian Padget, and Marina De Vos Computer Science Department, University of Bath, UK

More information

MTSF: A Timing Synchronization Protocol to Support Synchronous Operations in Multihop Wireless Networks

MTSF: A Timing Synchronization Protocol to Support Synchronous Operations in Multihop Wireless Networks MTSF: A Timing Synchronization Protocol to Support Synchronous Operations in Multihop Wireless Networks Jungmin So Dept. of Computer Science, and Coordinated Science Laboratory University of Illinois at

More information

Geographical Routing Algorithms In Asynchronous Wireless Sensor Network

Geographical Routing Algorithms In Asynchronous Wireless Sensor Network Geographical Routing Algorithms In Asynchronous Wireless Sensor Network Vaishali.S.K, N.G.Palan Electronics and telecommunication, Cummins College of engineering for women Karvenagar, Pune, India Abstract-

More information

Time Synchronization in Wireless Networks

Time Synchronization in Wireless Networks Page 1 of 13 Time Synchronization in Wireless Networks Author: Michael Roche tke961@gmail.com Abstract: Time Synchronization in wireless networks is extremely important for basic communication, but it

More information

State-Based Synchronization Protocol in Sensor Networks

State-Based Synchronization Protocol in Sensor Networks State-Based Synchronization Protocol in Sensor Networks Shang-Chih Hsu Wei Yen 1 1 Department of Computer Science and Engineering, Tatung University, Taipei, Taiwan, ROC shanzihsu@yahoo.com.tw, wyen@ttu.edu.tw

More information

Ad hoc and Sensor Networks Time Synchronization

Ad hoc and Sensor Networks Time Synchronization Ad hoc and Sensor Networks Time Synchronization Goals of this chaper Understand the importance of time synchronization in WSNs Understand typical strategies for time synchronization and how they are applied

More information

Comparison of Two Synchronization Protocol in Wireless Sensor Network

Comparison of Two Synchronization Protocol in Wireless Sensor Network Comparison of Two Synchronization Protocol in Wireless Sensor Network S.Rucksana 1, C. Babu 2, S.Saranyabharathi 3 P.G. Scholar, Department of ECE, Knowledge Institute of Technology, Salem, Tamil Nadu,

More information

Wireless Sensor Networks: Clustering, Routing, Localization, Time Synchronization

Wireless Sensor Networks: Clustering, Routing, Localization, Time Synchronization Wireless Sensor Networks: Clustering, Routing, Localization, Time Synchronization Maurizio Bocca, M.Sc. Control Engineering Research Group Automation and Systems Technology Department maurizio.bocca@tkk.fi

More information

Robust Multi-Hop Time Synchronization in Sensor Networks

Robust Multi-Hop Time Synchronization in Sensor Networks Robust Multi-Hop Time Synchronization in Sensor Networks Miklos Maroti, Branislav Kusy, Gyula Simon and Akos Ledeczi {miklos.maroti,branislav.kusy,gyula.simon,akos.ledeczi}@vanderbilt.edu phone: (615)

More information

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 7: TIME SYNCHRONIZATION Anna Förster

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 7: TIME SYNCHRONIZATION Anna Förster INTRODUCTION TO WIRELESS SENSOR NETWORKS CHAPTER 7: TIME SYNCHRONIZATION Anna Förster OVERVIEW 1. Clocks and Delay Sources 2. Requirements and Challenges 3. Time Synchronization Protocols 1. Lightweight

More information

ROAL: A Randomly Ordered Activation and Layering Protocol for Ensuring K-Coverage in Wireless Sensor Networks

ROAL: A Randomly Ordered Activation and Layering Protocol for Ensuring K-Coverage in Wireless Sensor Networks ROAL: A Randomly Ordered Activation and Layering Protocol for Ensuring K-Coverage in Wireless Sensor Networks Hogil Kim and Eun Jung Kim Department of Computer Science Texas A&M University College Station,

More information

Time Synchronization of Cognitive Radio Networks

Time Synchronization of Cognitive Radio Networks Time Synchronization of Cognitive Radio Networks Jari Nieminen, Riku Jäntti Department of Communications and Networking Helsinki University of Technology, Finland {jari.nieminen, riku.jantti}@tkk.fi Lijun

More information

A Survey of Time Synchronization Protocols for Wireless Sensor Networks

A Survey of Time Synchronization Protocols for Wireless Sensor Networks Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 2, Issue. 9, September 2013,

More information

Tri-Message: A Lightweight Time Synchronization Protocol for High Latency and Resource-Constrained Networks

Tri-Message: A Lightweight Time Synchronization Protocol for High Latency and Resource-Constrained Networks Tri-Message: A Lightweight Time Synchronization Protocol for High Latency and Resource-Constrained Networks Chen Tian 1 Hongbo Jiang 1 Xue Liu 2 Xinbing Wang 3 Wenyu Liu 1 Yi Wang 1 1 Department of EIE,

More information

Intra and Inter Cluster Synchronization Scheme for Cluster Based Sensor Network

Intra and Inter Cluster Synchronization Scheme for Cluster Based Sensor Network Intra and Inter Cluster Synchronization Scheme for Cluster Based Sensor Network V. Shunmuga Sundari 1, N. Mymoon Zuviria 2 1 Student, 2 Asisstant Professor, Computer Science and Engineering, National College

More information

UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks

UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks Sung-Hee Lee, Jong-Mu Choi, and Young-Bae Ko College of Information and Communication, Ajou University, South Korea shlee@dmc.ajou.ac.kr,

More information

ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing

ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing Jaekwang Kim Department of Electrical and Computer Engineering, Sungkyunkwan University, Suwon,

More information

Ratio-based time synchronization protocol in wireless sensor networks

Ratio-based time synchronization protocol in wireless sensor networks Telecommun Syst DOI 10.1007/s11235-008-9081-5 Ratio-based time synchronization protocol in wireless sensor networks Jang-Ping Sheu Wei-Kai Hu Jen-Chiao Lin Springer Science+Business Media, LLC 2008 Abstract

More information

Analysis of Cluster-Based Energy-Dynamic Routing Protocols in WSN

Analysis of Cluster-Based Energy-Dynamic Routing Protocols in WSN Analysis of Cluster-Based Energy-Dynamic Routing Protocols in WSN Mr. V. Narsing Rao 1, Dr.K.Bhargavi 2 1,2 Asst. Professor in CSE Dept., Sphoorthy Engineering College, Hyderabad Abstract- Wireless Sensor

More information

The Flooding Time Synchronization Protocol

The Flooding Time Synchronization Protocol The Flooding Time Synchronization Protocol Miklos Maroti, Branislav Kusy, Gyula Simon and Akos Ledeczi Vanderbilt University Contributions Better understanding of the uncertainties of radio message delivery

More information

Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks

Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.9, September 2017 139 Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks MINA MAHDAVI

More information

CHAPTER 2 WIRELESS SENSOR NETWORKS AND NEED OF TOPOLOGY CONTROL

CHAPTER 2 WIRELESS SENSOR NETWORKS AND NEED OF TOPOLOGY CONTROL WIRELESS SENSOR NETWORKS AND NEED OF TOPOLOGY CONTROL 2.1 Topology Control in Wireless Sensor Networks Network topology control is about management of network topology to support network-wide requirement.

More information

AN EFFICIENT MAC PROTOCOL FOR SUPPORTING QOS IN WIRELESS SENSOR NETWORKS

AN EFFICIENT MAC PROTOCOL FOR SUPPORTING QOS IN WIRELESS SENSOR NETWORKS AN EFFICIENT MAC PROTOCOL FOR SUPPORTING QOS IN WIRELESS SENSOR NETWORKS YINGHUI QIU School of Electrical and Electronic Engineering, North China Electric Power University, Beijing, 102206, China ABSTRACT

More information

An Energy Consumption Analytic Model for A Wireless Sensor MAC Protocol

An Energy Consumption Analytic Model for A Wireless Sensor MAC Protocol An Energy Consumption Analytic Model for A Wireless Sensor MAC Protocol Hung-Wei Tseng, Shih-Hsien Yang, Po-Yu Chuang,Eric Hsiao-Kuang Wu, and Gen-Huey Chen Dept. of Computer Science and Information Engineering,

More information

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET)

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET) INTERNATIONAL International Journal of Computer JOURNAL Engineering OF COMPUTER and Technology ENGINEERING (IJCET), ISSN 0976- & TECHNOLOGY (IJCET) ISSN 0976 6367(Print) ISSN 0976 6375(Online) Volume 4,

More information

Novel Cluster Based Routing Protocol in Wireless Sensor Networks

Novel Cluster Based Routing Protocol in Wireless Sensor Networks ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 32 Novel Cluster Based Routing Protocol in Wireless Sensor Networks Bager Zarei 1, Mohammad Zeynali 2 and Vahid Majid Nezhad 3 1 Department of Computer

More information

Connected Point Coverage in Wireless Sensor Networks using Robust Spanning Trees

Connected Point Coverage in Wireless Sensor Networks using Robust Spanning Trees Connected Point Coverage in Wireless Sensor Networks using Robust Spanning Trees Pouya Ostovari Department of Computer and Information Siences Temple University Philadelphia, Pennsylvania, USA Email: ostovari@temple.edu

More information

An Energy-efficient Distributed Self-organized Clustering Based Splitting and Merging in Wireless Sensor Networks

An Energy-efficient Distributed Self-organized Clustering Based Splitting and Merging in Wireless Sensor Networks RESEARCH ARTICLE OPEN ACCESS An Energy-efficient Distributed Self-organized Clustering Based Splitting and Merging in Wireless Sensor Networks Mrs.J.Monisha, PG scholar, Mrs.M.MuthuSelvi, Assistant Professor,

More information

IRI-MAC: An Improved Receiver Initiated MAC Protocol for Wireless Sensor Network

IRI-MAC: An Improved Receiver Initiated MAC Protocol for Wireless Sensor Network IRI-MAC: An Improved Receiver Initiated MAC Protocol for Wireless Sensor Network Md. Abir Hossain Department of Information and Communication Technology (ICT), Mawlana Bhashani Science and Technology University

More information

Enhanced Precision Time Synchronization for Wireless Sensor Networks

Enhanced Precision Time Synchronization for Wireless Sensor Networks Sensors 2011, 11, 7625-7643; doi:10.3390/s110807625 OPEN ACCESS sensors ISSN 1424-8220 www.mdpi.com/journal/sensors Article Enhanced Precision Time Synchronization for Wireless Sensor Networks Hyuntae

More information

Research Article MFT-MAC: A Duty-Cycle MAC Protocol Using Multiframe Transmission for Wireless Sensor Networks

Research Article MFT-MAC: A Duty-Cycle MAC Protocol Using Multiframe Transmission for Wireless Sensor Networks Distributed Sensor Networks Volume 2013, Article ID 858765, 6 pages http://dx.doi.org/10.1155/2013/858765 Research Article MFT-MAC: A Duty-Cycle MAC Protocol Using Multiframe Transmission for Wireless

More information

Modified Low Energy Adaptive Clustering Hierarchy for Heterogeneous Wireless Sensor Network

Modified Low Energy Adaptive Clustering Hierarchy for Heterogeneous Wireless Sensor Network Modified Low Energy Adaptive Clustering Hierarchy for Heterogeneous Wireless Sensor Network C.Divya1, N.Krishnan2, A.Petchiammal3 Center for Information Technology and Engineering Manonmaniam Sundaranar

More information

IMPACT OF LOW ENERGY TIME SYNCHRONI- ZATION METHODS IN WIRELESS SENSOR NETWORKS Kamlesh Kumar Gautam, Surendra Kumar Gautam, Dr. P.C.

IMPACT OF LOW ENERGY TIME SYNCHRONI- ZATION METHODS IN WIRELESS SENSOR NETWORKS Kamlesh Kumar Gautam, Surendra Kumar Gautam, Dr. P.C. International Journal of Scientific & Engineering Research Volume 3, Issue 7, July-2012 1 IMPACT OF LOW ENERGY TIME SYNCHRONI- ZATION METHODS IN WIRELESS SENSOR NETWORKS Kamlesh Kumar Gautam, Surendra

More information

Fig. 2: Architecture of sensor node

Fig. 2: Architecture of sensor node Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com To Reduce

More information

Rumor Routing Algorithm

Rumor Routing Algorithm Aleksi.Ahtiainen@hut.fi T-79.194 Seminar on Theoretical Computer Science Feb 9 2005 Contents Introduction The Algorithm Research Results Future Work Criticism Conclusions Introduction is described in paper:

More information

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol 1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol Vahid Zangeneh i and Shahriar Mohammadi ii * ABSTRACT In recent years, routing has been the most focused area in ad hoc networks

More information

Delay Analysis of ML-MAC Algorithm For Wireless Sensor Networks

Delay Analysis of ML-MAC Algorithm For Wireless Sensor Networks Delay Analysis of ML-MAC Algorithm For Wireless Sensor Networks Madhusmita Nandi School of Electronics Engineering, KIIT University Bhubaneswar-751024, Odisha, India ABSTRACT The present work is to evaluate

More information

Figure 1. Clustering in MANET.

Figure 1. Clustering in MANET. Volume 6, Issue 12, December 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Performance

More information

Abstract. 1. Introduction. 2. Theory DOSA Motivation and Overview

Abstract. 1. Introduction. 2. Theory DOSA Motivation and Overview Experiences with Implementing a Distributed and Self-Organizing Scheduling Algorithm for Energy-Efficient Data Gathering on a Real-Life Sensor Network Platform Yang Zhang, Supriyo Chatterjea, Paul Havinga

More information

CFMTL: Clustering Wireless Sensor Network Using Fuzzy Logic and Mobile Sink In Three-Level

CFMTL: Clustering Wireless Sensor Network Using Fuzzy Logic and Mobile Sink In Three-Level CFMTL: Clustering Wireless Sensor Network Using Fuzzy Logic and Mobile Sink In Three-Level Ali Abdi Seyedkolaei 1 and Ali Zakerolhosseini 2 1 Department of Computer, Shahid Beheshti University, Tehran,

More information

A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET

A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET ISSN: 2278 1323 All Rights Reserved 2016 IJARCET 296 A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET Dr. R. Shanmugavadivu 1, B. Chitra 2 1 Assistant Professor, Department of Computer

More information

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS AMANDEEP University College of Engineering, Punjabi University Patiala, Punjab, India amandeep8848@gmail.com GURMEET KAUR University College of Engineering,

More information

Wireless Communication Bluetooth, Timing

Wireless Communication Bluetooth, Timing Wireless Communication Bluetooth, Timing Amarjeet Singh February 22, 2012 Logistics Sample exam paper on the course website Group Project: Hardware nodes are with me. Software is still under development

More information

A Logical Group Formation and Management Mechanism Using RSSI for Wireless Sensor Networks *

A Logical Group Formation and Management Mechanism Using RSSI for Wireless Sensor Networks * A Logical Group Formation and Management Mechanism Using RSSI for Wireless Sensor Networks * Jihyuk Heo, Jin Ho Kim, and Choong Seon Hong ** Department of Computer Engineering, Kyung Hee University, Sochen-ri,

More information

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links ANewRoutingProtocolinAdHocNetworks with Unidirectional Links Deepesh Man Shrestha and Young-Bae Ko Graduate School of Information & Communication, Ajou University, South Korea {deepesh, youngko}@ajou.ac.kr

More information

Node Heterogeneity for Energy Efficient Synchronization for Wireless Sensor Network

Node Heterogeneity for Energy Efficient Synchronization for Wireless Sensor Network Downloaded from vbn.aau.dk on: april 03, 2019 Aalborg Universitet Node Heterogeneity for Energy Efficient Synchronization for Wireless Sensor Network Dnyaneshwar, Mantri; Prasad, Neeli R.; Prasad, Ramjee

More information

Routing protocols in WSN

Routing protocols in WSN Routing protocols in WSN 1.1 WSN Routing Scheme Data collected by sensor nodes in a WSN is typically propagated toward a base station (gateway) that links the WSN with other networks where the data can

More information

Energy-Efficient Communication Protocol for Wireless Micro-sensor Networks

Energy-Efficient Communication Protocol for Wireless Micro-sensor Networks Energy-Efficient Communication Protocol for Wireless Micro-sensor Networks Paper by: Wendi Rabiner Heinzelman, Anantha Chandrakasan, and Hari Balakrishnan Outline Brief Introduction on Wireless Sensor

More information

WSN Routing Protocols

WSN Routing Protocols WSN Routing Protocols 1 Routing Challenges and Design Issues in WSNs 2 Overview The design of routing protocols in WSNs is influenced by many challenging factors. These factors must be overcome before

More information

SENSOR-MAC CASE STUDY

SENSOR-MAC CASE STUDY SENSOR-MAC CASE STUDY Periodic Listen and Sleep Operations One of the S-MAC design objectives is to reduce energy consumption by avoiding idle listening. This is achieved by establishing low-duty-cycle

More information

Blackhole Attack Detection in Wireless Sensor Networks Using Support Vector Machine

Blackhole Attack Detection in Wireless Sensor Networks Using Support Vector Machine International Journal of Wireless Communications, Networking and Mobile Computing 2016; 3(5): 48-52 http://www.aascit.org/journal/wcnmc ISSN: 2381-1137 (Print); ISSN: 2381-1145 (Online) Blackhole Attack

More information

Evaluation of Cartesian-based Routing Metrics for Wireless Sensor Networks

Evaluation of Cartesian-based Routing Metrics for Wireless Sensor Networks Evaluation of Cartesian-based Routing Metrics for Wireless Sensor Networks Ayad Salhieh Department of Electrical and Computer Engineering Wayne State University Detroit, MI 48202 ai4874@wayne.edu Loren

More information

RT-Link: A global time-synchronized link protocol for sensor networks Anthony Rowe, Rahul Mangharam, Raj Rajkumar

RT-Link: A global time-synchronized link protocol for sensor networks Anthony Rowe, Rahul Mangharam, Raj Rajkumar RT-Link: A global time-synchronized link protocol for sensor networks Anthony Rowe, Rahul Mangharam, Raj Rajkumar Papa Alioune Ly, Joel Alloh, Carl Hedari, Tom Reynaert Outline Introduction Design of the

More information

Sabareesan M, Srinivasan S*,John Deva Prasanna D S

Sabareesan M, Srinivasan S*,John Deva Prasanna D S Overall performance of Flooding Sequence Protocol in Wireless Sensor Networks Sabareesan M, Srinivasan S*,John Deva Prasanna D S Department of Computer Science and Technology, Hindustan University, Chennai,

More information

Energy Efficient Time Synchronization in WSN for Critical Infrastructure Monitoring

Energy Efficient Time Synchronization in WSN for Critical Infrastructure Monitoring Energy Efficient Time Synchronization in WSN for Critical Infrastructure Monitoring Aravinda S. Rao 1, Jayavardhana Gubbi 1,TuanNgo 2, James Nguyen 2, and Marimuthu Palaniswami 1 1 ISSNIP, Dept. of Electrical

More information

Delay Measurement Time Synchronization for Wireless Sensor Networks

Delay Measurement Time Synchronization for Wireless Sensor Networks Delay Measurement Time Synchronization for Wireless Sensor Networks Su Ping IRB-TR-03-013 June, 2003 DISCLAIMER: THIS DOCUMENT IS PROVIDED TO YOU "AS IS" WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY

More information

A Fault-recovery Routing Approach for Loop-based Clustering WSN

A Fault-recovery Routing Approach for Loop-based Clustering WSN A Fault-recovery Routing Approach for Loop-based Clustering WSN Ming Xu 1, Shengdong Zhang 1, Jiannong Cao 2, Xiaoxing Guo 3 ( 1 School of Computer, National Univ. of Defense Technology, Changsha, China)

More information

Integrated Routing and Query Processing in Wireless Sensor Networks

Integrated Routing and Query Processing in Wireless Sensor Networks Integrated Routing and Query Processing in Wireless Sensor Networks T.Krishnakumar Lecturer, Nandha Engineering College, Erode krishnakumarbtech@gmail.com ABSTRACT Wireless Sensor Networks are considered

More information

Hierarchical Addressing and Routing Mechanisms for Distributed Applications over Heterogeneous Networks

Hierarchical Addressing and Routing Mechanisms for Distributed Applications over Heterogeneous Networks Hierarchical Addressing and Routing Mechanisms for Distributed Applications over Heterogeneous Networks Damien Magoni Université Louis Pasteur LSIIT magoni@dpt-info.u-strasbg.fr Abstract. Although distributed

More information

MultiHop Routing for Delay Minimization in WSN

MultiHop Routing for Delay Minimization in WSN MultiHop Routing for Delay Minimization in WSN Sandeep Chaurasia, Saima Khan, Sudesh Gupta Abstract Wireless sensor network, consists of sensor nodes in capacity of hundred or thousand, which deployed

More information

End-To-End Delay Optimization in Wireless Sensor Network (WSN)

End-To-End Delay Optimization in Wireless Sensor Network (WSN) Shweta K. Kanhere 1, Mahesh Goudar 2, Vijay M. Wadhai 3 1,2 Dept. of Electronics Engineering Maharashtra Academy of Engineering, Alandi (D), Pune, India 3 MITCOE Pune, India E-mail: shweta.kanhere@gmail.com,

More information

Efficient Cluster Based Data Collection Using Mobile Data Collector for Wireless Sensor Network

Efficient Cluster Based Data Collection Using Mobile Data Collector for Wireless Sensor Network ISSN (e): 2250 3005 Volume, 06 Issue, 06 June 2016 International Journal of Computational Engineering Research (IJCER) Efficient Cluster Based Data Collection Using Mobile Data Collector for Wireless Sensor

More information

Dalimir Orfanus (IFI UiO + ABB CRC), , Cyber Physical Systems Clustering in Wireless Sensor Networks 2 nd part : Examples

Dalimir Orfanus (IFI UiO + ABB CRC), , Cyber Physical Systems Clustering in Wireless Sensor Networks 2 nd part : Examples Dalimir Orfanus (IFI UiO + ABB CRC), 27.10.2011, Cyber Physical Systems Clustering in Wireless Sensor Networks 2 nd part : Examples Clustering in Wireless Sensor Networks Agenda LEACH Energy efficient

More information

Connectivity, Energy and Mobility Driven Clustering Algorithm for Mobile Ad Hoc Networks

Connectivity, Energy and Mobility Driven Clustering Algorithm for Mobile Ad Hoc Networks Connectivity, Energy and Mobility Driven Clustering Algorithm for Mobile Ad Hoc Networks Fatiha Djemili Tolba University of Haute Alsace GRTC Colmar, France fatiha.tolba@uha.fr Damien Magoni University

More information

Impact of IEEE MAC Packet Size on Performance of Wireless Sensor Networks

Impact of IEEE MAC Packet Size on Performance of Wireless Sensor Networks IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 10, Issue 3, Ver. IV (May - Jun.2015), PP 06-11 www.iosrjournals.org Impact of IEEE 802.11

More information

A Cluster-Based Energy Balancing Scheme in Heterogeneous Wireless Sensor Networks

A Cluster-Based Energy Balancing Scheme in Heterogeneous Wireless Sensor Networks A Cluster-Based Energy Balancing Scheme in Heterogeneous Wireless Sensor Networks Jing Ai, Damla Turgut, and Ladislau Bölöni Networking and Mobile Computing Research Laboratory (NetMoC) Department of Electrical

More information

Implementation of a Network-wide Time Synchronization Strategy for WirelessHART Sheng Zhang, Zhongsheng Xiang, Jie Chen

Implementation of a Network-wide Time Synchronization Strategy for WirelessHART Sheng Zhang, Zhongsheng Xiang, Jie Chen International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) Implementation of a Network-wide Time Synchronization Strategy for WirelessHART Sheng Zhang, Zhongsheng

More information

A Novel Hierarchical Routing Protocol for Wireless Sensor Networks

A Novel Hierarchical Routing Protocol for Wireless Sensor Networks A Novel Hierarchical Routing Protocol for Wireless Sensor Networks TrongThuaHuynh 1 and Choong Seon Hong 2 Department of Computer Science, Kyung Hee University, 1 Seocheon, Giheung, Yongin, Gyeonggi 449-701

More information

A Genetic Algorithm-Based Approach for Energy- Efficient Clustering of Wireless Sensor Networks

A Genetic Algorithm-Based Approach for Energy- Efficient Clustering of Wireless Sensor Networks A Genetic Algorithm-Based Approach for Energy- Efficient Clustering of Wireless Sensor Networks A. Zahmatkesh and M. H. Yaghmaee Abstract In this paper, we propose a Genetic Algorithm (GA) to optimize

More information

Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication

Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication Vol., Issue.3, May-June 0 pp--7 ISSN: - Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication J. Divakaran, S. ilango sambasivan Pg student, Sri Shakthi Institute of

More information

A REVIEW ON LEACH-BASED HIERARCHICAL ROUTING PROTOCOLS IN WIRELESS SENSOR NETWORK

A REVIEW ON LEACH-BASED HIERARCHICAL ROUTING PROTOCOLS IN WIRELESS SENSOR NETWORK A REVIEW ON LEACH-BASED HIERARCHICAL ROUTING PROTOCOLS IN WIRELESS SENSOR NETWORK Md. Nadeem Enam 1, Ozair Ahmad 2 1 Department of ECE, Maulana Azad College of Engineering & Technology, Patna, (India)

More information

Prianka.P 1, Thenral 2

Prianka.P 1, Thenral 2 An Efficient Routing Protocol design and Optimizing Sensor Coverage Area in Wireless Sensor Networks Prianka.P 1, Thenral 2 Department of Electronics Communication and Engineering, Ganadipathy Tulsi s

More information

Defending Against Resource Depletion Attacks in Wireless Sensor Networks

Defending Against Resource Depletion Attacks in Wireless Sensor Networks Defending Against Resource Depletion Attacks in Wireless Sensor Networks Cauvery Raju M. Tech, CSE IInd Year, JNNCE, Shimoga Abstract: One of the major challenges wireless sensor networks face today is

More information

Part I. Wireless Communication

Part I. Wireless Communication 1 Part I. Wireless Communication 1.5 Topologies of cellular and ad-hoc networks 2 Introduction Cellular telephony has forever changed the way people communicate with one another. Cellular networks enable

More information

Routing Protocols in MANETs

Routing Protocols in MANETs Chapter 4 Routing Protocols in MANETs 4.1 Introduction The main aim of any Ad Hoc network routing protocol is to meet the challenges of the dynamically changing topology and establish a correct and an

More information

Time Synchronization Strategies in Wireless Sensor Network: A Review

Time Synchronization Strategies in Wireless Sensor Network: A Review Time Strategies in Wireless Sensor Network: A Review Ekta 1 and Jyoteesh Malhotra 2 1,2 Department of Computer Science, Guru Nanak Dev University, Regional Campus, Jalandhar, India E-mail: 1 er_ekta@yahoo.com,

More information

SECURE AND EFFICIENT HYBRID APPROACH FOR DATA TRANSMISSION IN ZIGBEE NETWORK

SECURE AND EFFICIENT HYBRID APPROACH FOR DATA TRANSMISSION IN ZIGBEE NETWORK SECURE AND EFFICIENT HYBRID APPROACH FOR DATA TRANSMISSION IN ZIGBEE NETWORK P.M.Shareefa Jareena *1, T.Samraj Lawrence #2, and V.Perathu Selvi #3 * Student, Dept of CSE (SNW), Francis Xavier Engineering

More information

Analysis of Cluster based Routing Algorithms in Wireless Sensor Networks using NS2 simulator

Analysis of Cluster based Routing Algorithms in Wireless Sensor Networks using NS2 simulator Analysis of Cluster based Routing Algorithms in Wireless Sensor Networks using NS2 simulator Ashika R. Naik Department of Electronics & Tele-communication, Goa College of Engineering (India) ABSTRACT Wireless

More information

Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks

Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks Mina Malekzadeh Golestan University Zohre Fereidooni Golestan University M.H. Shahrokh Abadi

More information

An Energy Efficient Data Dissemination Algorithm for Wireless Sensor Networks

An Energy Efficient Data Dissemination Algorithm for Wireless Sensor Networks , pp.135-140 http://dx.doi.org/10.14257/astl.2014.48.22 An Energy Efficient Data Dissemination Algorithm for Wireless Sensor Networks Jin Wang 1, Bo Tang 1, Zhongqi Zhang 1, Jian Shen 1, Jeong-Uk Kim 2

More information

CSMA based Medium Access Control for Wireless Sensor Network

CSMA based Medium Access Control for Wireless Sensor Network CSMA based Medium Access Control for Wireless Sensor Network H. Hoang, Halmstad University Abstract Wireless sensor networks bring many challenges on implementation of Medium Access Control protocols because

More information

An Adaptive Self-Organization Protocol for Wireless Sensor Networks

An Adaptive Self-Organization Protocol for Wireless Sensor Networks An Adaptive Self-Organization Protocol for Wireless Sensor Networks Kil-Woong Jang 1 and Byung-Soon Kim 2 1 Dept. of Mathematical and Information Science, Korea Maritime University 1 YeongDo-Gu Dongsam-Dong,

More information

Distributed Data Aggregation Scheduling in Wireless Sensor Networks

Distributed Data Aggregation Scheduling in Wireless Sensor Networks Distributed Data Aggregation Scheduling in Wireless Sensor Networks Bo Yu, Jianzhong Li, School of Computer Science and Technology, Harbin Institute of Technology, China Email: bo yu@hit.edu.cn, lijzh@hit.edu.cn

More information

INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION

INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION Bulletin of the Transilvania University of Braşov Vol. 7 (56) No. 2-2014 Series I: Engineering Sciences INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION Mihai MACHEDON-PISU

More information

Maintenance of Time Synchronization in Wireless Adhoc Networks in Case of Node Destruction

Maintenance of Time Synchronization in Wireless Adhoc Networks in Case of Node Destruction Maintenance of Time Synchronization in Wireless Adhoc Networks in Case of Node Destruction By Clock Sampling Mutual Network Synchronization Swapna. P. S M.Tech in Communication Engineering Federal Institute

More information

Multichannel MAC for Energy Efficient Home Area Networks

Multichannel MAC for Energy Efficient Home Area Networks 1st International Workshop on GReen Optimized Wireless Networks (GROWN'13) Multichannel MAC for Energy Efficient Home Area Networks Kok Keong Chai, Shihab Jimaa, Yun Li, Yue Chen, and Siying Wang Abstract

More information

Global ID Assignment in Wireless Sensor Network by Using Huffman Algorithm

Global ID Assignment in Wireless Sensor Network by Using Huffman Algorithm J. Basic. Appl. Sci. Res., 2(12)12809-12821, 2012 2012, TextRoad Publication ISSN 2090-4304 Journal of Basic and Applied Scientific Research www.textroad.com Global ID Assignment in Wireless Sensor Network

More information

Dynamic Cooperative Routing (DCR) in Wireless Sensor Networks

Dynamic Cooperative Routing (DCR) in Wireless Sensor Networks Dynamic Cooperative Routing () in Wireless Sensor Networks Sivasankari H. 1, Leelavathi R. 1, Shaila K. 1, Venugopal K.R. 1, S.S. Iyengar 2, and L.M. Patnaik 3 1 Department of Computer Science and Engineering,

More information

The Recursive Time Synchronization Protocol for Wireless Sensor Networks

The Recursive Time Synchronization Protocol for Wireless Sensor Networks The Recursive Time Synchronization Protocol for Wireless Sensor Networks M. Akhlaq, and Tarek R. Sheltami College of Computer Science & Engineering, King Fahd University of Petroleum & Minerals, Saudi

More information

A Gateway Selections Using Signal Strength among Clusters in Ad Hoc Networks

A Gateway Selections Using Signal Strength among Clusters in Ad Hoc Networks A Gateway Selections Using Signal Strength among Clusters in Ad Hoc Networks Mary Wu 1, ChongGun Kim 1 1*, HeeJoo park 1 Dept. of Computer Eng., Yeungnam Univ., Korea Dept. of Cyber Security., Kyungil

More information