Energy Efficient Arbitration of Medium Access in Wireless Sensor Networks

Size: px
Start display at page:

Download "Energy Efficient Arbitration of Medium Access in Wireless Sensor Networks"

Transcription

1 Energy Efficient Arbitration of Medium Access in Wireless Sensor Networks Abstract Networking of unattended sensors has become very attractive for many civil and military applications such as disaster management and remote surveillance. Sensors in such applications are usually equipped with radio and operated by limited energy supply. Such energy-constrained environment requires careful design in order to extend the life of the network. Time based arbitration of radio transmission among the sensors is one of the effective techniques for energy conservation since it limits collision and allows for turning off the sensor s radio circuitry when message reception is not expected. In this paper we propose a Tabu search based time-slot assignment algorithm to reduce energy consumption of the radio and eliminate packet drop due to buffer overflow. This algorithm strives to allocate contiguous transmission (reception) slots to each sensor and thus minimizes both radio s active time and number of transitions between active and sleep modes. Reported simulation results demonstrate the efficiency of our approach. Keywords: Energy-Aware Communication, Sensor networks, Energy-efficient design, TDMA slot scheduling. 1. Introduction In recent years there have been major advances in the development of low power micro sensors. The emergence of such sensors has led practitioners to envision networking of a large set of distributed low power sensors scattered over a wide area of interest. However, these sensors are usually powered using small batteries and in many applications of sensor networks replacing sensor s battery is not possible or not practical. Such energy constraints limits sensors lifetime and thus makes efficient design and management of sensor networks a real challenge. Therefore a lot of the research related to sensor networks has focused on energy-awareness and minimization [1][2][3]. In this paper we concentrate on the minimization of energy consumption at the MAC layer through time-based arbitration of the sensor s medium access. Since in TDMA sensors transmit and receive for only certain duration of time, the radio can be turned off when not in use making energy consumption to be much less compared to other MAC schemes. Moreover unlike other techniques where collisions might occur because two sensors, within the transmission range of each other may transmit at the same time. TDMA does not suffer from collisions since any two adjacent sensors are never assigned Gaurav Jolly and Mohamed Younis Dept. of Computer Science and Elec. Eng. University of Maryland Baltimore County 1 Hilltop Circle Baltimore, MD 2125 jolly1@umbc.edu and younis@cs.umbc.edu same transmission slots. However the TDMA scheme can be complicated by the routing scheme employed at the upper layers. Generally the energy consumed in transmitting wireless data is directly proportional to d n, where d is the distance between the transmitter and the receiver and n typically takes values between 2 and 4. Therefore, energy consumption can be attenuated if packets are transmitted in multiple hops of small distance instead of one longer range of transmission. In a multi-hop routing scheme some sensors will receive multiple packets, and if the reception slots of these packets are spread over the duration of the frame then the sensor will have to be in the active state for extended duration of time. Being in active state consumes excessive energy, and consequently the advantage of TDMA diminishes. Alternatively to conserve energy a sensor should switch to low energy (sleep) mode when idle. The slot assignment issue is very challenging because it deals with two conflicting attributes. First, the sensors have small buffer size and hence they cannot buffer all the packets. If the buffer gets full any packets arriving after that will have to be dropped and hence have to be retransmitted thus causing energy wastage. Second, the active to sleep transitions consume considerable amount of energy and should be minimized by making the sensors transmit (receive) all packets in contiguous time slots, but with small buffer sizes this is easier said than done. Breadth first and depth first techniques have been applied to this problem [4]. We propose a novel approach that uses the Tabu search optimization algorithm. Simulation results show that the new algorithm outperforms BFS and DFS and achieves significant energy savings. In the balance of this section we define the architectural model, the energy consumption model and summarize the related work. Section 2 describes our approach to energyaware scheduling of slots in sensor networks. Description of the simulation environment and analysis of the experimental results can be found in section 3. Finally section 4 concludes the paper and discusses our future research plan. 1.1 System Model The system architecture for the sensor network is depicted in Fig. 1. In the architecture sensor nodes are grouped into clusters controlled by a single command node. Every cluster has a gateway node that manages sensors in the cluster. Clustering the sensor network is performed by the command node and is beyond the scope of this paper. Sensors are only

2 Fig 1. Architecture of unattended sensor network Command Node Sensor nodes Gateway Node capable of radio-based short-haul communication and are responsible for probing the environment to detect a target/event. The gateway node interfaces the command node with the sensor network via long-haul communication links. Sensors receive commands from and send readings to their gateway node, which processes these readings and transmits the fused information to the command node. The command node performs system-level fusion of collected reports for overall situation awareness. Unlike sensors the gateways are significantly less energy constrained. Hence the gateway is assigned the responsibility of organizing the sensors and routing generated data. Sensor organization refers to activating a subset of available sensors in the cluster to probe the environment based on the application and sensor s capabilities. The gateway sets multi-hop routes and periodically sends route updates to the sensors calculated based upon the current state of the network. Route assignment will designate some sensors to act as relays. The sensors then adjust their transmit power based upon their next hop neighbor. Radios are assumed to have the ability to operate in four distinct modes transmit, receive, idle and sleep. The energy consumed in idle mode is almost equivalent to that in receive mode [5]. The energy consumed by the radio is: E radio = N tx [P tx (T on-tx +T st ) +P out T on-tx ] +N rx [P rx (T on-rx +T st )] (1) Where N tx/rx is the average number of times per second transmitter/receiver is used. T st is the transition time from sleep to active mode. T on-tx/rx is the on time of transmitter/receiver. P out is the output transmission power. P tx/rx is the power consumed by transmitter/receiver [2] [6]. The on-board clocks of both the sensors and the gateway are assumed to be synchronized, e.g. via the use of GPS. While the GPS consumes significant energy, it has to be turned on for a very short duration during network startup. TDMA based MAC enables the maintenance of clock synchronization afterward. It is worth noting that most of these capabilities are available on some of the advanced sensors, e.g. the SenTech Acoustic Ballistic Module [7]. 1.2 Related Work In wireless networks, signal interference has received the most attention from the research community. Only recently energy efficiency has started to receive attention, especially with the increasing interest in the applications of unattended sensor networks [8]. Power management of the radio gains significant importance in sensor networks since the radio is a major of consumer of sensor s energy. Several methods have been suggested to reduce the energy consumption of the RF circuitry. One such technique is to power off the sensor when it is idle, by making active to sleep transition [9][11]. However time taken to make a transition from sleep to active mode consumes a considerable amount of energy. With small packet sizes the energy consumed due to transitions becomes even more prominent and dominates the active mode s energy consumption [1]. An approach to reduce such startup time in the radio circuitry was suggested in [11]. Energy saving through the use of time-based MAC in wireless sensor networks was explored in [4] [12] [13]. The idea is to schedule when to activate the radio receiver so that it can be turned off while not expecting a message. Turning off the receiver has been shown to achieve saving of up to 7% in energy consumption [12]. Approaches for determining when to turn off the receiver varies. While slots are prescheduled in [4], the decision for deactivating the receiving circuit is made autonomous in [12] by probing the environment. A reservation-based approach for scheduling medium access is pursued in [13]. Nodes make a request to a base station, which responds with a traffic control message indicating medium access schedule. Nodes not included in the traffic control message can turn off their receiver. In this paper we present an approach for optimally assigning slots with the consideration of routing paths. We believe that probing the environment or using reservation requests do not capture all the potential energy saving that time-based MAC can achieve in sensor networks. Since long transmissions require more power, energy can also be saved if sensors transmit in multiple hops of small distances instead of one long transmission. It has been shown in [14] that majority of packets received by the sensors are for forwarding to other destinations. Though akin to the above work in some aspects, the Tabu Search based technique presented in this paper is distinct since it deals with energy conservation through intelligent slot assignment with an objective of minimizing the transition between active and sleep modes and the time for which the radio is idle. Scheduling time slots can be NP- Hard especially when considering flow constraints and sensor s capabilities limitations such as buffer size. 2. Slot Assignment in TDMA Based on the current application mission, the gateway selects a set of sensors to probe the environment. There are many energy aware approaches that the gateway can use in route setup, e.g. [5]. Contingent upon these routes and the buffer size of the sensors, the gateway then calculates the order in which transmission slots are assigned to active sensors, both probing and relaying. In order to conserve

3 energy, active sensors should shut down their radio when they are not transmitting or receiving. Since the number of nodes managed by the gateway is large, the number of possible schedules can increase exponentially with the increase in sensor count. Therefore to overcome this limitation we propose a Tabu search based optimization algorithm for slot assignment. Tabu search was introduced in [15] [16] and subsequently has been used to solve many optimization problems. Tabu search has become an accepted technique that in some cases surpassed conventional optimization techniques. Analogous to other optimization techniques Tabu search employs an iterative procedure in order to find a better solution in the neighborhood of the initial (current) solution. The search process is concluded when a terminating condition, such as maximum numbers of iterations or limited enhancements in the solution, is met. Unlike other techniques Tabu search employs an evolving memory to prevent getting trapped in a local minimum. In the balance of this section we formulate the slot assignment problem and discuss our approach to solve it. Table 1: Using BFS, some packets will not reach the gateway (maximum buffer size = 2). A total of 9 state transitions are needed. Sensor A and C are idle for one slot. (Tr = Transmit, Rec = Receive, Sl = Sleep) Slot No. / Sensor ID A Sl Sl Sl Sl Rec Rec Rec(Drop) Tr Tr idle B Sl Sl Sl Sl Tr Sl Sl Sl Sl Sl C Sl Sl Rec Rec idle Tr Tr Sl Sl Sl D Rec Rec Tr Tr Sl Sl Sl Sl Sl Sl E Sl Tr Sl Sl Sl Sl Sl Sl Sl Sl F Tr Sl Sl Sl Sl Sl Sl Sl Sl Sl Gateway Rec Rec - Table 2: Using Tabu search, there is no packet drop and a total of 9 transitions. No node is in idle mode for any of the slots (Tr = Transmit, Rec = Receive, Sl = Sleep) Slot No./ Sensor ID A Sl Sl Sl Sl Rec Rec Tr Tr Rec Tr B Sl Sl Sl Sl Sl Sl Sl Sl Tr Sl C Sl Sl Rec Rec Tr Tr Sl Sl Sl Sl D Rec Rec Tr Tr Sl Sl Sl Sl Sl Sl E Sl Tr Sl Sl Sl Sl Sl Sl Sl Sl F Tr Sl Sl Sl Sl Sl Sl Sl Sl Sl Gateway Rec Rec - Rec Table 3: Using DFS, total of 15 transitions take place. (Tr = Transmit, Rec = Receive, Sl = Sleep) Slot No./ Sensor ID A Sl Sl Rec Tr Sl Sl Rec Tr Rec Tr B Sl Sl Sl Sl Sl Sl Sl Sl Tr Sl C Sl Rec Tr Sl Sl Rec Tr Sl Sl Sl D Rec Tr Sl Sl Rec Tr Sl Sl Sl Sl E Sl Sl Sl Sl Tr Sl Sl Sl Sl Sl F Tr Sl Sl Sl Sl Sl Sl Sl Sl Sl Gateway Rec Rec - Rec 2.1 Initial Solution Fig. 2a represents a sample sensor network topology. It consists of two clusters. Each cluster has its own gateway that is responsible for assigning slots to sensors in the cluster. In the rest of this section we will concentrate on cluster #1 to illustrate our slot scheduling approach. The gateway of cluster #2 follows the same methodology. In Fig. 2a, nodes B, E, F, G and H are sensing nodes that generate their own packets, while nodes A, C, D and I are relays. The paths followed by the packets of different branches of the gateway are independent of each other. Therefore, sensors can be grouped based upon routes assigned to them. This observation significantly reduces the complexity of the slot-scheduling problem since now the gateway has to deal with smaller groups of sensors instead of one large set of all sensors in the cluster. For example in Fig. 2b two graphs are generated after the grouping the sensors of cluster #1.Thereafter, one of these graphs is selected and

4 transmission slots are initially allocated to its nodes using BFS. For example, for graph #1, the first two slots are assigned to nodes E and F, followed by slots # 3 and 4 allocated to D. Nodes B and C are allocated slots # 5, 6 and 7. Finally node A is assigned slots 8 to 1. However as shown in table 1, with a maximum buffer size of two this will result in one packet being dropped at node A forcing slot # 1 to be idle. Additionally if the latency in going from active to sleep and then going back from sleep to active is greater than one slot size then node C has to remain idle for slot number 5. In graph #2 nodes G, H can be allocated slots 11 and 12, with node I getting slots 13 and 14 for transmitting to the gateway. Hereafter we will only concentrate on graph #1 since graph #2 is dealt with in a similar fashion. To generate the initial solution for Tabu search an approach similar to BFS is employed. However at any stage if the buffer of any node gets full, it is assigned next few transmission slots equivalent in number to its buffer size. As shown in Fig 2c, node A is assigned slots 7 and 8 ahead of node C, when its buffer (buffer size = 2) gets full. This will prevent the buffer overflow at this node since the buffer will be flushed as soon it gets filled up. 2.2 Search Heuristic To increase the efficiency of the search, a divide and conquer scheme is employed. Tabu search is partitioned into three distinct levels, each having individual Tabu memory. In the first level, one of the graphs generated by the initial solution is selected and passed to second level for optimization. This process is repeated until all graphs have been optimized. Moreover the selected graph is added to the Tabu list so that it will not be selected again. For example in Fig 2b graph 1 is selected. In level two, one of the nodes of the selected graph is picked and passed to the third level for optimization. The second level is repeated until all nodes have been optimized or the maximum number of iterations has been reached. This node is then added to the Tabu list of this level. For example in Fig 2c out of nodes A, B, C, D, E and F, node A is selected. In level 3, slots assigned to in-bound branches (links) of the selected node are swapped. For example slots assigned to nodes B and C are swapped in Fig 2c to get a new schedule in Fig 2d. Thereafter the energy consumed by the new solution is compared with the energy of the current (best) solution. If new solution consumes less energy, it will become current solution. The swap move is saved in to the Tabu list of this level so that it is not repeated again. This level is terminated either when all the swap moves are in the Tabu list or maximum numbers of iterations is reached. Since most improvements are found at the branches of the nodes, level-3 searches extensively at the branches. Diversification is the procedure of shifting the search to a new area when trapped in local optima. This is implemented by exiting each level if no improvement is made for a certain number of iterations. The algorithm is sketched in Fig. 3. a) b) Gateway-1 B B A A F I C D C G D H Cluster #1 E E I G Cluster #2 Graph #1 Level - 1 Graph #2 c) Slot No Receive D D C C A A Gateway Gateway A Gateway Transmit F E D D B C A A C A Level - 2 d) Slot No Receive D D C C A A Gateway Gateway A Gateway Transmit F E D D Level - 3 C C A A B A Fig 2: a) Initial Topology represented as graphs b) Cluster-1 after partitioning into distinct graphs c) Node A is selected at level-2 of Tabu Search d) At level-3 slots of B and C are exchanged K Gateway-2 O J P L H M N Sensor (Sensing mode) Sensor (Relay mode)

5 Table 2 shows a transmission schedule when applying our approach. For the sake of comparison we include the schedule using DFS in table 3. Comparing table 2 to tables 1 and 3 demonstrates the superiority of our approach to BFS and DFS, both in terms of packet drop count and energy consumption due to both transitions and idle time. 3. Experimental Validation The effectiveness of our approach is validated through simulation. This section describes performance metrics, simulation environment and experimental results. 3.1 Performance Metrics Buffer-caused packet drop count: the total number of packets dropped by the nodes due to buffer overflow. This should ideally be zero to avoid retransmission. Sensor s energy unnecessarily consumed: This measures energy consumed by sensors while turning the radio circuitry on and staying idle and due to transitions between active and sleep modes. Total gateway energy consumed for slot scheduling: This metric quantifies the price that the gateway pays for energy saving at the sensor level. Number of search iterations: It is used to study the tradeoff between energy saving at the sensor level and the cost at the gateway level. 3.2 Environmental Setup In the experiments varying number of nodes are randomly placed in a 1 1 meter square area. The gateway is randomly positioned within this area. A free space propagation channel model is assumed [17] with the capacity set to 2Mbps. Packet lengths are 1 Kbit for data packets. For a node in the sensing state, packets are generated at a constant rate of 1 packet/sec [7]. The time taken in making a transition between the sleep and active states is assumed to be 47µsec. The power consumed at the circuit level in transmission and reception of a packet is set to 81mW and 18mW respectively [2]. The energy consumed in the transition is obtained by multiplying the transition time by the average of the power consumed while the radio is in active and sleep states. A radio circuit in a sleep mode is assumed not to consume any power. Routes are computed based upon the approach proposed in [5]. We assume that the sensors are tasked with a targettracking mission. The initial set of sensing nodes is chosen to be the nodes on the convex hull. The set of sensing nodes changes as the target moves. Since targets are assumed to come from outside, the sensing circuitry of all boundary nodes is always turned on. Targets are assumed to start at a random position outside the convex hull. These targets are characterized by having a constant speed chosen uniformly between 4 and 6 meters/s. 3.3 Performance Results We have studied the performance of our approach using the above metrics. It should be noted that the reported energy consumption is for transitions between sleep and active modes and for being in the idle state. Energy consumed in transmission and reception has not been presented here because the number of transmission/reception slots remains the same and our algorithm only changes the ordering of these slots. Appropriateness of our Approach: For this experiment we varied the packet sizes and observed its effect on the energy consumed by the system due to transitions. As the packet sizes were reduced the energy contributed due to transitions increased manifold. Therefore as shown in Fig. 4 for smaller packet sizes effect of transitions becomes more conspicuous and hence the significance of our approach increases. energy consumed/sensor(mj) Comparison between time slot assignment algorithms: We ran a set of experiments to compare the performance of our approach against DFS and BFS. The results are shown in figures 5 and 6. As can be seen from Fig. 5 our approach eliminates packet drop. Packet drop count Energy consumed versus the packet size pa cke t size (bits) Fig. 4: Effect of packet size on transition energy Packet drop count Tabu Search Breadth Depth Buffer Size Fig. 5: Effect of Buffer Size on Packet Drop Count. Fig. 6 displays the energy consumed by active sensors due to transitions and idle state as an average of multiple experiments. The results corroborate the practicality of our approach, since it combines the advantages of the other two approaches. Energy consumed(mj) Energy consumed by sensors Number of Sensors Tabu Search Breadth Depth Fig.6: Effect of number of sensors on the average energy consumed by a sensor in idle state

6 Cost and benefit of algorithm: In order to examine the payoff of the algorithm at the system s level, we conducted a set of experiments and calculated the energy consumed at the gateway and corresponding energy conserved by a group of 15 active sensors monitoring a moving target. The experiments were conducted on a Pentium 85MHz processor where the power consumption of the CMOS circuitry is given by P= 1/2CV 2 f, where C is the load capacitance and taken to be 1 pico Farads, V is the supply voltage and equals 3.3 Volts and f is the clock frequency in Hertz[18]. The execution time is measured and then and multiplied by the power consumed in order to calculate the depleted energy in running the algorithm. The results in Fig. 7 show that increase in the number of iterations performed in the Tabu search reduces the energy consumption of the sensors to almost 5 % at a reasonable cost. After a certain number of iterations there is no improvement in the solution and the gateway energy is unnecessarily wasted. Fig. 7 can be used to perform trade-off analysis between the energy conservation at sensor and gateway level. Depending on the energy reserve at sensors and the importance of their role it might be justifiable to consume additional gateway energy to run more search iterations. Energy Consumed in idle mode and transitions (mj) Energy Consumption Versus No. of Iterations Numbe r of Ite rations Conclusion and Future Work In this paper we have introduced a novel approach that employs the Tabu search optimization technique for assigning time slots in sensor networks. The approach conserves sensor s energy by minimizing the number of transition between active and sleep modes and the duration in which active sensors are idle. In addition, our approach observes the buffering limitation at sensor s node and prevents packet drop. Simulation results demonstrate that our approach outperforms contemporary approach such as DFS and BFS. In this paper we have assumed that the sensor network employs a TDM-FDM scheme where the nodes in different clusters within transmission range or each other use different frequencies. We however believe that energy can further be conserved, if nodes in each cluster can use the full bandwidth. We would like to investigate a scheme where gateways could arbitrate among themselves and then assign slots in a manner that despite using the same frequency the sensors in distinct clusters that are in transmission range of each other do not transmit in the same slot Energy Consumed by Gateway(mJ) Sensors Gateway Fig 7. Effects of the number of search iterations on energy consumed by the gateway and the sensors. References [1] A.A. Abidi, G.J. Pottie, and W.J. Kaiser, Power- Conscious Design of Wireless Circuits and Systems, Proceedings of the IEEE, vol. 88, no. 1, pp , October 2. [2] E. Shih, et al., "Physical Layer Driven Algorithm and Protocol Design for Energy-Efficient Wireless Sensor Networks", in the Proceedings of the 7 th ACM Mobile Computing and Communication (MobiCom 21), Rome, Italy, July 21. [3] A. Woo and D. Culler, A transmission control scheme for medium access in sensor networks, in the Proceedings of the 7 th ACM Mobile Computing and Communication (MobiCom 21), Rome, Italy, July 21. [4] K. Arisha, M. Youssef, M. Younis, Energy-Aware TDMA-Based MAC for Sensor Networks, Proceedings of the IEEE Workshop on Integrated Management of Power Aware Communications, Computing and Networking (IMPACCT 22), New York City, New York, May 22. [5] M. Younis, M. Youssef, K. Arisha, Energy-Aware Routing in Cluster-Based Sensor Networks, in the Proceedings of the 1 th IEEE/ACM International Symposium on Modeling, Analysis and Simulation of Computer and Telecommunication Systems (MASCOTS22), Fort Worth, Texas, October 22. [6] National Semiconductor Corporation, LMX3162 Evaluation Notes and Datasheet, April [7] "Data sheet for the Acoustic Ballistic Module", SenTech Inc., [8] J. M. Kahn, R. H. Katz and K. S. J. Pister, Mobile Networking for Smart Dust, in the Proceedings of the 5 th ACM Mobile Computing and Communication (MobiCom 99), Seattle, WA, August [9] V. Raghunathan, et al., Energy aware wireless microsensor networks, IEEE Signal Processing Magazine, March 22. [1] E. Shih, et al., "Energy-Efficient Link Layer for Wireless Microsensor Networks", in the Proceedings of the Workshop on VLSI 21 (WVLSI '1), Orlando, Florida, April 21 [11] A. Wang, et al., "Energy-Efficient Modulation and MAC for Asymmetric Microsensor Systems", in the Proceedings of ISLPED 21, Huntington Beach, CA. August 21. [12] S. Singh and C.S. Raghavendra, PAMAS: Power Aware Multi-Access protocol with Signaling for Ad Hoc Networks, ACM Computer Communications Review, July1998. [13] P. Havinga, G. Smit, Energy-efficient TDMA medium access control protocol scheduling, in the Proceedings of the Asian International Mobile Computing Conference (AMOC 2), November 2. [14] V. Tsiatsis, S. Zimbeck, and M. Srivastava, Architectural strategies energy efficient packet forwarding

7 in wireless sensor networks, in the Proceedings of ISLPED 21, Huntington Beach, CA. August 21. [15] F. Glover Tabu Search, Part I, ORSA Journal on Computing 1, pp , [16] F. Glover Tabu Search, Part II, ORSA Journal on Computing 2, pp. 4-32, 199. [17] J. Andresen, et al., Propagation Measurements and Models for Wireless Communications Channels, IEEE Communications Magazine, Vol. 33, No. 1, January [18] J. Pouwelse, K. Langendoen and H. Sips, Dynamic Voltage Scaling on a Low-Power Microprocessor, in the Proceedings of the International Symposium on Mobile Multimedia Systems & Applications (MMSA'2), Delft, The Netherlands, November 2.

Utilization Based Duty Cycle Tuning MAC Protocol for Wireless Sensor Networks

Utilization Based Duty Cycle Tuning MAC Protocol for Wireless Sensor Networks Utilization Based Duty Cycle Tuning MAC Protocol for Wireless Sensor Networks Shih-Hsien Yang, Hung-Wei Tseng, Eric Hsiao-Kuang Wu, and Gen-Huey Chen Dept. of Computer Science and Information Engineering,

More information

TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS

TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS A Thesis by Masaaki Takahashi Bachelor of Science, Wichita State University, 28 Submitted to the Department of Electrical Engineering

More information

ENERGY EFFICIENT SENSOR NODE DESIGN IN WIRELESS SENSOR NETWORKS

ENERGY EFFICIENT SENSOR NODE DESIGN IN 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. 3, Issue. 4, April 2014,

More information

15. ZBM2: low power Zigbee wireless sensor module for low frequency measurements

15. ZBM2: low power Zigbee wireless sensor module for low frequency measurements 15. ZBM2: low power Zigbee wireless sensor module for low frequency measurements Simas Joneliunas 1, Darius Gailius 2, Stasys Vygantas Augutis 3, Pranas Kuzas 4 Kaunas University of Technology, Department

More information

A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks

A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks Eiman Alotaibi, Sumit Roy Dept. of Electrical Engineering U. Washington Box 352500 Seattle, WA 98195 eman76,roy@ee.washington.edu

More information

Data Gathering. Chapter 4. Ad Hoc and Sensor Networks Roger Wattenhofer 4/1

Data Gathering. Chapter 4. Ad Hoc and Sensor Networks Roger Wattenhofer 4/1 Data Gathering Chapter 4 Ad Hoc and Sensor Networks Roger Wattenhofer 4/1 Environmental Monitoring (PermaSense) Understand global warming in alpine environment Harsh environmental conditions Swiss made

More information

A survey on broadcast protocols in multihop cognitive radio ad hoc network

A survey on broadcast protocols in multihop cognitive radio ad hoc network A survey on broadcast protocols in multihop cognitive radio ad hoc network Sureshkumar A, Rajeswari M Abstract In the traditional ad hoc network, common channel is present to broadcast control channels

More information

Energy-efficient bootstrapping for wireless sensor networks

Energy-efficient bootstrapping for wireless sensor networks Innovations Syst Softw Eng (2005) DOI 10.1007/s11334-005-0015-z REGULAR ARTICLE Rajesh Mathew Mohamed Younis Sameh M. Elsharkawy Energy-efficient bootstrapping for wireless sensor networks Received: /

More information

An Adaptable Energy-Efficient Medium Access Control Protocol for Wireless Sensor Networks

An Adaptable Energy-Efficient Medium Access Control Protocol for Wireless Sensor Networks An Adaptable Energy-Efficient ium Access Control Protocol for Wireless Sensor Networks Justin T. Kautz 23 rd Information Operations Squadron, Lackland AFB TX Justin.Kautz@lackland.af.mil Barry E. Mullins,

More information

Performance Evaluation of Energy Consumption of Reactive Protocols under Self- Similar Traffic

Performance Evaluation of Energy Consumption of Reactive Protocols under Self- Similar Traffic International Journal of Computer Science & Communication Vol. 1, No. 1, January-June 2010, pp. 67-71 Performance Evaluation of Energy Consumption of Reactive Protocols under Self- Similar Traffic Dhiraj

More information

ON THE CONCEPT OF DISTRIBUTED DIGITAL SIGNAL PROCESSING IN WIRELESS SENSOR NETWORKS

ON THE CONCEPT OF DISTRIBUTED DIGITAL SIGNAL PROCESSING IN WIRELESS SENSOR NETWORKS ON THE CONCEPT OF DISTRIBUTED DIGITAL SIGNAL PROCESSING IN WIRELESS SENSOR NETWORKS Carla F. Chiasserini Dipartimento di Elettronica, Politecnico di Torino Torino, Italy Ramesh R. Rao California Institute

More information

FTSP Power Characterization

FTSP Power Characterization 1. Introduction FTSP Power Characterization Chris Trezzo Tyler Netherland Over the last few decades, advancements in technology have allowed for small lowpowered devices that can accomplish a multitude

More information

Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks

Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks Yuqun Zhang, Chen-Hsiang Feng, Ilker Demirkol, Wendi B. Heinzelman Department of Electrical and Computer

More information

ODMAC: An On Demand MAC Protocol for Energy Harvesting Wireless Sensor Networks

ODMAC: An On Demand MAC Protocol for Energy Harvesting Wireless Sensor Networks ODMAC: An On Demand MAC Protocol for Energy Harvesting Wireless Sensor Networks Xenofon Fafoutis DTU Informatics Technical University of Denmark xefa@imm.dtu.dk Nicola Dragoni DTU Informatics Technical

More information

Scheduling Data Collection with Dynamic Traffic Patterns in Wireless Sensor Networks

Scheduling Data Collection with Dynamic Traffic Patterns in Wireless Sensor Networks Scheduling Data Collection with Dynamic Traffic Patterns in Wireless Sensor Networks Wenbo Zhao and Xueyan Tang School of Computer Engineering, Nanyang Technological University, Singapore 639798 Email:

More information

Design of an energy efficient Medium Access Control protocol for wireless sensor networks. Thesis Committee

Design of an energy efficient Medium Access Control protocol for wireless sensor networks. Thesis Committee Design of an energy efficient Medium Access Control protocol for wireless sensor networks Thesis Committee Masters Thesis Defense Kiran Tatapudi Dr. Chansu Yu, Dr. Wenbing Zhao, Dr. Yongjian Fu Organization

More information

Comparison between Preamble Sampling and Wake-Up Receivers in Wireless Sensor Networks

Comparison between Preamble Sampling and Wake-Up Receivers in Wireless Sensor Networks Comparison between Preamble Sampling and Wake-Up Receivers in Wireless Sensor Networks Richard Su, Thomas Watteyne, Kristofer S. J. Pister BSAC, University of California, Berkeley, USA {yukuwan,watteyne,pister}@eecs.berkeley.edu

More information

Energy Efficient MAC Protocol with Localization scheme for Wireless Sensor Networks using Directional Antennas

Energy Efficient MAC Protocol with Localization scheme for Wireless Sensor Networks using Directional Antennas Energy Efficient MAC Protocol with Localization scheme for Wireless Sensor Networks using Directional Antennas Anique Akhtar Department of Electrical Engineering aakhtar13@ku.edu.tr Buket Yuksel Department

More information

SENSOR PLACEMENT FOR MAXIMIZING LIFETIME PER UNIT COST IN WIRELESS SENSOR NETWORKS

SENSOR PLACEMENT FOR MAXIMIZING LIFETIME PER UNIT COST IN WIRELESS SENSOR NETWORKS SENSOR PACEMENT FOR MAXIMIZING IFETIME PER UNIT COST IN WIREESS SENSOR NETWORKS Yunxia Chen, Chen-Nee Chuah, and Qing Zhao Department of Electrical and Computer Engineering University of California, Davis,

More information

Ultra-Low Duty Cycle MAC with Scheduled Channel Polling

Ultra-Low Duty Cycle MAC with Scheduled Channel Polling Ultra-Low Duty Cycle MAC with Scheduled Channel Polling Wei Ye and John Heidemann CS577 Brett Levasseur 12/3/2013 Outline Introduction Scheduled Channel Polling (SCP-MAC) Energy Performance Analysis Implementation

More information

Lecture on Sensor Networks

Lecture on Sensor Networks Lecture on Sensor Networks Copyright (c) 2008 Dr. Thomas Haenselmann (University of Mannheim, Germany). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU

More information

Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks

Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks Noritaka Shigei, Hiromi Miyajima, and Hiroki Morishita Abstract The wireless sensor network

More information

Deployment Design of Wireless Sensor Network for Simple Multi-Point Surveillance of a Moving Target

Deployment Design of Wireless Sensor Network for Simple Multi-Point Surveillance of a Moving Target Sensors 2009, 9, 3563-3585; doi:10.3390/s90503563 OPEN ACCESS sensors ISSN 1424-8220 www.mdpi.com/journal/sensors Article Deployment Design of Wireless Sensor Network for Simple Multi-Point Surveillance

More information

Performance study of node placement in sensor networks

Performance study of node placement in sensor networks Performance study of node placement in sensor networks Mika ISHIZUKA and Masaki AIDA NTT Information Sharing Platform Labs, NTT Corporation 3-9-, Midori-Cho Musashino-Shi Tokyo 8-8585 Japan {ishizuka.mika,

More information

Energy-Optimal and Energy-Balanced Sorting in a Single-Hop Wireless Sensor Network

Energy-Optimal and Energy-Balanced Sorting in a Single-Hop Wireless Sensor Network Energy-Optimal and Energy-Balanced Sorting in a Single-Hop Wireless Sensor Network Mitali Singh and Viktor K Prasanna Department of Computer Science University of Southern California Los Angeles, CA 90089,

More information

Power Control Optimization of Code Division Multiple Access (CDMA) Systems Using the Knowledge of Battery Capacity Of the Mobile.

Power Control Optimization of Code Division Multiple Access (CDMA) Systems Using the Knowledge of Battery Capacity Of the Mobile. Power Control Optimization of Code Division Multiple Access (CDMA) Systems Using the Knowledge of Battery Capacity Of the Mobile. Rojalin Mishra * Department of Electronics & Communication Engg, OEC,Bhubaneswar,Odisha

More information

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers Kwang-il Hwang, Kyung-tae Kim, and Doo-seop Eom Department of Electronics and Computer Engineering, Korea University 5-1ga,

More information

Bounds on Achievable Rates for Cooperative Channel Coding

Bounds on Achievable Rates for Cooperative Channel Coding Bounds on Achievable Rates for Cooperative Channel Coding Ameesh Pandya and Greg Pottie Department of Electrical Engineering University of California, Los Angeles {ameesh, pottie}@ee.ucla.edu Abstract

More information

An Adaptive Indoor Positioning Algorithm for ZigBee WSN

An Adaptive Indoor Positioning Algorithm for ZigBee WSN An Adaptive Indoor Positioning Algorithm for ZigBee WSN Tareq Alhmiedat Department of Information Technology Tabuk University Tabuk, Saudi Arabia t.alhmiedat@ut.edu.sa ABSTRACT: The areas of positioning

More information

Chapter 1 Basic concepts of wireless data networks (cont d.)

Chapter 1 Basic concepts of wireless data networks (cont d.) Chapter 1 Basic concepts of wireless data networks (cont d.) Part 4: Wireless network operations Oct 6 2004 1 Mobility management Consists of location management and handoff management Location management

More information

Politecnico di Milano Advanced Network Technologies Laboratory. Beyond Standard MAC Sublayer

Politecnico di Milano Advanced Network Technologies Laboratory. Beyond Standard MAC Sublayer Politecnico di Milano Advanced Network Technologies Laboratory Beyond Standard 802.15.4 MAC Sublayer MAC Design Approaches o Conten&on based n Allow collisions n O2en CSMA based (SMAC, STEM, Z- MAC, GeRaF,

More information

Partial overlapping channels are not damaging

Partial overlapping channels are not damaging Journal of Networking and Telecomunications (2018) Original Research Article Partial overlapping channels are not damaging Jing Fu,Dongsheng Chen,Jiafeng Gong Electronic Information Engineering College,

More information

Fault-tolerant Coverage in Dense Wireless Sensor Networks

Fault-tolerant Coverage in Dense Wireless Sensor Networks Fault-tolerant Coverage in Dense Wireless Sensor Networks Akshaye Dhawan and Magdalena Parks Department of Mathematics and Computer Science, Ursinus College, 610 E Main Street, Collegeville, PA, USA {adhawan,

More information

Adaptation of MAC Layer for QoS in WSN

Adaptation of MAC Layer for QoS in WSN Adaptation of MAC Layer for QoS in WSN Sukumar Nandi and Aditya Yadav IIT Guwahati Abstract. In this paper, we propose QoS aware MAC protocol for Wireless Sensor Networks. In WSNs, there can be two types

More information

Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks

Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks A. P. Azad and A. Chockalingam Department of ECE, Indian Institute of Science, Bangalore 5612, India Abstract Increasing

More information

Wavelength Assignment Problem in Optical WDM Networks

Wavelength Assignment Problem in Optical WDM Networks Wavelength Assignment Problem in Optical WDM Networks A. Sangeetha,K.Anusudha 2,Shobhit Mathur 3 and Manoj Kumar Chaluvadi 4 asangeetha@vit.ac.in 2 Kanusudha@vit.ac.in 2 3 shobhitmathur24@gmail.com 3 4

More information

A Practical Approach to Bitrate Control in Wireless Mesh Networks using Wireless Network Utility Maximization

A Practical Approach to Bitrate Control in Wireless Mesh Networks using Wireless Network Utility Maximization A Practical Approach to Bitrate Control in Wireless Mesh Networks using Wireless Network Utility Maximization EE359 Course Project Mayank Jain Department of Electrical Engineering Stanford University Introduction

More information

Ultra-Low Duty Cycle MAC with Scheduled Channel Polling

Ultra-Low Duty Cycle MAC with Scheduled Channel Polling USC/ISI Technical Report ISI-TR-64, July 25. This report is superseded by a later version published at ACM SenSys 6. 1 Ultra-Low Duty Cycle MAC with Scheduled Channel Polling Wei Ye and John Heidemann

More information

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes 7th Mediterranean Conference on Control & Automation Makedonia Palace, Thessaloniki, Greece June 4-6, 009 Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes Theofanis

More information

Cellular systems 02/10/06

Cellular systems 02/10/06 Cellular systems 02/10/06 Cellular systems Implements space division multiplex: base station covers a certain transmission area (cell) Mobile stations communicate only via the base station Cell sizes from

More information

Achieving Network Consistency. Octav Chipara

Achieving Network Consistency. Octav Chipara Achieving Network Consistency Octav Chipara Reminders Homework is postponed until next class if you already turned in your homework, you may resubmit Please send me your peer evaluations 2 Next few lectures

More information

PMAC: An adaptive energy-efficient MAC protocol for Wireless Sensor Networks

PMAC: An adaptive energy-efficient MAC protocol for Wireless Sensor Networks PMAC: An adaptive energy-efficient MAC protocol for Wireless Sensor Networks Tao Zheng School of Computer Science University of Oklahoma Norman, Oklahoma 7309 65 Email: tao@ou.edu Sridhar Radhakrishnan

More information

Wireless Sensor Networks (aka, Active RFID)

Wireless Sensor Networks (aka, Active RFID) Politecnico di Milano Advanced Network Technologies Laboratory Wireless Sensor Networks (aka, Active RFID) Hardware and Hardware Abstractions Design Challenges/Guidelines/Opportunities 1 Let s start From

More information

Mathematical Problems in Networked Embedded Systems

Mathematical Problems in Networked Embedded Systems Mathematical Problems in Networked Embedded Systems Miklós Maróti Institute for Software Integrated Systems Vanderbilt University Outline Acoustic ranging TDMA in globally asynchronous locally synchronous

More information

Coding aware routing in wireless networks with bandwidth guarantees. IEEEVTS Vehicular Technology Conference Proceedings. Copyright IEEE.

Coding aware routing in wireless networks with bandwidth guarantees. IEEEVTS Vehicular Technology Conference Proceedings. Copyright IEEE. Title Coding aware routing in wireless networks with bandwidth guarantees Author(s) Hou, R; Lui, KS; Li, J Citation The IEEE 73rd Vehicular Technology Conference (VTC Spring 2011), Budapest, Hungary, 15-18

More information

Reliable and Energy-Efficient Data Delivery in Sparse WSNs with Multiple Mobile Sinks

Reliable and Energy-Efficient Data Delivery in Sparse WSNs with Multiple Mobile Sinks Reliable and Energy-Efficient Data Delivery in Sparse WSNs with Multiple Mobile Sinks Giuseppe Anastasi Pervasive Computing & Networking Lab () Dept. of Information Engineering, University of Pisa E-mail:

More information

Active RFID System with Wireless Sensor Network for Power

Active RFID System with Wireless Sensor Network for Power 38 Active RFID System with Wireless Sensor Network for Power Raed Abdulla 1 and Sathish Kumar Selvaperumal 2 1,2 School of Engineering, Asia Pacific University of Technology & Innovation, 57 Kuala Lumpur,

More information

Internet of Things Prof. M. Cesana. Exam June 26, Family Name Given Name Student ID 3030 Course of studies 3030 Total Available time: 2 hours

Internet of Things Prof. M. Cesana. Exam June 26, Family Name Given Name Student ID 3030 Course of studies 3030 Total Available time: 2 hours Internet of Things Prof. M. Cesana Exam June 26, 2011 Family Name Given Name John Doe Student ID 3030 Course of studies 3030 Total Available time: 2 hours E1 E2 E3 Questions Questions OS 1 Exercise (8

More information

Energy-Efficient MANET Routing: Ideal vs. Realistic Performance

Energy-Efficient MANET Routing: Ideal vs. Realistic Performance Energy-Efficient MANET Routing: Ideal vs. Realistic Performance Paper by: Thomas Knuz IEEE IWCMC Conference Aug. 2008 Presented by: Farzana Yasmeen For : CSE 6590 2013.11.12 Contents Introduction Review:

More information

Energy-Efficient Data Management for Sensor Networks

Energy-Efficient Data Management for Sensor Networks Energy-Efficient Data Management for Sensor Networks Al Demers, Cornell University ademers@cs.cornell.edu Johannes Gehrke, Cornell University Rajmohan Rajaraman, Northeastern University Niki Trigoni, Cornell

More information

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 3: RADIO COMMUNICATIONS Anna Förster

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 3: RADIO COMMUNICATIONS Anna Förster INTRODUCTION TO WIRELESS SENSOR NETWORKS CHAPTER 3: RADIO COMMUNICATIONS Anna Förster OVERVIEW 1. Radio Waves and Modulation/Demodulation 2. Properties of Wireless Communications 1. Interference and noise

More information

CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN

CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN Mohamad Haidar Robert Akl Hussain Al-Rizzo Yupo Chan University of Arkansas at University of Arkansas at University of Arkansas at University

More information

Introduction. Introduction ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS. Smart Wireless Sensor Systems 1

Introduction. Introduction ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS. Smart Wireless Sensor Systems 1 ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS Xiang Ji and Hongyuan Zha Material taken from Sensor Network Operations by Shashi Phoa, Thomas La Porta and Christopher Griffin, John Wiley,

More information

Gateways Placement in Backbone Wireless Mesh Networks

Gateways Placement in Backbone Wireless Mesh Networks I. J. Communications, Network and System Sciences, 2009, 1, 1-89 Published Online February 2009 in SciRes (http://www.scirp.org/journal/ijcns/). Gateways Placement in Backbone Wireless Mesh Networks Abstract

More information

(some) Device Localization, Mobility Management and 5G RAN Perspectives

(some) Device Localization, Mobility Management and 5G RAN Perspectives (some) Device Localization, Mobility Management and 5G RAN Perspectives Mikko Valkama Tampere University of Technology Finland mikko.e.valkama@tut.fi +358408490756 December 16th, 2016 TAKE-5 and TUT, shortly

More information

Performance comparison of AODV, DSDV and EE-DSDV routing protocol algorithm for wireless sensor network

Performance comparison of AODV, DSDV and EE-DSDV routing protocol algorithm for wireless sensor network Performance comparison of AODV, DSDV and EE-DSDV routing algorithm for wireless sensor network Mohd.Taufiq Norhizat a, Zulkifli Ishak, Mohd Suhaimi Sauti, Md Zaini Jamaludin a Wireless Sensor Network Group,

More information

Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks

Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks M. KIRAN KUMAR 1, M. KANCHANA 2, I. SAPTHAMI 3, B. KRISHNA MURTHY 4 1, 2, M. Tech Student, 3 Asst. Prof 1, 4, Siddharth Institute

More information

Using Rugby MSF Broadcast for Time Division Multiplexing Synchronisation in a Housing Community Sensor Network

Using Rugby MSF Broadcast for Time Division Multiplexing Synchronisation in a Housing Community Sensor Network Using Rugby MSF Broadcast for Time Division Multiplexing Synchronisation in a Housing Community Sensor Network John Maloco, Séamus McLoone and Declan T. Delaney Department of Electronic Engineering, National

More information

Multiple Receiver Strategies for Minimizing Packet Loss in Dense Sensor Networks

Multiple Receiver Strategies for Minimizing Packet Loss in Dense Sensor Networks Multiple Receiver Strategies for Minimizing Packet Loss in Dense Sensor Networks Bernhard Firner Chenren Xu Yanyong Zhang Richard Howard Rutgers University, Winlab May 10, 2011 Bernhard Firner (Winlab)

More information

An Improved MAC Model for Critical Applications in Wireless Sensor Networks

An Improved MAC Model for Critical Applications in Wireless Sensor Networks An Improved MAC Model for Critical Applications in Wireless Sensor Networks Gayatri Sakya Vidushi Sharma Trisha Sawhney JSSATE, Noida GBU, Greater Noida JSSATE, Noida, ABSTRACT The wireless sensor networks

More information

Feasibility and Benefits of Passive RFID Wake-up Radios for Wireless Sensor Networks

Feasibility and Benefits of Passive RFID Wake-up Radios for Wireless Sensor Networks Feasibility and Benefits of Passive RFID Wake-up Radios for Wireless Sensor Networks He Ba, Ilker Demirkol, and Wendi Heinzelman Department of Electrical and Computer Engineering University of Rochester

More information

CS649 Sensor Networks IP Lecture 9: Synchronization

CS649 Sensor Networks IP Lecture 9: Synchronization CS649 Sensor Networks IP Lecture 9: Synchronization I-Jeng Wang http://hinrg.cs.jhu.edu/wsn06/ Spring 2006 CS 649 1 Outline Description of the problem: axes, shortcomings Reference-Broadcast Synchronization

More information

Optimizing the Performance of MANET with an Enhanced Antenna Positioning System

Optimizing the Performance of MANET with an Enhanced Antenna Positioning System 50 Optimizing the Performance of MANET with an Enhanced Antenna Positioning System Jackline Alphonse and Mohamed Naufal M.Saad Electrical and Electronics Department, Universiti Teknologi PETRONAS, Bandar

More information

A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS

A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS C. COMMANDER, C.A.S. OLIVEIRA, P.M. PARDALOS, AND M.G.C. RESENDE ABSTRACT. Ad hoc networks are composed of a set of wireless

More information

Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks

Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks Chittabrata Ghosh and Dharma P. Agrawal OBR Center for Distributed and Mobile Computing

More information

Multiple Access (3) Required reading: Garcia 6.3, 6.4.1, CSE 3213, Fall 2010 Instructor: N. Vlajic

Multiple Access (3) Required reading: Garcia 6.3, 6.4.1, CSE 3213, Fall 2010 Instructor: N. Vlajic 1 Multiple Access (3) Required reading: Garcia 6.3, 6.4.1, 6.4.2 CSE 3213, Fall 2010 Instructor: N. Vlajic 2 Medium Sharing Techniques Static Channelization FDMA TDMA Attempt to produce an orderly access

More information

Energy-Efficient Communication Protocol for Wireless Microsensor Networks

Energy-Efficient Communication Protocol for Wireless Microsensor Networks Energy-Efficient Communication Protocol for Wireless Microsensor Networks Wendi Rabiner Heinzelman Anatha Chandrasakan Hari Balakrishnan Massachusetts Institute of Technology Presented by Rick Skowyra

More information

Cognitive Wireless Network : Computer Networking. Overview. Cognitive Wireless Networks

Cognitive Wireless Network : Computer Networking. Overview. Cognitive Wireless Networks Cognitive Wireless Network 15-744: Computer Networking L-19 Cognitive Wireless Networks Optimize wireless networks based context information Assigned reading White spaces Online Estimation of Interference

More information

Distributed Power Control in Cellular and Wireless Networks - A Comparative Study

Distributed Power Control in Cellular and Wireless Networks - A Comparative Study Distributed Power Control in Cellular and Wireless Networks - A Comparative Study Vijay Raman, ECE, UIUC 1 Why power control? Interference in communication systems restrains system capacity In cellular

More information

Computer Networks II Advanced Features (T )

Computer Networks II Advanced Features (T ) Computer Networks II Advanced Features (T-110.5111) Wireless Sensor Networks, PhD Postdoctoral Researcher DCS Research Group For classroom use only, no unauthorized distribution Wireless sensor networks:

More information

IEEE Wireless Access Method and Physical Specification

IEEE Wireless Access Method and Physical Specification IEEE 802.11 Wireless Access Method and Physical Specification Title: The importance of Power Management provisions in the MAC. Presented by: Abstract: Wim Diepstraten NCR WCND-Utrecht NCR/AT&T Network

More information

Technical Aspects of LTE Part I: OFDM

Technical Aspects of LTE Part I: OFDM Technical Aspects of LTE Part I: OFDM By Mohammad Movahhedian, Ph.D., MIET, MIEEE m.movahhedian@mci.ir ITU regional workshop on Long-Term Evolution 9-11 Dec. 2013 Outline Motivation for LTE LTE Network

More information

A review paper on Software Defined Radio

A review paper on Software Defined Radio A review paper on Software Defined Radio 1 Priyanka S. Kamble, 2 Bhalchandra B. Godbole Department of Electronics Engineering K.B.P.College of Engineering, Satara, India. Abstract -In this paper, we summarize

More information

T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University

T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University Cross-layer design for video streaming over wireless ad hoc networks T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University Outline Cross-layer

More information

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February ISSN

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February ISSN International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February-2016 181 A NOVEL RANGE FREE LOCALIZATION METHOD FOR MOBILE SENSOR NETWORKS Anju Thomas 1, Remya Ramachandran 2 1

More information

Performance of ALOHA and CSMA in Spatially Distributed Wireless Networks

Performance of ALOHA and CSMA in Spatially Distributed Wireless Networks Performance of ALOHA and CSMA in Spatially Distributed Wireless Networks Mariam Kaynia and Nihar Jindal Dept. of Electrical and Computer Engineering, University of Minnesota Dept. of Electronics and Telecommunications,

More information

Instantaneous Inventory. Gain ICs

Instantaneous Inventory. Gain ICs Instantaneous Inventory Gain ICs INSTANTANEOUS WIRELESS Perhaps the most succinct figure of merit for summation of all efficiencies in wireless transmission is the ratio of carrier frequency to bitrate,

More information

Energy-aware Task Scheduling in Wireless Sensor Networks based on Cooperative Reinforcement Learning

Energy-aware Task Scheduling in Wireless Sensor Networks based on Cooperative Reinforcement Learning Energy-aware Task Scheduling in Wireless Sensor Networks based on Cooperative Reinforcement Learning Muhidul Islam Khan, Bernhard Rinner Institute of Networked and Embedded Systems Alpen-Adria Universität

More information

On Localized Prediction for Power Efficient Object Tracking in Sensor Networks

On Localized Prediction for Power Efficient Object Tracking in Sensor Networks On Localized Prediction for Power Efficient Object Tracking in Sensor Networks Yingqi Xu Wang-Chien Lee Department of Computer Science and Engineering Pennsylvania State University University Park, PA

More information

Design Considerations for Energy-Efficient Radios in Wireless Microsensor Networks

Design Considerations for Energy-Efficient Radios in Wireless Microsensor Networks Journal of VLSI Signal Processing 37, 77 94, 2004 c 2004 Kluwer Academic Publishers. Manufactured in The Netherlands. Design Considerations for Energy-Efficient Radios in Wireless Microsensor Networks

More information

Medium Access Control Protocol for WBANS

Medium Access Control Protocol for WBANS Medium Access Control Protocol for WBANS Using the slides presented by the following group: An Efficient Multi-channel Management Protocol for Wireless Body Area Networks Wangjong Lee *, Seung Hyong Rhee

More information

The Use of A Mobile Sink for Quality Data Collection in Energy Harvesting Sensor Networks

The Use of A Mobile Sink for Quality Data Collection in Energy Harvesting Sensor Networks 3 IEEE Wireless Communications and Networking Conference (WCNC): NETWORKS The Use of A Mobile Sink for Quality Data Collection in Energy Harvesting Sensor Networks Xiaojiang Ren Weifa Liang Research School

More information

The problem of upstream traffic synchronization in Passive Optical Networks

The problem of upstream traffic synchronization in Passive Optical Networks The problem of upstream traffic synchronization in Passive Optical Networks Glen Kramer Department of Computer Science University of California Davis, CA 95616 kramer@cs.ucdavis.edu Abstaract. Recently

More information

Preamble MAC Protocols with Non-persistent Receivers in Wireless Sensor Networks

Preamble MAC Protocols with Non-persistent Receivers in Wireless Sensor Networks Preamble MAC Protocols with Non-persistent Receivers in Wireless Sensor Networks Abdelmalik Bachir, Martin Heusse, and Andrzej Duda Grenoble Informatics Laboratory, Grenoble, France Abstract. In preamble

More information

A Review on Energy Efficient Protocols Implementing DR Schemes and SEECH in Wireless Sensor Networks

A Review on Energy Efficient Protocols Implementing DR Schemes and SEECH in Wireless Sensor Networks A Review on Energy Efficient Protocols Implementing DR Schemes and SEECH in Wireless Sensor Networks Shaveta Gupta 1, Vinay Bhatia 2 1,2 (ECE Deptt. Baddi University of Emerging Sciences and Technology,HP)

More information

A Forwarding Station Integrated the Low Energy Adaptive Clustering Hierarchy in Ad-hoc Wireless Sensor Networks

A Forwarding Station Integrated the Low Energy Adaptive Clustering Hierarchy in Ad-hoc Wireless Sensor Networks A Forwarding Station Integrated the Low Energy Adaptive Clustering Hierarchy in Ad-hoc Wireless Sensor Networks Chao-Shui Lin, Ching-Mu Chen, Tung-Jung Chan and Tsair-Rong Chen Department of Electrical

More information

Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios

Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios Roberto Hincapie, Li Zhang, Jian Tang, Guoliang Xue, Richard S. Wolff and Roberto Bustamante Abstract Cognitive radios allow

More information

Optimal Multicast Routing in Ad Hoc Networks

Optimal Multicast Routing in Ad Hoc Networks Mat-2.108 Independent esearch Projects in Applied Mathematics Optimal Multicast outing in Ad Hoc Networks Juha Leino 47032J Juha.Leino@hut.fi 1st December 2002 Contents 1 Introduction 2 2 Optimal Multicasting

More information

Node Deployment Strategies and Coverage Prediction in 3D Wireless Sensor Network with Scheduling

Node Deployment Strategies and Coverage Prediction in 3D Wireless Sensor Network with Scheduling Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 8 (2017) pp. 2243-2255 Research India Publications http://www.ripublication.com Node Deployment Strategies and Coverage

More information

Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system

Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system Nidhi Sindhwani Department of ECE, ASET, GGSIPU, Delhi, India Abstract: In MIMO system, there are several number of users

More information

An Empirical Study of Harvesting-Aware Duty Cycling in Sustainable Wireless Sensor Networks

An Empirical Study of Harvesting-Aware Duty Cycling in Sustainable Wireless Sensor Networks An Empirical Study of Harvesting-Aware Duty Cycling in Sustainable Wireless Sensor Networks Pius Lee Mingding Han Hwee-Pink Tan Alvin Valera Institute for Infocomm Research (I2R), A*STAR 1 Fusionopolis

More information

UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER

UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER Dr. Cheng Lu, Chief Communications System Engineer John Roach, Vice President, Network Products Division Dr. George Sasvari,

More information

SYSTEM SENSOR WIRELESS REMOTE INDICATOR PRODUCT SPECIFICATION

SYSTEM SENSOR WIRELESS REMOTE INDICATOR PRODUCT SPECIFICATION Model name: M200I-RF Introduction: The 200 Series Commercial RF System is designed for use with compatible intelligent fire systems using the System Sensor 200/500 Series CLIP, Enhanced and Advanced communication

More information

Dynamic Frequency Hopping in Cellular Fixed Relay Networks

Dynamic Frequency Hopping in Cellular Fixed Relay Networks Dynamic Frequency Hopping in Cellular Fixed Relay Networks Omer Mubarek, Halim Yanikomeroglu Broadband Communications & Wireless Systems Centre Carleton University, Ottawa, Canada {mubarek, halim}@sce.carleton.ca

More information

Multiple Access Methods

Multiple Access Methods Helsinki University of Technology S-72.333 Postgraduate Seminar on Radio Communications Multiple Access Methods Er Liu liuer@cc.hut.fi Communications Laboratory 16.11.2004 Content of presentation Protocol

More information

SIMULATING NETWORKS OF WIRELESS SENSORS. Sung Park Andreas Savvides Mani B. Srivastava

SIMULATING NETWORKS OF WIRELESS SENSORS. Sung Park Andreas Savvides Mani B. Srivastava Proceedings of the 21 Winter Simulation Conference B. A. Peters, J. S. Smith, D. J. Medeiros, and M. W. Rohrer, eds. SIMULATING NETWORKS OF WIRELESS SENSORS Sung Park Andreas Savvides Mani B. Srivastava

More information

Link Level Design Issues for IP based Multi Hop Communication Systems

Link Level Design Issues for IP based Multi Hop Communication Systems TH WWRF MEETING IN EINDHOVEN, THE NETHERLANDS RD TH DECEMBER Link Level Design Issues for IP based Multi Hop Communication Systems Fitzek, Seeling, Martin Reisslein Abstract In this paper we outline our

More information

Wireless Internet Routing. IEEE s

Wireless Internet Routing. IEEE s Wireless Internet Routing IEEE 802.11s 1 Acknowledgments Cigdem Sengul, Deutsche Telekom Laboratories 2 Outline Introduction Interworking Topology discovery Routing 3 IEEE 802.11a/b/g /n /s IEEE 802.11s:

More information

Open Access AOA and TDOA-Based a Novel Three Dimensional Location Algorithm in Wireless Sensor Network

Open Access AOA and TDOA-Based a Novel Three Dimensional Location Algorithm in Wireless Sensor Network Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 1611-1615 1611 Open Access AOA and TDOA-Based a Novel Three Dimensional Location Algorithm

More information

WUR-MAC: Energy efficient Wakeup Receiver based MAC Protocol

WUR-MAC: Energy efficient Wakeup Receiver based MAC Protocol WUR-MAC: Energy efficient Wakeup Receiver based MAC Protocol S. Mahlknecht, M. Spinola Durante Institute of Computer Technology Vienna University of Technology Vienna, Austria {mahlknecht,spinola}@ict.tuwien.ac.at

More information