Wireless Sensor Networks and RFIDs

Size: px
Start display at page:

Download "Wireless Sensor Networks and RFIDs"

Transcription

1 Wireless Sensor Networks and RFIDs Robert Dick Department of Electrical Engineering and Computer Science Northwestern University L477 Tech. Typical Current Draw 1 sec Heartbeat 30 beats per sample 10 Sampling and Radio Transmission 9-15 ma 9 8 Current (ma) 7 Radio Receive for Mesh Maintenance 2-6 ma Heartbeat 1-2 ma 6 Low Power Sleep ma Time (seconds)

2 Collaborators Projects in close collaboration with Lan Bai Peter Dinda Charles Dowding Sasha Jevtic Mat Kotowsky Lei Yang 2 Robert Dick Wireless Sensor Networks and RFIDs

3 Outline Wireless sensor networks 1. Wireless sensor networks 3 Robert Dick Wireless Sensor Networks and RFIDs

4 Section outline Wireless sensor networks 1. Wireless sensor networks 4 Robert Dick Wireless Sensor Networks and RFIDs

5 Wireless sensor networks Self-organized wireless networks of sensors Extremely tight resource constraints Limited performance processor Memory constraints, e.g., 10 KB Energy constraints Price limitations 5 Robert Dick Wireless Sensor Networks and RFIDs

6 Section outline Wireless sensor networks 1. Wireless sensor networks 6 Robert Dick Wireless Sensor Networks and RFIDs

7 Memory expansion for MMU-less embedded systems Observations and Results Application: Sensor networks Implemented in LLVM, tested on TelosB nodes Increases usable memory by 40%, unchanged applications Little overhead after compiler optimizations CASES 06 7 Robert Dick Wireless Sensor Networks and RFIDs

8 Original code Wireless sensor networks Variable: array A[N] for i {0 N} do A[i] x end for 8 Robert Dick Wireless Sensor Networks and RFIDs

9 Transformed w.o. optimization Variable: array A allocated by vm malloc(n) for i {0 N} do check handle((a + i)/pagesize) write handle(a + i, x) end for 9 Robert Dick Wireless Sensor Networks and RFIDs

10 Loop transformation Wireless sensor networks Variable: array A allocated by vm malloc(n) pnum A/PAGESIZE for i {A/PAGESIZE (A + N)/PAGESIZE} do check handle(pnum) for j {0 PAGESIZE} do write handle(a + i PAGESIZE + j, x) pnum + + end for end for 10 Robert Dick Wireless Sensor Networks and RFIDs

11 With loop transformation and pointer dereferencing Variable: array A allocated by vm malloc(n) pnum A/PAGESIZE for i {A/PAGESIZE (A + N)/PAGESIZE} do check handle(pnum) base ptr virtual to physical(a + i PAGESIZE) for j {0 PAGESIZE} do base ptr x base ptr + + pnum + + end for end for 11 Robert Dick Wireless Sensor Networks and RFIDs

12 Experimental setup Wireless sensor networks TelosB wireless sensor node TI MSP430, 10 KB RAM Power measurement National Instrument 6034E data acquisition card Metrics Memory expansion proportion Power consumption Execution time 12 Robert Dick Wireless Sensor Networks and RFIDs

13 Power measurements for convolution application Power (mw) Time (s) 13 Robert Dick Wireless Sensor Networks and RFIDs

14 Wireless sensor networks With on-line software data compression 8 7 Power (mw) Robert Dick 4 Time (s) Wireless Sensor Networks and RFIDs 8

15 After compiler optimizations Power (mw) Time (s) 15 Robert Dick Wireless Sensor Networks and RFIDs

16 Experimental results Wireless sensor networks Increases usable memory by 40% on average with less than 10% overhead for all but one application Pointer dereferencing optimization couldn t be used for image convolution Performance overhead therefore high for that application Memory expansion will increase with increasing physical RAM Will approach 100% given current compression ratio 16 Robert Dick Wireless Sensor Networks and RFIDs

17 Section outline Wireless sensor networks 1. Wireless sensor networks 17 Robert Dick Wireless Sensor Networks and RFIDs

18 Low-power event-driven applications Conventional sensor network operation: poll and sleep Many real applications must detect unpredictable events How? 18 Robert Dick Wireless Sensor Networks and RFIDs

19 Low-power event-driven applications Conventional sensor network operation: poll and sleep Many real applications must detect unpredictable events How? Periodically awaken? Misses events 18 Robert Dick Wireless Sensor Networks and RFIDs

20 Low-power event-driven applications Conventional sensor network operation: poll and sleep Many real applications must detect unpredictable events How? Periodically awaken? Misses events Always remain awake? Two days of battery life 18 Robert Dick Wireless Sensor Networks and RFIDs

21 Low-power event-driven applications Conventional sensor network operation: poll and sleep Many real applications must detect unpredictable events How? Periodically awaken? Misses events Always remain awake? Two days of battery life Goal Always awake but with ultra-low power consumption 18 Robert Dick Wireless Sensor Networks and RFIDs

22 Application: Structural integrity monitoring Buildings and bridges have cracks Most not dangerous, but could become dangerous Widths change in response to vibration 300 µm common, 3 width of human hair 19 Robert Dick Wireless Sensor Networks and RFIDs

23 Detecting dangerous conditions Inspectors monitor cracks to determine when dangerous Expensive Infrequent Could use wireless sensor networks Inexpensive Constant Problem: Event-driven application. Only a few days of battery life. 20 Robert Dick Wireless Sensor Networks and RFIDs

24 Detecting dangerous conditions Inspectors monitor cracks to determine when dangerous Expensive Infrequent Could use wireless sensor networks Inexpensive Constant Problem: Event-driven application. Only a few days of battery life. 20 Robert Dick Wireless Sensor Networks and RFIDs

25 Past structural integrity work N. Kurata, et al., A study on building risk monitoring using wireless sensor network MICA mote, in Proc. Int. Conf. on Structural Health Monitoring and Intelligent Infrastructure, Nov. 2003, pp J. P. Lynch, et al., The design of a wireless sensing unit for structural health monitoring, in Proc. Int. Wkshp. on Structural Health Monitoring, Sept N. Xu, et al., A wireless sensor network for structural monitoring, in Proc. Conf. on Embedded and Networked Sensor Systems, Nov Robert Dick Wireless Sensor Networks and RFIDs

26 Past structural integrity work N. Kurata, et al., A study on building risk monitoring using wireless sensor network MICA mote, in Proc. Int. Conf. on Structural Health Monitoring and Intelligent Infrastructure, Nov. 2003, pp J. P. Lynch, et al., The design of a wireless sensing unit for structural health monitoring, in Proc. Int. Wkshp. on Structural Health Monitoring, Sept N. Xu, et al., A wireless sensor network for structural monitoring, in Proc. Conf. on Embedded and Networked Sensor Systems, Nov Short battery life. Two-day deployments and explosives. 21 Robert Dick Wireless Sensor Networks and RFIDs

27 Wireless sensor networks Circuit board 22 Robert Dick Wireless Sensor Networks and RFIDs

28 Board and large geophone 23 Robert Dick Wireless Sensor Networks and RFIDs

29 Wireless sensor networks Primary sensor 24 Robert Dick Wireless Sensor Networks and RFIDs

30 Wireless sensor networks System in case 25 Robert Dick Wireless Sensor Networks and RFIDs

31 Web interface screen shot 26 Robert Dick Wireless Sensor Networks and RFIDs

32 Web interface screen shot 26 Robert Dick Wireless Sensor Networks and RFIDs

33 Power reduction Wireless sensor networks Always on: 24 mw Lucid dreaming hardware: 16.5 µw Best existing work: 2.64 mw Lucid dreaming in system: µw 27 Robert Dick Wireless Sensor Networks and RFIDs

34 Implications and status Original situation Missed events or battery replacement after a few days Current status Battery life of months Many boards fabricated Deployed in multiple buildings already Public real-time web interface for data 28 Robert Dick Wireless Sensor Networks and RFIDs

Embedded System Design and Synthesis

Embedded System Design and Synthesis Embedded System Design and Synthesis Robert Dick http://ziyang.eecs.northwestern.edu/ dickrp/esds-two-week Department of Electrical Engineering and Computer Science Northwestern University Office at Tsinghua

More information

Sensor network goals and conditions. Embedded System Design and Synthesis. Sensor network software power consumption

Sensor network goals and conditions. Embedded System Design and Synthesis. Sensor network software power consumption Sensor network goals and conditions http://robertdick.org/esds/ Office: EECS 7-E Department of Electrical Engineering and Computer Science University of Michigan Distributed information gathering. Frequently

More information

MEMMU: Memory Expansion for MMU-Less Embedded Systems

MEMMU: Memory Expansion for MMU-Less Embedded Systems MEMMU: Memory Expansion for MMU-Less Embedded Systems LAN S. BAI, LEI YANG, and ROBERT P. DICK Northwestern University Random access memory (RAM) is tightly constrained in the least expensive, lowest-power

More information

Homework index. Processing resource description. Goals for lecture. Communication resource description. Graph extensions. Problem definition

Homework index. Processing resource description. Goals for lecture. Communication resource description. Graph extensions. Problem definition Introduction to Real-Time Systems ECE 97-1 Homework index 1 Reading assignment.............. 4 Northwestern University Department of Computer Science Department of Electrical and Computer Engineering Teachers:

More information

Introduction to Real-Time Systems ECE 397-1

Introduction to Real-Time Systems ECE 397-1 Introduction to Real-Time Systems ECE 97-1 Northwestern University Department of Computer Science Department of Electrical and Computer Engineering Teachers: Robert Dick Peter Dinda Office: L477 Tech 8,

More information

Energy-aware Reconfiguration of Sensor Nodes

Energy-aware Reconfiguration of Sensor Nodes Energy-aware Reconfiguration of Sensor Nodes Andreas Weissel Simon Kellner Department of Computer Sciences 4 Distributed Systems and Operating Systems Friedrich-Alexander University Erlangen-Nuremberg

More information

CSC 774 Advanced Network Security

CSC 774 Advanced Network Security Computer Science CSC 774 Advanced Network Security Topic 4.3 Mitigating DoS Attacks against Broadcast Authentication in Wireless Sensor Networks 1 Wireless Sensor Networks (WSN) A WSN consists of a potentially

More information

The Internet of Things. Thomas Watteyne Senior Networking Design Engineer Linear Technology, Dust Networks product group

The Internet of Things. Thomas Watteyne Senior Networking Design Engineer Linear Technology, Dust Networks product group 1 The Internet of Things Thomas Watteyne Senior Networking Design Engineer Linear Technology, Dust Networks product group Important! ٧ DREAM seminar 8 April 2014, UC Berkeley Low-Power Wireless Mesh Networks

More information

Distributed Pervasive Systems

Distributed Pervasive Systems Distributed Pervasive Systems CS677 Guest Lecture Tian Guo Lecture 26, page 1 Outline Distributed Pervasive Systems Popular Application domains Sensor nodes and networks Energy in Distributed Systems (Green

More information

Wireless Sensor Networks

Wireless Sensor Networks Wireless Sensor Networks c.buratti@unibo.it +39 051 20 93147 Office Hours: Tuesday 3 5 pm @ Main Building, second floor Credits: 6 Ouline 1. WS(A)Ns Introduction 2. Applications 3. Energy Efficiency Section

More information

Part I: Introduction to Wireless Sensor Networks. Xenofon Fafoutis

Part I: Introduction to Wireless Sensor Networks. Xenofon Fafoutis Part I: Introduction to Wireless Sensor Networks Xenofon Fafoutis Sensors 2 DTU Informatics, Technical University of Denmark Wireless Sensor Networks Sink Sensor Sensed Area 3 DTU Informatics,

More information

Hardware Support for a Wireless Sensor Network Virtual Machine

Hardware Support for a Wireless Sensor Network Virtual Machine Hardware Support for a Wireless Sensor Network Virtual Machine Hitoshi Oi The University of Aizu February 13, 2008 Mobilware 2008, Innsbruck, Austria Outline Introduction to the Wireless Sensor Network

More information

Sleepy Nodes and Sleepy Meshes Ultra-low-power Mesh Routing

Sleepy Nodes and Sleepy Meshes Ultra-low-power Mesh Routing Application White Paper www.synapse-wireless.com Sleepy Nodes and Sleepy Meshes Ultra-low-power Mesh Routing Physical nodes in a SNAP based network communicate wirelessly using a full mesh topology. Nodes

More information

Reminder. Course project team forming deadline. Course project ideas. Friday 9/8 11:59pm You will be randomly assigned to a team after the deadline

Reminder. Course project team forming deadline. Course project ideas. Friday 9/8 11:59pm You will be randomly assigned to a team after the deadline Reminder Course project team forming deadline Friday 9/8 11:59pm You will be randomly assigned to a team after the deadline Course project ideas If you have difficulty in finding team mates, send your

More information

Power Management. José Costa. Software for Embedded Systems. Departamento de Engenharia Informática (DEI) Instituto Superior Técnico

Power Management. José Costa. Software for Embedded Systems. Departamento de Engenharia Informática (DEI) Instituto Superior Técnico Power Management José Costa Software for Embedded Systems Departamento de Engenharia Informática (DEI) Instituto Superior Técnico 2015-03-30 José Costa (DEI/IST) Power Management 1 Outline CPU Power Consumption

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

Weightless: The emerging global wireless standard for linking sensors and devices

Weightless: The emerging global wireless standard for linking sensors and devices Weightless: The emerging global wireless standard for linking sensors and devices William Webb 2014 Copyright Weightless www.weightless.org Page 1 The hypothesis That billions of devices would benefit

More information

KMote - Design and Implementation of a low cost, low power platform for wireless sensor networks. Naveen Madabhushi

KMote - Design and Implementation of a low cost, low power platform for wireless sensor networks. Naveen Madabhushi KMote - Design and Implementation of a low cost, low power platform for wireless sensor networks Naveen Madabhushi Presentation Outline Introduction Related Work Motivation and Problem Statement Design

More information

Presented by Viraj Anagal Kaushik Mada. Presented to Dr. Mohamed Mahmoud. ECE 6900 Fall 2014 Date: 09/29/2014 1

Presented by Viraj Anagal Kaushik Mada. Presented to Dr. Mohamed Mahmoud. ECE 6900 Fall 2014 Date: 09/29/2014 1 Presented by Viraj Anagal Kaushik Mada Presented to Dr. Mohamed Mahmoud ECE 6900 Fall 2014 Date: 09/29/2014 1 Outline Motivation Overview Wireless Sensor Network Components Characteristics of Wireless

More information

Distributed Control over Wireless Networks

Distributed Control over Wireless Networks Technical Information Systems Seminar Technische Universität Dresden June 19, 2008 Outline 1 Introduction and Motivation The Problem Wireless Sensor and Actuator Networks Control Performance 2 Delay and

More information

Reminder. Course project team forming deadline. Course project ideas. Next milestone

Reminder. Course project team forming deadline. Course project ideas. Next milestone Reminder Course project team forming deadline Thursday 9/6 11:59pm You will be randomly assigned to a team after the deadline Course project ideas If you have difficulty in finding team mates, send your

More information

Data-flow Analysis for Interruptdriven Microcontroller Software

Data-flow Analysis for Interruptdriven Microcontroller Software Data-flow Analysis for Interruptdriven Microcontroller Software Nathan Cooprider Advisor: John Regehr Dissertation defense School of Computing University of Utah Data-flow Analysis for Interruptdriven

More information

Chapter 2. Literature Survey. 2.1 Remote access technologies

Chapter 2. Literature Survey. 2.1 Remote access technologies Chapter 2 Literature Survey This chapter presents a brief report on literature reviewed in context to present work with an aim to identify current state of research in the domain. Literature review is

More information

ADB: An Efficient Multihop Broadcast Protocol Based on Asynchronous Duty-Cycling in Wireless Sensor Networks

ADB: An Efficient Multihop Broadcast Protocol Based on Asynchronous Duty-Cycling in Wireless Sensor Networks AD: An Efficient Multihop roadcast Protocol ased on Asynchronous Duty-Cycling in Wireless Sensor Networks Yanjun Sun* Omer Gurewitz Shu Du Lei Tang* David. Johnson* *Rice University en Gurion University

More information

Lightweight, Low-Power IP

Lightweight, Low-Power IP Lightweight, Low-Power IP Adam Dunkels, PhD Swedish Institute of Computer Science adam@sics.se 1A part of Swedish ICT Adam Dunkels IP is lightweight The Message but weight has performance implications

More information

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Monday 2 nd June 2008.

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Monday 2 nd June 2008. COMP60242 Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE M.Sc. in Advanced Computer Science Mobile Computing Date: Monday 2 nd June 2008 Time: 09:45 11:45 Please answer any THREE Questions

More information

Modeling Wireless Sensor Network for forest temperature and relative humidity monitoring in Usambara mountain - A review

Modeling Wireless Sensor Network for forest temperature and relative humidity monitoring in Usambara mountain - A review Modeling Wireless Sensor Network for forest temperature and relative humidity monitoring in Usambara mountain - A review R. Sinde Nelson Mandela African Institution of Science and Technology School of

More information

Application of Wireless Sensors for Structural Health Monitoring And Control

Application of Wireless Sensors for Structural Health Monitoring And Control The Eighteenth KKCNN Symposium on Civil Engineering December 19-21, 2005, Taiwan Application of Wireless Sensors for Structural Health Monitoring And Control *K. C. Lu 1, Y. Wang 2, J. P. Lynch 3, P. Y.

More information

Distributed Computation in Wireless Ad Hoc Grid Formations with Bandwidth Control

Distributed Computation in Wireless Ad Hoc Grid Formations with Bandwidth Control Distributed Computation in Wireless Ad Hoc Grid Formations with Bandwidth Control Elisa Rondini and Stephen Hailes University College London MSN 2007, 13 th July 2007 Overview Scenario Assumptions Challenges

More information

WHITE PAPER. Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers)

WHITE PAPER. Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers) WHITE PAPER Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers) Table of Contents About This Document... 1 Chapter 1 Wireless Data Technologies... 2 Wireless Data Technology Overview...

More information

Presented by: Murad Kaplan

Presented by: Murad Kaplan Presented by: Murad Kaplan Introduction. Design of SCP-MAC. Lower Bound of Energy Performance with Periodic Traffic. Protocol Implementation. Experimental Evaluation. Related Work. 2 Energy is a critical

More information

Introduction to Real-Time Systems ECE 397-1

Introduction to Real-Time Systems ECE 397-1 Introduction to Real-Time Systems ECE 397-1 Northwestern University Department of Computer Science Department of Electrical and Computer Engineering Teachers: Robert Dick Peter Dinda Office: L477 Tech

More information

Advanced SensorNet Technologies to Monitor Trusted Corridors. A KTEC Center of Excellence 1

Advanced SensorNet Technologies to Monitor Trusted Corridors. A KTEC Center of Excellence 1 Advanced Net Technologies to Monitor Trusted Corridors 1 Tasks Intermodal Technology Proof of Concept and Integration of the SmartPort Trade Data Exchange Architecture and Net Technologies System modeling,

More information

JDY-40 wireless serial port module

JDY-40 wireless serial port module JDY-40 wireless serial port module Brief function introduction JDY-40 is developed by 2.4G technology, with a distance of 120 meters. It uses serial communication interface, which is simple and quick to

More information

Persistent Memory in Mission-Critical Architecture (How and Why) Adam Roberts Engineering Fellow, Western Digital Corporation

Persistent Memory in Mission-Critical Architecture (How and Why) Adam Roberts Engineering Fellow, Western Digital Corporation Persistent Memory in Mission-Critical Architecture (How and Why) Adam Roberts Engineering Fellow, Western Digital Corporation Forward-Looking Statements Safe Harbor Disclaimers This presentation contains

More information

System Architecture Directions for Networked Sensors[1]

System Architecture Directions for Networked Sensors[1] System Architecture Directions for Networked Sensors[1] Secure Sensor Networks Seminar presentation Eric Anderson System Architecture Directions for Networked Sensors[1] p. 1 Outline Sensor Network Characteristics

More information

Computational Model for Energy Aware TDMA-based MAC Protocol for Wireless Sensor Network System

Computational Model for Energy Aware TDMA-based MAC Protocol for Wireless Sensor Network System 6th WSEAS International Conference on CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cairo, Egypt, Dec 29-31, 2007 489 Computational Model for Energy Aware TDMA-based MAC Protocol for Wireless

More information

Wireless Embedded Systems and Networking. Lab Day 1: Part 1: First Table-top IP/WSN. Form Six Groups (~5 people)

Wireless Embedded Systems and Networking. Lab Day 1: Part 1: First Table-top IP/WSN. Form Six Groups (~5 people) Wireless Embedded Systems and Networking Lab Day 1: Part 1: First Table-top IP/WSN Lab Assistant: Jaein Jeong University of California, Berkeley 1 Form Six Groups (~5 people) Exercise 1-1: Get to know

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

Digitization of Field Asset Visual Inspections

Digitization of Field Asset Visual Inspections FEATURED ARTICLES Technology Innovation for Accelerating Digital Transformation Digitization of Field Asset Visual Inspections The digitization of previously undigitized field conditions using sensors

More information

Power-efficient Communication Protocol for Social Networking Tags for Visually Impaired

Power-efficient Communication Protocol for Social Networking Tags for Visually Impaired Power-efficient Communication Protocol for Social Networking Tags for Visually Impaired Problem Social Networking Tags System for Visually Impaired is an project aims to utilize electronic id technology

More information

Implementation of an Adaptive MAC Protocol in WSN using Network Simulator-2

Implementation of an Adaptive MAC Protocol in WSN using Network Simulator-2 Implementation of an Adaptive MAC Protocol in WSN using Network Simulator-2 1 Suresh, 2 C.B.Vinutha, 3 Dr.M.Z Kurian 1 4 th Sem, M.Tech (Digital Electronics), SSIT, Tumkur 2 Lecturer, Dept.of E&C, SSIT,

More information

SMITE: A Stochastic Compressive Data Collection. Sensor Networks

SMITE: A Stochastic Compressive Data Collection. Sensor Networks SMITE: A Stochastic Compressive Data Collection Protocol for Mobile Wireless Sensor Networks Longjiang Guo, Raheem Beyah, and Yingshu Li Department of Computer Science, Georgia State University, USA Data

More information

Figure 1. The SNAP software stack.

Figure 1. The SNAP software stack. SNAP Whitepaper www.synapse-wireless.com SNAP based Wireless Mesh Networks The world is currently seeing an exponential growth in the use of wireless networks for monitoring and control in consumer, commercial,

More information

CS551 Ad-hoc Routing

CS551 Ad-hoc Routing CS551 Ad-hoc Routing Bill Cheng http://merlot.usc.edu/cs551-f12 1 Mobile Routing Alternatives Why not just assume a base station? good for many cases, but not some (military, disaster recovery, sensor

More information

Energy-efficient routing algorithms for Wireless Sensor Networks

Energy-efficient routing algorithms for Wireless Sensor Networks Energy-efficient routing algorithms for Wireless Sensor Networks Chao Peng Graduate School of Information Science Japan Advanced Institute of Science and Technology March 8, 2007 Presentation Flow Introduction

More information

Revisiting Smart Dust with RFID Sensor Networks

Revisiting Smart Dust with RFID Sensor Networks Revisiting Smart Dust with RFID Sensor Networks Michael Buettner, Ben Greenstein, Alanson Sample, Joshua Smith and David Wetherall Intel Research & University of Washington Commercial (EPC Gen2) RFID Tag

More information

Energy Efficient Routing Using Sleep Scheduling and Clustering Approach for Wireless Sensor Network

Energy Efficient Routing Using Sleep Scheduling and Clustering Approach for Wireless Sensor Network Energy Efficient Routing Using Sleep Scheduling and Clustering Approach for Wireless Sensor Network G.Premalatha 1, T.K.P.Rajagopal 2 Computer Science and Engineering Department, Kathir College of Engineering

More information

AN EFFICIENT MAC PROTOCOL BASED ON HYBRID SUPERFRAME FOR WIRELESS SENSOR NETWORKS

AN EFFICIENT MAC PROTOCOL BASED ON HYBRID SUPERFRAME FOR WIRELESS SENSOR NETWORKS AN EFFICIENT MAC PROTOCOL BASED ON HYBRID SUPERFRAME FOR WIRELESS SENSOR NETWORKS Ge Ma and Dongyu Qiu Department of Electrical and Computer Engineering Concordia University, Montreal, QC, Canada tina0702@gmail.com,

More information

Wireless Sensor Communication Systems for Bridge Monitoring

Wireless Sensor Communication Systems for Bridge Monitoring Wireless Sensor Communication Systems for Bridge Monitoring e-community Division, Public Sector 1, NTT DATA Corporation Yuji Ishikawa Copyright 2016 NTT DATA Corporation Copyright 2015 NTT DATA Corporation

More information

A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN

A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN Albeiro Cortés Cabezas and José de Jesús Salgado Patrón Department of Electronic Engineering, Surcolombiana University, Neiva, Colombia

More information

Investigating the Impact of Topologies on the Performance of ZIGBEE Wireless Sensor Networks

Investigating the Impact of Topologies on the Performance of ZIGBEE Wireless Sensor Networks Investigating the Impact of Topologies on the Performance of 802.15.4 ZIGBEE Wireless Sensor Networks D. Deepika 1 and Prof. S. Pallam Setty 2 1 M.tech, Department of Computer Science and Systems Engineering,

More information

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 2: ANATOMY OF A SENSOR NODE Anna Förster

INTRODUCTION TO WIRELESS SENSOR NETWORKS. CHAPTER 2: ANATOMY OF A SENSOR NODE Anna Förster INTRODUCTION TO WIRELESS SENSOR NETWORKS CHAPTER 2: ANATOMY OF A SENSOR NODE Anna Förster OVERVIEW 1. Hardware components 2. Power Consumption 3. Operating Systems and Concepts 1. Memory Management 2.

More information

The New Enterprise Network In The Era Of The Cloud. Rohit Mehra Director, Enterprise Communications Infrastructure IDC

The New Enterprise Network In The Era Of The Cloud. Rohit Mehra Director, Enterprise Communications Infrastructure IDC The New Enterprise Network In The Era Of The Cloud Rohit Mehra Director, Enterprise Communications Infrastructure IDC Agenda 1. Dynamics of the Cloud Era 2. Market Landscape 3. Implications for the new

More information

Wireless Camera Node Network (WCNN) FPR Presentation: April 15, 2015 Team 6: Alan Boguslawski Andrew Flewellen-Gore Ping Fung Advisor: Paul Siqueira

Wireless Camera Node Network (WCNN) FPR Presentation: April 15, 2015 Team 6: Alan Boguslawski Andrew Flewellen-Gore Ping Fung Advisor: Paul Siqueira Wireless Camera Node Network (WCNN) FPR Presentation: April 15, 2015 Team 6: Alan Boguslawski Andrew Flewellen-Gore Ping Fung Advisor: Paul Siqueira What is the Problem? Many wildlife species are becoming

More information

Contiki a Lightweight and Flexible Operating System for Tiny Networked Sensors

Contiki a Lightweight and Flexible Operating System for Tiny Networked Sensors Contiki a Lightweight and Flexible Operating System for Tiny Networked Sensors Adam Dunkels, Björn Grönvall, Thiemo Voigt Swedish Institute of Computer Science IEEE EmNetS-I, 16 November 2004 Sensor OS

More information

A Distributed Particle Filter Implementation for Tracking in a Wireless Sensor Network

A Distributed Particle Filter Implementation for Tracking in a Wireless Sensor Network A Distributed Particle Filter Implementation for Tracking in a Wireless Sensor Network Jesse Read, Katrin Achutegui, Joaquín Míguez Universidad Carlos III de Madrid. January 22, 2013 J. Read, K.Achutegui,

More information

Ad Hoc & Sensor Networks

Ad Hoc & Sensor Networks Ad Hoc & Sensor Networks Advanced Topics in Computer Networks Introduction Ad Hoc & Sensor Networks Ad Hoc Networks Sensor Networks Security Concerns 1 Introduction Introduction Definitions (ad hoc?) Ad

More information

A Generalized Coverage-Preserving Scheduling in WSNs. a Case Study in Structural Health Monitoring

A Generalized Coverage-Preserving Scheduling in WSNs. a Case Study in Structural Health Monitoring A Generalized Coverage-Preserving Scheduling in WSNs a Case Study in Structural Health Monitoring March 29,2017 Sensor Web Architecture and Protocols Fereshteh Mahdavi Outline Backgraound Scope of this

More information

Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks

Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks Mobile Information Systems 9 (23) 295 34 295 DOI.3233/MIS-364 IOS Press Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks Keisuke Goto, Yuya Sasaki, Takahiro

More information

Impact of Divided Static Random Access Memory Considering Data Aggregation for Wireless Sensor Networks

Impact of Divided Static Random Access Memory Considering Data Aggregation for Wireless Sensor Networks APSITT8/Copyright 8 IEICE 7SB8 Impact of Divided Static Random Access Considering Aggregation for Wireless Sensor Networks Takashi Matsuda, Shintaro Izumi, Takashi Takeuchi, Hidehiro Fujiwara Hiroshi Kawaguchi,

More information

INTERNET OF BIG THINGS : SMART INFRASTRUCTURES FOR IMPROVED MOBILITY. Sarah WELDON

INTERNET OF BIG THINGS : SMART INFRASTRUCTURES FOR IMPROVED MOBILITY. Sarah WELDON INTERNET OF BIG THINGS : SMART INFRASTRUCTURES FOR IMPROVED MOBILITY Sarah WELDON sarah.weldon@cea.fr LETI : ONE OF CEA TECH'S 3 RESEARCH INSTITUTES 16,000 CEA employees worldwide 10 % PhDs and post-docs

More information

COMPUTER NETWORKS PERFORMANCE. Gaia Maselli

COMPUTER NETWORKS PERFORMANCE. Gaia Maselli COMPUTER NETWORKS PERFORMANCE Gaia Maselli maselli@di.uniroma1.it Prestazioni dei sistemi di rete 2 Overview of first class Practical Info (schedule, exam, readings) Goal of this course Contents of the

More information

Embedded Systems: EmNets

Embedded Systems: EmNets Embedded Systems: EmNets April 15, 2003 Class Meeting 25 Announcement CORRECTION: Reading for today should have been Chapters 1 and 2 of Embedded Everywhere!! Reading for Thursday should have been Chapter

More information

VisualNet: General Purpose Visualization Tool for Wireless Sensor Networks

VisualNet: General Purpose Visualization Tool for Wireless Sensor Networks VisualNet: General Purpose Visualization Tool for Wireless Sensor Networks S. Rizvi and K. Ferens Department of Electrical and Computer Engineering University of Manitoba Winnipeg, Manitoba, Canada Ken.Ferens@ad.umanitoba.ca

More information

THE FUTURE ECONOMIC VALUE OF UNLICENSED SPECTRUM

THE FUTURE ECONOMIC VALUE OF UNLICENSED SPECTRUM THE FUTURE ECONOMIC VALUE OF UNLICENSED SPECTRUM Raul L. Katz Telecom Advisory Services, LLC What is the future of Wi-Fi? Mountain View, September 11, 2014 THE MEASUREMENT OF ECONOMIC VALUE OF UNLICENSED

More information

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee.

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. Introduction ZigBee is one of the Advanced Wireless Technology and CC2430 is the first single-chip

More information

Development of Wireless Sensor Network for Dam Monitoring

Development of Wireless Sensor Network for Dam Monitoring Journal of Information & Computational Science 9: 6 (2012) 1609 1616 Available at http://www.joics.com Development of Wireless Sensor Network for Dam Monitoring Xinying Miao a,b, Jinkui Chu a,, Linghan

More information

A Non-Volatile Microcontroller with Integrated Floating-Gate Transistors

A Non-Volatile Microcontroller with Integrated Floating-Gate Transistors A Non-Volatile Microcontroller with Integrated Floating-Gate Transistors Wing-kei Yu, Shantanu Rajwade, Sung-En Wang, Bob Lian, G. Edward Suh, Edwin Kan Cornell University 2 of 32 Self-Powered Devices

More information

Software Engineering for Wireless Sensor Networks A Case Study

Software Engineering for Wireless Sensor Networks A Case Study Software Engineering for Wireless Sensor Networks A Case Study Rachel Cardell-Oliver Joint work with Mark Kranz, Keith Smettem, Anna Parsons, David Glance (UWA), Kevin Mayer (ANU) http://www.csse.uwa.edu.au/adhocnets/wsngroup/soil-water-proj/

More information

4/22 A Wireless Sensor Network for Structural Health Monitoring. Gregory Peaker

4/22 A Wireless Sensor Network for Structural Health Monitoring. Gregory Peaker 4/22 A Wireless Sensor Network for Structural Health Monitoring Gregory Peaker Overview Why perform health monitoring of structures? What is Wisden/Mica? Hardware Software Platform Reliable Data Transport

More information

Flexible wireless communication architectures

Flexible wireless communication architectures Flexible wireless communication architectures Sridhar Rajagopal Department of Electrical and Computer Engineering Rice University, Houston TX Faculty Candidate Seminar Southern Methodist University April

More information

StorageCraft OneXafe and Veeam 9.5

StorageCraft OneXafe and Veeam 9.5 TECHNICAL DEPLOYMENT GUIDE NOV 2018 StorageCraft OneXafe and Veeam 9.5 Expert Deployment Guide Overview StorageCraft, with its scale-out storage solution OneXafe, compliments Veeam to create a differentiated

More information

Wireless Sensor Networks

Wireless Sensor Networks Wireless Sensor Networks Malini Bhandaru Comp 150 CB, Summer 2007 Course: http://www.cs.tufts.edu/comp/150cb ECS,Tufts University Wireless Sensor Networks Welcome!!! Everywhere! Deeply embedded, network

More information

Outline. Multi-Channel Reliability and Spectrum Usage in Real Homes Empirical Studies for Home-Area Sensor Networks. Smart Grid

Outline. Multi-Channel Reliability and Spectrum Usage in Real Homes Empirical Studies for Home-Area Sensor Networks. Smart Grid Multi-Channel Reliability and Spectrum Usage in Real Homes Empirical Studies for Home-Area Sensor Networks Experimental methodology Empirical study in homes Spectrum study of existing wireless signals

More information

CIP over 6LoWPAN. Technical Track. Prepared by Dayin Xu, Paul Brooks, Yi Yu, David Brandt Presented by Paul Brooks.

CIP over 6LoWPAN. Technical Track. Prepared by Dayin Xu, Paul Brooks, Yi Yu, David Brandt Presented by Paul Brooks. CIP over 6LoWPAN Prepared by Dayin Xu, Paul Brooks, Yi Yu, David Brandt Presented by Paul Brooks www.odva.org Technical Track Content Motivation Industrial IP Network Architecture Common Network Stack

More information

Wireless Sensor Networks (WSN)

Wireless Sensor Networks (WSN) Wireless Sensor Networks (WSN) Introduction M. Schölzel Difference to existing wireless networks Infrastructure-based networks e.g., GSM, UMTS, Base stations connected to a wired backbone network Mobile

More information

CONCLUSIONS AND SCOPE FOR FUTURE WORK

CONCLUSIONS AND SCOPE FOR FUTURE WORK Introduction CONCLUSIONS AND SCOPE FOR FUTURE WORK 7.1 Conclusions... 154 7.2 Scope for Future Work... 157 7 1 Chapter 7 150 Department of Computer Science Conclusion and scope for future work In this

More information

OPERA. Low Power Heterogeneous Architecture for the Next Generation of Smart Infrastructure and Platforms in Industrial and Societal Applications

OPERA. Low Power Heterogeneous Architecture for the Next Generation of Smart Infrastructure and Platforms in Industrial and Societal Applications OPERA Low Power Heterogeneous Architecture for the Next Generation of Smart Infrastructure and Platforms in Industrial and Societal Applications Co-funded by the Horizon 2020 Framework Programme of the

More information

WIRELESS TECHNOLOGIES

WIRELESS TECHNOLOGIES WIRELESS TECHNOLOGIES Bluetooth, ZigBee and ANT Thomas Aasebø OVERVIEW What are wireless sensor networks? What are personal area networks? What are these networks typically used for? Bluetooth, ZigBee

More information

BASIC CHARACTERISTICS OF ZIGBEE AND SIMPLICITI MODULES TO USE IN MEASUREMENT SYSTEMS

BASIC CHARACTERISTICS OF ZIGBEE AND SIMPLICITI MODULES TO USE IN MEASUREMENT SYSTEMS XIX IMEKO World Congress Fundamental and Applied Metrology September 6!11, 2009, Lisbon, Portugal BASIC CHARACTERISTICS OF ZIGBEE AND SIMPLICITI MODULES TO USE IN MEASUREMENT SYSTEMS L. Skrzypczak 1),

More information

GE Energy. Bently Nevada * Essential Insight.mesh * Wireless Condition Monitoring

GE Energy. Bently Nevada * Essential Insight.mesh * Wireless Condition Monitoring GE Energy Bently Nevada * Essential Insight.mesh * Wireless Condition Monitoring Increasing Reliability in Plants Today No matter where an asset sits in the plant, the need to understand its health has

More information

The Kestrel K2 is the next generation of radar products for the vehicle detection market.

The Kestrel K2 is the next generation of radar products for the vehicle detection market. O TECT ION VEH ICLE DE TEC TI ON - TRA FFI CC ON TR OL - DA TA CO LL EC TIO N -R EM OT E OP ER AT IO N -L W ER W PO OW -L ST CO M TE S Y -S EG INT Introducing the K2 product family The Kestrel K2 is the

More information

Exploring the ISA100.11a Standard. Exploring the ISA100.11a Standard. William (Bill) Ayers America s OneWireless Consultant.

Exploring the ISA100.11a Standard. Exploring the ISA100.11a Standard. William (Bill) Ayers America s OneWireless Consultant. Exploring the ISA100.11a Standard March 2012 William (Bill) Ayers America s OneWireless Consultant Exploring the ISA100.11a Standard WHY Standards World Leader SolutionsFocused Greatest Flexibility International

More information

Accelerating Data Center Virtualization with Cisco Services. Mark Milinkovich Director, WWTP Advanced Services, Data Center

Accelerating Data Center Virtualization with Cisco Services. Mark Milinkovich Director, WWTP Advanced Services, Data Center Accelerating Data Center Virtualization with Cisco Services Mark Milinkovich Director, WWTP Advanced Services, Data Center 1 Data Center Services Capabilities Architecture Application Operations & Management

More information

Energy Efficient Clustering Approach For Wireless Sensor Network

Energy Efficient Clustering Approach For Wireless Sensor Network www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 3 Issue 11 November, 2014 Page No. 9284-9288 Energy Efficient Clustering Approach For Wireless Sensor Network,

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

XMEGA Series Of AVR Processor. Presented by: Manisha Biyani ( ) Shashank Bolia (

XMEGA Series Of AVR Processor. Presented by: Manisha Biyani ( ) Shashank Bolia ( XMEGA Series Of AVR Processor Presented by: Manisha Biyani (200601217) Shashank Bolia (200601200 Existing Microcontrollers Problems with 8/16 bit microcontrollers: Old and inefficient architecture. Most

More information

Wireless Sensor Networks CS742

Wireless Sensor Networks CS742 Wireless Sensor Networks CS742 Outline Overview Environment Monitoring Medical application Data-dissemination schemes Media access control schemes Distributed algorithms for collaborative processing Architecture

More information

Applying Plantwide Industrial Wireless Communications for Cost Savings. Copyright 2012 Rockwell Automation, Inc. All rights reserved.

Applying Plantwide Industrial Wireless Communications for Cost Savings. Copyright 2012 Rockwell Automation, Inc. All rights reserved. Applying Plantwide Industrial Wireless Communications for Cost Savings Rev 5058-CO900C Abstract New cost savings across multiple industries are now possible by leveraging recent developments in both Integrated

More information

Smart Dust : Dispersed, Un-tethered Geospatial Monitoring. Dr. Raja R. Kadiyala Chief Technology Officer CH2M HILL - Oakland, CA

Smart Dust : Dispersed, Un-tethered Geospatial Monitoring. Dr. Raja R. Kadiyala Chief Technology Officer CH2M HILL - Oakland, CA Smart Dust : Dispersed, Un-tethered Geospatial Monitoring Dr. Raja R. Kadiyala Chief Technology Officer CH2M HILL - Oakland, CA raja@ch2m.com Drivers and Trends Sensing, Communication and Computation MEMS

More information

Wake-on-WLAN. Power management for mesh networks using Kameswari Chebrolu Department of Electrical Engineering, IIT Kanpur

Wake-on-WLAN. Power management for mesh networks using Kameswari Chebrolu Department of Electrical Engineering, IIT Kanpur -WLAN Power management for 802.11 mesh networks using 802.15.4 Nilesh Mishra, Bhaskaran Raman, Abhinav Pathak Department of Computer Science and Engineering, Kameswari Chebrolu Department of Electrical

More information

SEVEN Networks Open Channel Traffic Optimization

SEVEN Networks Open Channel Traffic Optimization SEVEN Networks Open Channel Traffic Optimization Revision 3.0 March 2014 The Open Channel family of software products is designed to deliver device-centric mobile traffic management and analytics for wireless

More information

Real-Time, Automatic and Wireless Bridge Monitoring System Based on MEMS Technology

Real-Time, Automatic and Wireless Bridge Monitoring System Based on MEMS Technology Journal of Civil Engineering and Architecture 10 (2016) 1027-1031 doi: 10.17265/1934-7359/2016.09.006 D DAVID PUBLISHING Real-Time, Automatic and Wireless Bridge Monitoring System Based on MEMS Technology

More information

Loosely Coupled Actor Systems

Loosely Coupled Actor Systems Loosely Coupled Actor Systems for the Internet of Things Raphael Hiesgen Internet Technologies Group Hamburg University of Applied Sciences Agenda Introduction Where We Are Next Steps Risks and Conclusion

More information

Summary of Energy-Efficient Communication Protocol for Wireless Microsensor Networks

Summary of Energy-Efficient Communication Protocol for Wireless Microsensor Networks Summary of Energy-Efficient Communication Protocol for Wireless Microsensor Networks Juhana Yrjölä, Tik 58673B, jayrjola@cc.hut.fi 13th March 2005 Abstract Conventional routing protocols may not be optimal

More information

Transparent Pointer Compression for Linked Data Structures

Transparent Pointer Compression for Linked Data Structures Transparent Pointer Compression for Linked Data Structures lattner@cs.uiuc.edu Vikram Adve vadve@cs.uiuc.edu June 12, 2005 MSP 2005 http://llvm.cs.uiuc.edu llvm.cs.uiuc.edu/ Growth of 64-bit computing

More information

DYNAMIC DECISIONS IN MAINTENANCE

DYNAMIC DECISIONS IN MAINTENANCE DYNAMIC DECISIONS IN MAINTENANCE Wireless Communication... As a support of Component Integration [DWC 15, 16, 17, 18] University Henri Poincaré (Nancy University) PRISMA Wyselec Wireless - Problem Statement

More information

Hardware Design of Wireless Sensors

Hardware Design of Wireless Sensors 1 of 5 11/3/2008 10:46 AM MICA: The Commercialization of Microsensor Motes Miniaturization, integration, and customization make it possible to combine sensing, processing, and communications to produce

More information

An Efficient Low Power Transmission Over Long Range in Wireless Sensor Networks for environmental studies

An Efficient Low Power Transmission Over Long Range in Wireless Sensor Networks for environmental studies International Journal of Applied Environmental Sciences ISSN 0973-6077 Volume 11, Number 2 (2016), pp. 657-665 Research India Publications http://www.ripublication.com An Efficient Low Power Transmission

More information