Sensifi: a Wireless Sensing System for Ultra-High-Rate Applications

Total Page:16

File Type:pdf, Size:1020Kb

Sensifi: a Wireless Sensing System for Ultra-High-Rate Applications Sensifi: A Wireless Sensing System for Ultra-High-Rate Applications Chia-Chi Li, Vikram K. Ramanna, Daniel Webber, Cole Hunter, Tyler Hack, and Behnam Dezfouli∗ Internet of Things Research Lab, Santa Clara University, USA fcli1, vramanna, dwebber, chunter, thack, [email protected] Abstract—Wireless Sensor Networks (WSNs) are being used in various applications such as structural health monitoring and industrial control. Since energy efficiency is one of the major design factors, the existing WSNs primarily rely on low-power, low-rate wireless technologies such as 802.15.4 and Bluetooth. In this paper, by proposing Sensifi, we strive to tackle the challenges of developing ultra-high-rate WSNs based on the 802.11 (WiFi) standard. As an illustrative structural health monitoring application, we consider spacecraft vibration test and identify system design requirements and challenges. Our main contributions are as follows. First, we propose packet encoding methods to reduce the overhead of assigning accurate timestamps to samples. Second, we propose energy efficiency methods to enhance the system’s lifetime. Third, to enhance sampling rate and mitigate sampling rate instability, we reduce the overhead of processing outgoing packets through the network stack. Fourth, we study and reduce the delay of processing time synchronization packets through the network stack. Fifth, we propose a low-power node design particularly targeting vibration monitoring. Sixth, we use our node design to empirically evaluate energy efficiency, sampling rate, and data rate. We leave large-scale evaluations as future work. Index Terms—Sensing, 802.11, WiFi, Low-Power, RTOS, Packet Processing, Vibration Test. F 1 INTRODUCTION a large number of wired accelerometers (more than 200), The reductions in the cost and energy consumption of simultaneously sampled by expensive, high-performance microprocessors, wireless transceivers and sensors have Data Acquisition (DAQ) modules [11]. The large number facilitated the development of Wireless Sensor Networks of nodes and the high sampling rate (around 50 kHz) (WSNs) for Structural Health Monitoring (SHM) as well result in generating a massive amount of data that must as applications such as Process Automation (PA), Factory be collected from the structure. This results in a disar- Automation (FA), and medical monitoring [1]–[5]. WSNs ray of wired connections that make installing and de- are being used in SHM applications to monitor spacecraft, bugging these sensors an excessively laborious and time- aerial vehicles, high-rise buildings, dams, highways, and consuming process. In addition to the setup difficulties, bridges [2], [6]–[8]. In these applications, sensor nodes the extra weight applied to the spacecraft by the cables collect information such as acceleration, ambient vibration, can skew vibrational measurement results [12]. The cables load, and stress at sampling frequencies usually above also introduce electrostatic noise that affects data collection 100 Hz [9]. The replacement of cables with wireless links accuracy. reduces design, deployment, and maintenance costs. Also, Besides satisfying the high sampling rate required by arXiv:2012.14635v2 [cs.NI] 20 Jun 2021 wireless links offer higher reliability compared to cables these applications, the additional system requirements are: that are subject to wear and tear. (i) liveness: collecting data from all the nodes while sam- In this paper, we use the term ultra-high-rate to refer pling is in progress, (ii) scalability: live data collection from to the systems whose data transmission rate is in the a large number of nodes (e.g., more than 200 in spacecraft range of few hundreds of Mbps to a few Gbps. The monitoring), (iii) energy efficiency: the nodes’ longevity ultra-high-rate of communication is the result of high- must satisfy the duration requirement of the experiment, rate, high-resolution sampling. Applications such as FA, (iv) accuracy: accurate timestamps must be assigned to Power Systems Automation (PSA), and Power Electronics the samples, and (v) reliability: lossless collection of raw Control (PEC) are representative of ultra-high-rate sce- samples is required. Unfortunately, the existing systems do narios [10]. A prominent example of SHM is spacecraft not address these requirements. We highlight design chal- vibration monitoring. These tests are performed to analyze lenges and the shortcomings of existing systems as follows. a spacecraft’s mechanical durability against the launch’s First, considering the energy limitations of sensor nodes, powerful vibrational forces. These tests are conducted with 802.15.4 and 802.15.1 are the primary wireless technologies used in existing works [13]. Consider a node collecting ∗Corresponding Author. 12-bit samples at 50 ksps. This node needs to communi- 1 cate at 600 kbps, excluding the overhead of the samples’ application scenario, the proposed methods and configu- timestamps; hence, the 250 kbps data rate provided by the rations can be used to achieve the desired energy-delay 802.15.4 standard is less than the communication demand tradeoff. Third (§6), we show that preparing and processing of one node. Similarly, the wireless technologies used in outgoing packets by the network stacks introduce a non- current industrial networks, such as WirelessHART [14], negligible delay that must be minimized to increase sam- WIA-PA [15], ISA 100 [16], WSAN-FA/IO-Link [17], and pling rate and stability. Our work reveals that bypassing WISA [18] cannot be used for ultra-high-rate sensing appli- transport layer processing is essential to minimize the cations. Second, the liveness requirement is not satisfied if effect of packet processing on sampling rate, and this samples are stored in the main memory or a memory card bypassing also translates into the higher performance of and then transferred whenever the user requests for data timestamp encoding. Fourth (§7), we present a thorough delivery [19]–[22]. For example, spacecraft vibration tests study of time synchronization and identify the challenges require live response monitoring, identifying malfunction- caused by network stack complexity. We place the time ing nodes, and making adjustments to the test configura- synchronization function in the 802.11 subsystem, between tion parameters. Besides, frequent placement and removal the packet decoding logic and driver, and confirm that of nodes in hard-to-access areas are not desirable. Third, the maximum error is bounded by 0:25 µs. Fifth (§8), we compression and in-network processing methods are lossy present a modular, low-power node design. This node is and cannot be used in scenarios where raw data collec- capable of collecting 16-bit samples at rates up to 500 ksps. tion is required to implement various data analysis meth- Therefore, it enables us to measure sampling rate varia- ods [7], [23]. Furthermore, the compression level provided tions, study the impact of packet processing on the sam- by these methods is not enough to adapt low-rate wire- pling rate, and evaluate energy consumption. Compared less technologies for ultra-high-rate applications. Also, the with the existing works that rely on TinyOS [7], [24], [25], high processing overhead of these compression algorithms Linux [26]–[28], or theoretical performance analysis [29], causes a considerable interruption in sample collection. [30], our hardware platform supports the two widely-used Fourth, variations of inter-sample delay make assigning Real-Time Operating Systems (RTOSes) targeting resource- accurate timestamps to samples more challenging, and constrained devices: FreeRTOS [31], [32] and ThreadX [33], achieving sampling rate stability is particularly difficult [34]. Also, we use the network stacks available for these in ultra-high-rate applications. Running additional tasks RTOSes, namely, LwIP [35], NetX [36], and NetXDuo [37]. on the processor causes interruptions of sample collection Therefore, a unique aspect of our work is identifying and and variations of the sampling rate. Therefore, the effect of tackling the underlying challenges of using these tools for running additional tasks, such as packet processing and developing ultra-high-rate applications. Sixth (§9), using wireless transmission, must be minimized. The existing our node design, we empirically evaluate various aspects work has identified this challenge; however, they do not of the system and demonstrate the performance enhance- offer a comprehensive evaluation or mitigation of these ments achieved with the proposed methods. However, we problems [20], [24]. leave large-scale throughput evaluation of the system as In this paper, we propose Sensifi, a system based on future work. The methods proposed in this paper can 802.11 (WiFi) standard for ultra-high-rate sensing appli- be employed for developing WSN systems for applica- cations. Towards tackling the underlying challenges of tions such as PA, FA, Building Automation System (BAS), developing this system, the main contributions of this paper intra-vehicle communication, and Wireless Avionics Intra- are as follows: First (§4), we show that assigning accurate Communications (WAIC). timestamps (sub µs accuracy) to samples introduces a significant overhead− and wastes precious payload bytes 2 SAMPLE APPLICATION SCENARIO and wireless communication bandwidth. Considering the distribution of inter-sample intervals, we propose three Although the proposed system can be used in various encoding methods to reduce payload overhead. These ultra-high-rate sensing
Recommended publications
  • Smartmesh IP Network and Iot System
    St. Cloud State University theRepository at St. Cloud State Department of Electrical and Computer Culminating Projects in Electrical Engineering Engineering 5-2021 SmartMesh IP Network and IoT System Marc Aurel Kamsu Tennou Follow this and additional works at: https://repository.stcloudstate.edu/ece_etds Part of the Electrical and Computer Engineering Commons Recommended Citation Kamsu Tennou, Marc Aurel, "SmartMesh IP Network and IoT System" (2021). Culminating Projects in Electrical Engineering. 7. https://repository.stcloudstate.edu/ece_etds/7 This Thesis is brought to you for free and open access by the Department of Electrical and Computer Engineering at theRepository at St. Cloud State. It has been accepted for inclusion in Culminating Projects in Electrical Engineering by an authorized administrator of theRepository at St. Cloud State. For more information, please contact [email protected]. SmartMesh IP Network and IoT System by Marc Kamsu A Thesis Submitted to the Graduate Faculty of Saint Cloud State University in Partial Fulfillment of the Requirements for the Degree of Master of Science In Electrical Engineering May 2021 Thesis Committee: Yi Zheng, Chairperson Aiping Yao Timothy Vogt 2 Abstract In recent years, a great deal of research conducted in a variety of scientific areas, including physics, microelectronics, and material sc ience, by scientific experts from different domains of expertise has resulted in the invention of Micro-Electro-Mechanical Systems (MEMS). As MEMS became very popular and widely used, the need for combining the capabilities of sensing, actuation, processing, and communication also grew, and led to further research which would result in the design and implementation of devices which could reflect all those four capabilities.
    [Show full text]
  • Synchronous Data Acquisition with Wireless Sensor Networks the Scientifc Series Advances in Automation Engineering Is Edited by Prof
    Advances in Automaton Engineering Band 4 Editor: Clemens Gühmann Jürgen Helmut Funck Synchronous data acquisiton with wireless sensor networks Universitätsverlag der TU Berlin Jürgen Helmut Funck Synchronous data acquisition with wireless sensor networks The scientifc series Advances in Automation Engineering is edited by Prof. Dr.-Ing. Clemens Gühmann. Advances in Automation Engineering | 4 Jürgen Helmut Funck Synchronous data acquisition with wireless sensor networks Universitätsverlag der TU Berlin Bibliographic information published by the Deutsche Nationalbibliothek The Deutsche Nationalbibliothek lists this publication in the Deutsche Nationalbibliografe; detailed bibliographic data are available on the Internet at http://dnb.dnb.de. Universitätsverlag der TU Berlin, 2018 http://verlag.tu-berlin.de Fasanenstr. 88, 10623 Berlin Tel.: +49 (0)30 314 76131 / Fax: -76133 E-Mail: [email protected] Zugl.: Berlin, Techn. Univ., Diss., 2017 Gutachter: Prof. Dr.-Ing. Clemens Gühmann Gutachter: Prof. Dr.-Ing. Gerd Scholl Gutachter: Prof. Dr.-Ing. Reinhold Orglmeister Die Arbeit wurde am 12. Oktober 2017 an der Fakultät IV unter Vorsitz von Prof. Dr.-Ing. Olaf Hellwich erfolgreich verteidigt. This work is protected by copyright. Cover image: vickysandoval22 | https://www.fickr.com/photos/115327016@ N06/12603289253/ | CC BY 2.0 https://creativecommons.org/licenses/by/2.0/ Print: docupoint GmbH Layout/Typesetting: Jürgen Helmut Funck ISBN 978-3-7983-2980-5 (print) ISBN 978-3-7983-2981-2 (online) ISSN 2509-8950 (print) ISSN 2509-8969 (online) Published online on the institutional Repository of the Technische Universität Berlin: DOI 10.14279/depositonce-6716 http://dx.doi.org/10.14279/depositonce-6716 Credits This thesis is the result of my time as research assistant at the Chair of Electronic Measurement and Diagnostic Technology at the Technische Universitat¨ Berlin.
    [Show full text]
  • Framework for Body Sensor Networks
    Framework for Body Sensor Networks Sameer Iyengar Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2009-154 http://www.eecs.berkeley.edu/Pubs/TechRpts/2009/EECS-2009-154.html November 5, 2009 Copyright © 2009, by the author(s). All rights reserved. Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission. Framework for Body Sensor Networks Sameer Iyengar Framework for Body Sensor Networks by Sameer Iyengar Research Project Submitted to the Department of Electrical Engineering and Computer Sciences, University of Cali- fornia at Berkeley, in partial satisfaction of the requirements for the degree of Master of Science, Plan II. Approval for the Report and Comprehensive Examination: Committee: Professor Alberto Sangiovanni-Vincentelli Research Advisor Date ****** Professor Ruzena Bajcsy Second Reader Date Acknowledgements It is impossible to be successful as a graduate student without a wide support network. I am extremely grateful for mine. I must thank my advisor, Alberto Sangiovanni-Vincentelli, for giving me the the freedom and inspiration to explore my interests and ideas, possibly the most valuable thing a researcher could ask for. In addition, to my mentors, Professor Ruzena Bajcsy and Professor Roozbeh Jafari, thank you for helping me focus my research and pushing me to always take that extra step.
    [Show full text]
  • And Mission-Critical Applications in Industrial Wireless Sensor Networks
    Enabling Time- and Mission-Critical Applications in Industrial Wireless Sensor Networks Hossam Farag Department of Information Systems and Technology Mid Sweden University Licentiate Thesis No. 151 Sundsvall, Sweden 2019 Mittuniversitetet Informationssystem och -teknologi ISBN 978-91-88527-84-4 SE-851 70 Sundsvall ISNN 1652-8948 SWEDEN Akademisk avhandling som med tillstand˚ av Mittuniversitetet i Sundsvall framlagges¨ till offentlig granskning for¨ avllaggande¨ av teknologie licentiatexamen Onsdagen den 30 januari 2019 i M102, Mittuniversitetet, Holmgatan 10, Sundsvall. c Hossam Farag, 2019 Tryck: Tryckeriet Mittuniversitetet My Wife My Parents iv Abstract Nowadays, Wireless Sensor Networks (WSNs) ”have gained importance as a flexible, easier deployment/maintenance and cost-effective alternative to wired net- works, e.g., Fieldbus and Wired-HART, in a wide-range of applications. Initially, WSNs were mostly designed for military and environmental monitoring applications where energy efficiency is the main design goal. The nodes in the network were expected to have a long lifetime with minimum maintenance while providing best-effort data delivery which is acceptable in such scenarios. With re- cent advances in the industrial domain, WSNs have been subsequently extended to support industrial automation applications such as process automation and con- trol scenarios. However, these emerging applications are characterized by stringent requirements regarding reliability and real-time communications that impose chal- lenges in the design of Industrial Wireless Sensor Networks (IWSNs) to effectively support time- and mission-critical applications. Typically, time- and mission-critical applications support different traffic cate- gories ranging from relaxed requirements, such as monitoring traffic to firm require- ments, such as critical safety and emergency traffic.
    [Show full text]
  • Wireless Sensor Networks
    White Paper ® Internet of Things: Wireless Sensor Networks Executive summary Today, smart grid, smart homes, smart water Section 2 starts with the historical background of networks, intelligent transportation, are infrastruc- IoT and WSNs, then provides an example from the ture systems that connect our world more than we power industry which is now undergoing power ever thought possible. The common vision of such grid upgrading. WSN technologies are playing systems is usually associated with one single con- an important role in safety monitoring over power cept, the internet of things (IoT), where through the transmission and transformation equipment and use of sensors, the entire physical infrastructure is the deployment of billions of smart meters. closely coupled with information and communica- Section 3 assesses the technology and charac- tion technologies; where intelligent monitoring and teristics of WSNs and the worldwide application management can be achieved via the usage of net- needs for them, including data aggregation and worked embedded devices. In such a sophisticat- security. ed dynamic system, devices are interconnected to transmit useful measurement information and con- Section 4 addresses the challenges and future trol instructions via distributed sensor networks. trends of WSNs in a wide range of applications in various domains, including ultra large sensing A wireless sensor network (WSN) is a network device access, trust security and privacy, and formed by a large number of sensor nodes where service architectures to name a few. each node is equipped with a sensor to detect physical phenomena such as light, heat, pressure, Section 5 provides information on applications. etc. WSNs are regarded as a revolutionary The variety of possible applications of WSNs to the information gathering method to build the real world is practically unlimited.
    [Show full text]
  • Hubnet Position Paper Series Standards-Based Wireless Sensor
    HubNet Position Paper Series Standards-Based Wireless Sensor Networks for Power System Condition Monitoring Title Standards-Based Wireless Sensor Networks for Power System Condition Monitoring Authors PC Baker, VM Catterson and MD Judd Author Contact Version Control Version Date Comments 1.0 05/12/2014 Version for peer review 1.1 17/08/2015 Edited in response to peer review comments 2.0 11/09/2015 Final version for publication Status Final Date Issued 11/09/2015 Available from www.hubnet.org.uk HubNet Position Paper Wireless Sensor Networks Page 1 of 20 About HubNet HubNet is a consortium of researchers from eight universities (Imperial College and the universities of Bristol, Cardiff, Manchester, Nottingham, Southampton, Strathclyde and Warwick) tasked with coordinating research in energy networks in the UK. HubNet is funded by the Energy Programme of Research Councils UK under grant number EP/I013636/1. This hub will provide research leadership in the field through the publication of in-depth position papers written by leaders in the field and the organisation of workshops and other mechanisms for the exchange of ideas between researchers, industry and the public sector. HubNet also aims to spur the development of innovative solutions by sponsoring speculative research. The activities of the members of the hub will focus on seven areas that have been identified as key to the development of future energy networks: Design of smart grids, in particular the application of communication technologies to the operation of electricity networks and the harnessing of the demand-side for the control and optimisation of the power system.
    [Show full text]
  • How Zigbee/802.15.4 Protocol Simplifies Wireless M2M Communications June 4Th, 2008
    How ZigBee/802.15.4 Protocol Simplifies Wireless M2M Communications June 4th, 2008 Cyril Zarader Product Marketing Manager EMEA – Wireless Connectivity TM Freescale™ and the Freescale logo are trademarks of Freescale Semiconductor, Inc. All other product or service names are the property of their respective owners. © Freescale Semiconductor, Inc. 2006. Topics IEEE 802.15.4 : Made for Reliable Low Power Wireless Networking ZigBee : Made for Simple Deployment of Wireless M2M Communications ZigBee Compared to Other Industrial Wireless Protocols Freescale™ and the Freescale logo are trademarks of Freescale Semiconductor, Inc. All other product or service names are TM the property of their respective owners. © Freescale Semiconductor, Inc. 2007. 1 Selection of Wireless Technologies Wireless Video Applications Faster Wireless Data UWB 802.11g Applications 802.15.3 802.11a IrDA Wi-Fi® 802.11b Cellular 2.5G/3G 802.15.1 Peak Data Rate Data Peak Bluetooth™ ZigBee™ Data 802.15.4 Transfer Slower Wireless Networking NFC/RFID Closer Range Farther Freescale™ and the Freescale logo are trademarks of Freescale Semiconductor, Inc. All other product or service names are TM the property of their respective owners. © Freescale Semiconductor, Inc. 2007. 2 Wireless Networking Technologies ZigBeeTM Bluetooth® UWBTM Wi-FiTM LonWorks® Proprietary IEEE® IEEE® 802.11 IEEE® Standard IEEE® 802.15.4 802.15.3a a, b, g (n to EIA 709.1,2,3 Proprietary 802.15.1 (to be ratified) be ratified) UWBTM Forum LonMark® Industry Wi-FiTM ZigBeeTM Alliance Bluetooth® SIG & WiMediaTM
    [Show full text]
  • Low-Power Wireless for the Internet of Things: Standards and Applications Ali Nikoukar, Saleem Raza, Angelina Poole, Mesut Günes, Behnam Dezfouli
    Low-Power Wireless for the Internet of Things: Standards and Applications Ali Nikoukar, Saleem Raza, Angelina Poole, Mesut Günes, Behnam Dezfouli To cite this version: Ali Nikoukar, Saleem Raza, Angelina Poole, Mesut Günes, Behnam Dezfouli. Low-Power Wireless for the Internet of Things: Standards and Applications: Internet of Things, IEEE 802.15.4, Bluetooth, Physical layer, Medium Access Control, coexistence, mesh networking, cyber-physical systems, WSN, M2M. IEEE Access, IEEE, 2018, 6, pp.67893-67926. 10.1109/ACCESS.2018.2879189. hal-02161803 HAL Id: hal-02161803 https://hal.archives-ouvertes.fr/hal-02161803 Submitted on 21 Jun 2019 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Received August 13, 2018, accepted October 11, 2018, date of publication November 9, 2018, date of current version December 3, 2018. Digital Object Identifier 10.1109/ACCESS.2018.2879189 Low-Power Wireless for the Internet of Things: Standards and Applications ALI NIKOUKAR 1, SALEEM RAZA1, ANGELINA POOLE2, MESUT GÜNEŞ1, AND BEHNAM DEZFOULI 2 1Institute for Intelligent Cooperating Systems, Otto von Guericke University Magdeburg, 39106 Magdeburg, Germany 2Internet of Things Research Lab, Department of Computer Engineering, Santa Clara University, Santa Clara, CA 95053, USA Corresponding author: Ali Nikoukar ([email protected]) This work was supported by DAAD (Deutscher Akademischer Austauschdienst) and DAAD/HEC Scholarships.
    [Show full text]
  • Modeling, Analysis, and Design of Wireless Sensor Network Protocols
    Modeling, Analysis, and Design of Wireless Sensor Network Protocols PANGUN PARK Doctoral Thesis Stockholm, Sweden 2011 KTH School of Electrical Engineering TRITA-EE 2011:001 Automatic Control Lab ISSN 1653-5146 SE-100 44 Stockholm ISBN 978-91-7415-836-6 SWEDEN Akademisk avhandling som med tillstånd av Kungliga Tekniska högskolan fram- lägges till offentlig granskning för avläggande av teknologie doktorsexamen i telekom- munikation tisdagen den 4 Mars 2011 klockan 10.15 i sal F3 Kungliga Tekniska högskolan, Lindstedtsvägen 26, Stockholm. © Pangun Park, January 2011. All rights reserved. Tryck: Universitetsservice US AB Abstract Wireless sensor networks (WSNs) have a tremendous potential to improve the effi- ciency of many systems, for instance, in building automation and process control. Unfortunately, the current technology does not offer guaranteed energy efficiency and reliability for closed-loop stability. The main contribution of this thesis is to provide a modeling, analysis, and design framework for WSN protocols used in con- trol applications. The protocols are designed to minimize the energy consumption of the network, while meeting reliability and delay requirements from the application layer. The design relies on the analytical modeling of the protocol behavior. First, modeling of the slotted random access scheme of the IEEE 802.15.4 medium access control (MAC) is investigated. For this protocol, which is com- monly employed in WSN applications, a Markov chain model is used to derive the analytical expressions of reliability, delay, and energy consumption. By using this model, an adaptive IEEE 802.15.4 MAC protocol is proposed. The protocol design is based on a constrained optimization problem where the objective function is the energy consumption of the network, subject to constraints on reliability and packet delay.
    [Show full text]
  • Implementation of Collection Tree Protocol Over Wirelesshart Data-Link
    , Implementation of Collection Tree Protocol over WirelessHART Data-Link Author: Kiran Kumar Koneri EXAM WORK 2010 SUBJECT: Electrical Engineering with specialisation in Embedded Systems Postadress: Besöksadress: Telefon: Box 1026 Gjuterigatan 5 036-10 10 00 551 11 Jönköping Implementation of Collection Tree Protocol over WirelessHART Data-Link Author: Kiran Kumar Koneri This thesis work is performed at Jönköping University within the subject area of Electrical Engineering. This work is part of the Master’s Degree program with the specialization in Embedded Systems. The author takes responsibility for opinions, conclusions and findings presented. Supervisor and Examiner: Professor Youzhi Xu Scope: 30 credits (D-Level) Date: Archive Number: Postadress: Besöksadress: Telefon: Box 1026 Gjuterigatan 5 036-10 10 00 551 11 Jönköping Abstract Abstract Wireless Sensor Networks (WSNs) are ad-hoc wireless networks for small form-factor embedded nodes with limited memory, processing and energy resources. Certain applications, like industrial automation and real-time process monitoring requires time synchronized reliable network protocol. Current work for WSNs provides either time synchronized with low reliability (WirelessHART) or reliable network without time synchronization (Collection Tree Protocol). The Collection Tree Protocol (CTP) provides the reliability from 94.7% to 99.9% for CSMA-CA based MAC layer. This paper addresses channel hopping, a class of frequency diverse communication protocol in which subsequent packets are sent over different frequency channels. Channel hopping combats external interference and persistent multipath fading, two of the main causes of failure along a communication link. Channel hopping technique leads to a high reliable and efficient protocol which is specified by HART Communication Foundation and named as WirelessHART.
    [Show full text]
  • The Once and Future Internet of Everything…
    The Once and Future Internet of EveryThing… David E. Culler University of California, Berkeley NRC Symposium on Continuing Innovation in Information Technology March 5, 2015 National Academy of Sciences In 1999, we said “… … in 15 years we will have connected all the people on the planet and we will have the technology to connect all the things.” Computers People Everything 1T $100 100B Cost to $1 10B Connect 1¢ 1B Things 10M Connected 1990 2000 2010 2020 3/5/15 NRC 2 The Internet in 1999 3/5/15 NRC 3 2007 -The Internet of Every Body 3/5/15 NRC 4 2013: Many Things BLE LoWPAN WiFi 3/5/15 NRC 5 A Device / $ Centric Perspective WIFI zeevoBT BLE LoWPAN Intel Intel MOTE2 WINS Intel Intel/UCB iMOTE Intel BTNode sensoria rene’ dot cf-mica trio v6 PL P /I R F SmartDust Mica Epic AN T Rene N T G O O I I P A A P . P T T J G G Telos X WeC E E PRIMARY SPI W GPIO XBOW XBOW I XBOW EXT. ANT 2xIRQ FLASH XBOW mica mica2 4xPWM RADIO PARALLEL IO + cc-dot XBOW Lo SYNC CAPTURE 6xADC rene2 VREF +/- XTAL micaZ MCU POWER CFG digital sun USART + FLOW CTL USB + + F F U U L L O S O S I I 2 2 A A W W Bosch C C R R rain-mica C C T T T T cc-mica L L Dust Inc Storm DARPA blue cc-TI 98 99 00 01 02 03 .4 04 05 06 07 09 11 13 15 5 BLE 1 .
    [Show full text]
  • Standards-Based Wireless Sensor Networking Protocols for Spaceflight Applications Raymond S
    Standards-Based Wireless Sensor Networking Protocols for Spaceflight Applications Raymond S. Wagner, Ph.D. NASA Johnson Space Center 2101 NASA Parkway, Mail Code EV814/ESCG Houston, TX 77058 281-244-2428 [email protected] Abstract—Wireless sensor networks (WSNs) have the by re-locating a sensor from one panel to another, this is capacity to revolutionize data gathering in both easily accomplished. Similarly, additional sensors can be spaceflight and terrestrial applications. WSNs provide a easily added to the existing suite, providing a more huge advantage over traditional, wired instrumentation detailed measurement set without requiring more wires to since they do not require wiring trunks to connect sensors be strung behind bulkheads and through walls of pressure to a central hub. This allows for easy sensor installation shells. Finally, wireless sensors can be re-used between in hard to reach locations, easy expansion of the number vehicles once their initial missions have been ended. A of sensors or sensing modalities, and reduction in both WSN node can be relocated from a spent vehicle, such as system cost and weight. While this technology offers a lunar larder, to one currently in service, such as a lunar unprecedented flexibility and adaptability, implementing rover or habitat. The node can even be outfitted with a it in practice is not without its difficulties. Recent new set of sensors in the process, retaining the common advances in standards-based WSN protocols for industrial radio and networking hardware; to give a new functional control applications have come a long way to solving tilt built mostly from recycled parts.
    [Show full text]