A Middleware-Based Approach for Heterogeneous Wireless Sensor Networks

Size: px
Start display at page:

Download "A Middleware-Based Approach for Heterogeneous Wireless Sensor Networks"

Transcription

1 A Middleware-Based Approach for Heterogeneous Wireless Sensor Networks F. GRAZIOSI, L. POMANTE, D. PACIFICO Center of Excellence DEWS University of L Aquila Piazza E. Pontieri, Monteluco di Roio (AQ) ITALY Abstract: - Wireless sensor networks (WSN) are networked embedded systems that use small size devices with some processing and short-range radio communication capabilities for monitoring and controlling systems and environments. However, languages and IDE (Integrated Development Environments) used to develop applications for WSN are often strictly related to the involved HW/SW platform leading to complex activities, especially when dealing with heterogeneous WSN composed of nodes with different hw features, operating systems, communication standards, etc... A middleware (MW) is a SW abstraction layer between operating systems and applications that simplify operations, enable heterogeneity and masks the basic HW/SW layers (of remote or local devices). Finally, a middleware concretely helps the designer to develop applications, and this is especially true in the heterogeneous WSN world. So, this work presents a middleware-based approach for WSN that copes with radio heterogeneity, i.e. it is able to transport data across heterogeneous networks (i.e. based on different communication standard) while offering to the designer an homogenous API (Application Programming Interface) for the applications development. Key-Words: - Wireless Sensor Networks, Middleware, Heterogeneous Networks 1 Introduction Wireless sensor networks represent one of the latest research areas about the (networked) embedded systems. These networks are constituted of small devices designed to interact the environment and to communicate to each other without cables The deployment of these networks in the target environment should be maximally simplified. The great variety of potential applications of wireless sensor networks promotes their use in several areas [1] [2] [3]: - Environment - There are a lot of applications that are dedicated to the monitoring of terrestrial animals, birds, marine species and for the environmental monitoring and precision agriculture; - Military - Wireless sensor networks could be used by military control systems, military communication systems, elaboration systems, processing, intelligence, surveillance, recognition and identification; - Health - Some example of application are: interfaces for the disabled, integrated monitoring of patients, remote monitoring of personal physiological data, administering drugs in hospitals; - Domestic Use - The sensor nodes can be put into appliances, such as microwave ovens, refrigerators; these devices can interact with each other and with an external network, via Internet or satellite networks and allow the user to easily remotely control appliances activity; - Commercial Application - Other possible applications include: virtual keyboards; behavior analysis of material under mechanical stress; robots control, etc However, despite to the increasing proliferation of WSN applications, languages, tools and IDE (Integrated development Environments) used to develop them are still very similar to the ones used in the classical embedded world, i.e. they are too often strictly related to the involved HW/SW platform leading the designer to complex design and development activities especially when dealing with heterogeneous WSN (i.e. composed ISSN: ISBN:

2 of nodes with different HW features, microcontrollers, operating systems, communication standards, etc ). Moreover, it is worth noting that WSN typically act as embedded distributed systems so inheriting part of the design issues involved in the distributed systems domain! Fortunately, and particularly in the recent research panorama, something is changing and the password of such a change is Middleware. In such a context, this work presents a middleware-based approach for a WSN that copes with radio heterogeneity, i.e. it is able to transport data across heterogeneous networks (based on different communication standard) while offering to the designer an homogenous API for the applications development. By means of such a MW is so possible to transparently use different type of nodes in the network (including a proper gateway node when needed). This feature could be useful, for example, when it is needed to cover large regions with different propagation characteristics (Figure 1). It could be impossible to find a radio interface suitable for all the situations while with different types of nodes we could be able to use a proper radio interface according to specific link properties. Figure 1. Heterogeneous network with different interferers Another interesting example (Figure 2) is the case of the deployment of a very dense WSN where the concurrent use of different radio technologies could be the only way to avoid medium access conflicts and expensive retransmissions. X node Y node Gateway node Figure 2. Dense heterogeneous network The next Section discusses some issues related to MW focusing on WSN. Section 3 describes the work that has been taken as a starting point for the development of the presented MW while Section 4 describes with some details the proposed extensions. Finally, Section 5 shows a simple application of the proposed MW while Section 6 draws out some conclusive considerations about the presented work and the related ongoing activities. 2 Middleware for WSN Design and management of distributed systems can be an hard task for developers because of their very heterogeneous and dynamic structure. A middleware approach could significantly simplify this task and it has been followed very often in the past. The main features of a middleware has been generally [4] [5] the following: - Marshalling/Unmarshalling: data should be formatted to ensure hardware and software independence from hosts; - Data Representation and Codification: the middleware protocol should define all type of data that the applications can manage; - Remote Invocation: modern middleware should allow remote processing and method invocation; - OSI protocol compliant: encoding and data preparation should not interfere with middleware protocol; - Location transparency: the application should be able to communicate with all the devices composing the distributed systems by using the middleware capabilities; - Quality of services: middleware is also suited to offer QoS to the application layer. ISSN: ISBN:

3 However, focusing on WSN the scenario is quite different. In fact, although middleware is well established research area in distributed computing systems, WSN poses new challenges because the traditional middleware techniques cannot be applied directly to WSN. In fact, most distributed system middlewares [7] [8] aim to hide the context, but WSN-based applications should usually be context-aware. Moreover, although many mobile computing middleware [9] [10] supports context-awareness, their major concern is how to satisfy the interests of single nodes. In contrast, WSN-based systems are data centric, reflecting the application goals. Also, WSN often use attribute-based addressing [7]- [13] rather than relying on network-wide unique node addresses. Again, data aggregation in intermediate nodes of the forwarding path is desirable in WSN, but no such kind of support is provided in traditional middleware. Finally, WSN requires the middleware to be lightweight for implementation in sensor nodes with limited processing and energy resources. In recent years, lot of work has been done on WSN middleware and several survey papers can be found in literature (e.g. [14]- [20]). Although such a research area is actually very active, there are not works that currently copes with the radio heterogeneity issue. Therefore, this work presents a middleware-based approach for WSN able to manage such an heterogeneity, i.e. it is able to route data packets across heterogeneous networks, using different communication standards, while offering to the designer an homogenous API for the applications development. The presented approach is based on an existing transport layer for WSN called Stream System (created in the context of the MaD-Wise project [6]) that, for its native characteristics (described with some detail in the following), could be seen, for our purposes, as a sort of MW for WSN. 3 Stream System Typical applications of WSNs periodically request data from nodes to monitor real phenomena. These information are sent to a sink node that is usually connected to a personal computer by different interfaces (e.g. cable, radio link, satellite). Stream system [23] proposes an abstraction of collection and transmission data at the application layer, this means that there is an unidirectional stream channel by which it is possible to transmit information. Figure 3. Type of streams offered by the Stream System Stream System offers three types of streams (Figure 3): sensor stream, local stream e remote stream. Sensor stream is an abstraction that acquires data from transducers, these can be only read by the application because writing operation is done only from the associated transducers. Local stream is a local data channel, writing and reading operations occur on node in which it was born. Remote stream needs of two different nodes cooperation. In this case the writing operations are done by only one node (write-end) while the other node is in the reading mode (read-end). Local stream allows internal node communication between processes. Remote streams seem like sockets that permit operation from different processes also on different devices. An application can identify a stream by its descriptor id that is generated at the end of a request. In a remote stream, data structures are in the Stream System module on the read node, so writing on the remote stream means to cross the network module that delivers the message to destination node in which the information are stored in the stream stack. To implement a remote stream, Stream system needs a network module that could provide a connection oriented service. Stream System requests to the network module to establish an unidirectional communication channel towards the remote sensor. Such a consideration is the one that gave us the idea to consider the Stream System as a sort of MW: developing a SW module that implements the Stream System interface while properly using the platform dependent HW/SW services (i.e. the network module and the other local OS services) such a layer could be used to provide the stream concept to the application layer masking different heterogeneities comprehensive of the radio technology one. The hardware and ISSN: ISBN:

4 software needed to exploit in such a way the features of the Stream System are described in the following. 4 Stream System as a MW for WSN Figure 4 shows how the Stream System Module is related with system and the other modules. Since the focus of the work is on radio heterogeneity, it has been considered only a Stream System implemented on TinyOs/nesC [21]: to adapt the Stream System to different HW/SW platform it is needed to port its module while keeping application-level compatibility. Then, the Stream System Module has been associated to the TinyOS network module that provides a connection service between two nodes in a multi-hop network. In order to afford the radio heterogeneity topic, limiting other portability issues, two different nodes of the MICA family [22] have been used, both based on TinyOS but with different communication standard: IEEE for MicaZ and a proprietary one for Mica2 [22]. 5 Validation 5.1 The gateway node As described before, it has been needed to develop a gateway node composed of a MicaZ and a Mica2 connected via UART. Figure 5 shows the involved PCB with a detail of the connector used to physically connect the nodes to the PCB itself. An additional serial output (the UART has been adapted to RS-232 by means of the IC SP3232E [24]) has been added to allow the gateway to act also as sink node and for debug purposes. The power could be provided by means of the nodes batteries or via an USB port (adapted with the IC XC62FP [25]) setting a proper jumper and powering off the nodes. Figure 5. The Gateway node PCB Figure 4. The Stream System module Since, the considered nodes work also with different radio frequency it has been needed to develop a proper home-made gateway node composed of a MicaZ and a Mica2 connected by means of the respective UART. Moreover, in order to keep transparency for all the communications, the Stream System has been modified by adding a new stream type: the serial stream used to manage the data transfers between the nodes composing the gateway. Some implementation issues related to the gateway and to a test application are described in the following. 5.2 Test application In order to test the whole system it has been used a Stream System based version of two example applications provided with TinyOS: CntToLedsAndSS (derived from CntToLedsAndRfm) and SSToLeds (derived from RfmToLed). The system is composed of a simple heterogeneous network with a MicaZ node on which CntToLedsAndSS is running and a Mica2 node on which SSToLeds is running (but it is straightforward to exchange the applications on the nodes). As shown in Figure 6 the X node (MicaZ) sends packets that contain a data structure with an integer by means of the middleware layer. These information came to the Y node (Mica2), that displays the received value on the leds, after they were passed through the gateway node. During the start phase, source node opens a remote stream (using gateway and destination nodes addresses) versus the gateway node that, in ISSN: ISBN:

5 turns, opens an UART stream between internal nodes in order to forward the received information to the Y node. The Mica2 node on the gateway board, obtains from internal packet data structure the destination address and then opens a remote stream versus the target node. After the remote stream from gateway and Mica2 node has been opened, the packet flow form node X to Y in transparent mode respect to the gateway node and to the applications. Figure 6. Sample application 6 Conclusion In this work we have presented a suitable middleware-based approach for heterogeneous wireless sensor network. It permits a common abstraction to exchange information between different types of network nodes that uses different radio interfaces. Starting from the Stream System we have developed and implemented a system that permit data transmission trough heterogeneous networks. By means of simple applications it was possible to test all the features. In this way we have been able to transmit packets over the network independently from the source. A new, simple hardware platform has allowed the connection between nodes with different hardware architecture and has extended the gateway role also to a sink role. The current efforts are devoted to introduce multihop features in the Stream System, to port the Stream System of different HW/SW platform, and to develop and engineered version of the gateway node. References: [1] Li, Yingshu; Thai, My T.; Wu, Weili. Wireless Sensor Networks and Applications Springer Series: Signals and Communication Technology, ISBN: [2] Morreale, Patricia A. Wireless Sensor Network Applications in Urban Telehealth. Advanced Information Networking and Applications Workshops, [3] Puccinelli, D.; Haenggi, M. Wireless sensor networks: applications and challenges of ubiquitous sensing. Circuits and Systems Magazine, IEEE Volume 5, Issue 3, [4] Distributed Systems Architecture: A Middleware Approach. Morgan Kaufmann, ISBN (2005). [5] Judith M. Myerson. The Complete Book of Middleware. AUERBACH; 1 edition March, [6] MaD-Wise, [7] Java Soft. Java Remote Invocation specification. Revision 1.5, JDK1.2 Edition, Oct. 1998, rmi/. [8] OMG. The common object request broker: Architecture and specication, Rev. 2.2, 1998, [9] Licia Capra, Wolfgang Emmerich, Cecilia Mascolo. Middle-ware for mobile computing. Technical Report, Department of Computer Science, University College London, [10] Murphy A L, Picco G P, Roman G C. Lime: A middleware for physical and logical mobility. In Proc. the 21st Int. Conf. on Distr. Computing Systems, Orland, USA, May [11] Akyildiz IF, Su W, Sankarasubramaniam Y, Cayirci E. A survey on sensor networks. IEEE Communications Magazine, 2002, 40(8). [12] Cecilia Mascolo, Stephen Hailes. Survey of middleware for networked embedded systems. Technical Report for Project: Reconfigurable Ubiquitous Networked Embedded Systems, University College London, [13] Kay RÄoomer, Oliver Kasten, Friedemann Mattern. Middleware challenges for wireless sensor networks. Mobile Computing and Communications Review, [14] Sadjadi S M. A survey of adaptive middleware. Technical Report, Software Engineering and Network Systems Laboratory, Department of Computer ISSN: ISBN:

6 Science and Engineering, Michigan State University, [15] Wassim Masri, Zoubir Mammeri. Middleware for wireless sensor networks: A comparative analysis. In Proc. the 2007 IFIP International Conference on Network and Parallel Computing, China [16] Karen Henricksen, Ricky Robinson. A survey of middleware for sensor networks: State-of-the-art and future directions. In Proc. the Int. Workshop on Middleware for Sensor Networks Table of Contents, Melbourne, Australia, [17] Salem Hadim, Nader Mohamed. Middleware for wireless sensor networks: A survey. In Proc. the 1st Int. Conf. Comm. System Software and Middleware (Comsware06), India, [18] Hill J, Szewczyk R, Woo A, Hollar S, Culler D, Pister K. System architecture directions for networked sensors. In Proc. the 9th Int. Conf. Architectural Support for Programming Languages and Operating Systems (ASPLOS-IX), New York, NY, USA, ACM Press, [19] Kay RÄome. Programming paradigms and middleware for sensor networks. Technical Report, Institute for Pervasive Computing, ETH Zurich, 2002 [20] Nuno Costa, Ant onio Pereira, Carlos Ser odio. Virtual machines applied to WSN's: The state-of-the-art and classification. In Proc. the 2nd International Conference on Systems and Networks Communications (ICSNC 07), Cap Esterel, French, Riviera, France, [21] [22] [23] Amato, G.; Baronti, P.; Chessa, S.; Masi, V. The Stream System: a Data Collection and Communication Abstraction for Sensor Networks. Int. Conf. On Systems and Cybernetics, [24] ex/datasheets/sp3222_3232e.pdf [25] ISSN: ISBN:

A Study of Open Middleware for Wireless Sensor Networks

A Study of Open Middleware for Wireless Sensor Networks , pp.105-109 http://dx.doi.org/10.14257/astl.2014.60.26 A Study of Open Middleware for Wireless Sensor Networks Chen-Nam 1, Do-Hyeun Kim 2 1,2 Dept. of Computing Engineering Jeju National University Jeju-Si

More information

A Review on Wireless Sensor Networks

A Review on Wireless Sensor Networks A Review on Wireless Sensor Networks Astt prof. Jagtar Singh Department Of Computer Science Haryana College Of Technology And Management Kaithal, Kurukshetra University Anu Arya Department Of Computer

More information

A WSN middleware for security and localization services

A WSN middleware for security and localization services 1st Italian Workshop on Embedded Systems A WSN middleware for security and localization services Speaker Marco Santic Center of Excellence DEWS University of L'Aquila Italy Overview Introduction Concept

More information

Ubiquitous Sensor Network KIM, YONG-WOON ETRI

Ubiquitous Sensor Network KIM, YONG-WOON ETRI Ubiquitous Sensor Network 2007. 7. 10. KIM, YONG-WOON ETRI Table of Contents USN Definition USN Applications USN Problem Domains USN Service Requirements USN Technical Issues USN Technology Layer Model

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

Comparison of TDMA based Routing Protocols for Wireless Sensor Networks-A Survey

Comparison of TDMA based Routing Protocols for Wireless Sensor Networks-A Survey Comparison of TDMA based Routing Protocols for Wireless Sensor Networks-A Survey S. Rajesh, Dr. A.N. Jayanthi, J.Mala, K.Senthamarai Sri Ramakrishna Institute of Technology, Coimbatore ABSTRACT One of

More information

Reservation Packet Medium Access Control for Wireless Sensor Networks

Reservation Packet Medium Access Control for Wireless Sensor Networks Reservation Packet Medium Access Control for Wireless Sensor Networks Hengguang Li and Paul D Mitchell Abstract - This paper introduces the Reservation Packet Medium Access Control (RP-MAC) protocol for

More information

Outline. CS5984 Mobile Computing. Dr. Ayman Abdel-Hamid, CS5984. Wireless Sensor Networks 1/2. Wireless Sensor Networks 2/2

Outline. CS5984 Mobile Computing. Dr. Ayman Abdel-Hamid, CS5984. Wireless Sensor Networks 1/2. Wireless Sensor Networks 2/2 CS5984 Mobile Computing Outline : a Survey Dr. Ayman Abdel-Hamid Computer Science Department Virginia Tech An Introduction to 1 2 1/2 Advances in micro-electro-mechanical systems technology, wireless communications,

More information

European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105

European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105 European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105 A Holistic Approach in the Development and Deployment of WSN-based

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

ARCS: A SIMULATOR FOR DISTRIBUTED SENSOR NETWORKS

ARCS: A SIMULATOR FOR DISTRIBUTED SENSOR NETWORKS ARCS: A SIMULATOR FOR DISTRIBUTED SENSOR NETWORKS Zdravko Georgiev Karakehayov University of Southern Denmark, Mads Clausen Institute, Grundtvigs Alle 150, DK-6400, Sønderborg, Denmark, phone: +45 6550

More information

The Internet of Things

The Internet of Things The Internet of Things The Internet of Things Connecting Objects to the Web Edited by Hakima Chaouchi First published 2010 in Great Britain and the United States by ISTE Ltd and John Wiley & Sons, Inc.

More information

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

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

More information

Lecture 8 Wireless Sensor Networks: Overview

Lecture 8 Wireless Sensor Networks: Overview Lecture 8 Wireless Sensor Networks: Overview Reading: Wireless Sensor Networks, in Ad Hoc Wireless Networks: Architectures and Protocols, Chapter 12, sections 12.1-12.2. I. Akyildiz, W. Su, Y. Sankarasubramaniam

More information

Energy and Memory Efficient Clone Detection in Wireless Sensor Networks

Energy and Memory Efficient Clone Detection in Wireless Sensor Networks Energy and Memory Efficient Clone Detection in Wireless Sensor Networks Chennai) 1 Vladymir.F, 2 J.Sivanesa Selvan, 3 Mr.Prabhu.D 1 (Information Technology, Loyola Institute of Technology, Chennai) ( Email:

More information

Implementation of enhanced REAC-IN protocol

Implementation of enhanced REAC-IN protocol Implementation of enhanced REAC-IN protocol Amandeep kaur M. Tech student, Computer science Department. Bhai Gurdas Institute Of Engg. And Tech., Sangrur, Punjab(India) Tungaman6@gmail.com Dr. Rajesh kumar

More information

New Active Caching Method to Guarantee Desired Communication Reliability in Wireless Sensor Networks

New Active Caching Method to Guarantee Desired Communication Reliability in Wireless Sensor Networks J. Basic. Appl. Sci. Res., 2(5)4880-4885, 2012 2012, TextRoad Publication ISSN 2090-4304 Journal of Basic and Applied Scientific Research www.textroad.com New Active Caching Method to Guarantee Desired

More information

Mitigating Hot Spot Problems in Wireless Sensor Networks Using Tier-Based Quantification Algorithm

Mitigating Hot Spot Problems in Wireless Sensor Networks Using Tier-Based Quantification Algorithm BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 16, No 1 Sofia 2016 Print ISSN: 1311-9702; Online ISSN: 1314-4081 DOI: 10.1515/cait-2016-0005 Mitigating Hot Spot Problems

More information

Wireless Sensor Networks --- Concepts and Challenges

Wireless Sensor Networks --- Concepts and Challenges Outline Wireless Sensor Networks --- Concepts and Challenges Basic Concepts Applications Characteristics and Challenges 2 Traditional Sensing Method Basic Concepts Signal analysis Wired/Wireless Object

More information

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 35 Software-Defined lot Networking - Part- 1 Having

More information

Wireless Sensor Networks --- Concepts and Challenges

Wireless Sensor Networks --- Concepts and Challenges Wireless Sensor Networks --- Concepts and Challenges Outline Basic Concepts Applications Characteristics and Challenges 2 1 Basic Concepts Traditional Sensing Method Wired/Wireless Object Signal analysis

More information

Middleware approaches for Wireless Sensor Networks: An overview J.Radhika 1 and S.Malarvizhi 2

Middleware approaches for Wireless Sensor Networks: An overview J.Radhika 1 and S.Malarvizhi 2 www.ijcsi.org 224 Middleware approaches for Wireless Sensor Networks: An overview J.Radhika 1 and S.Malarvizhi 2 1 Dept. of Electronics and Communication Engineering SRM University, Kattankulathur, 603203,

More information

A Survey on Underwater Sensor Network Architecture and Protocols

A Survey on Underwater Sensor Network Architecture and Protocols A Survey on Underwater Sensor Network Architecture and Protocols Rakesh V S 4 th SEM M.Tech, Department of Computer Science MVJ College of Engineering Bangalore, India raki.rakesh102@gmail.com Srimathi

More information

Efficient Detection and Elimination of Vampire Attacks in Wireless Ad-Hoc Sensor Networks

Efficient Detection and Elimination of Vampire Attacks in Wireless Ad-Hoc Sensor Networks Efficient Detection and Elimination of Vampire Attacks in Wireless Ad-Hoc Sensor Networks K.Sivakumar 1, P.Murugapriya 2 II-M.TECH, Department of IT, Sasurie College of Engineering, Vijayamangalam, Tirupur,

More information

An Efficient Data-Centric Routing Approach for Wireless Sensor Networks using Edrina

An Efficient Data-Centric Routing Approach for Wireless Sensor Networks using Edrina An Efficient Data-Centric Routing Approach for Wireless Sensor Networks using Edrina Rajasekaran 1, Rashmi 2 1 Asst. Professor, Department of Electronics and Communication, St. Joseph College of Engineering,

More information

Comparative performance analysis of IEEE in WSN using NS2

Comparative performance analysis of IEEE in WSN using NS2 Int. Jour. of App. Sc. and Eng. (IJASE) 3(1) : June 2015, 13-20 2015 New Delhi Publishers. All rights reserved. DOI NO. 10.5958/2322-0465.2015.00003.9 Comparative performance analysis of IEEE 802.15.4

More information

Evaluation of Communication Overheads in Wireless Sensor Networks

Evaluation of Communication Overheads in Wireless Sensor Networks Evaluation of Communication Overheads in Wireless Sensor Networks Shiv Prasad Kori 1, Dr. R. K. Baghel 2 1 Deptt. of ECE, JIJA Mata Govt. Women Polytechnic College, Burhanpur (MP)- INDIA 2 Electronics

More information

Routing protocols in WSN

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

More information

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

Quality of Service in Wireless Sensor Networks: Issues and Challenges

Quality of Service in Wireless Sensor Networks: Issues and Challenges IOSR Journal of Computer Engineering (IOSR-JCE) ISSN: 2278-0661, ISBN: 2278-8727, PP: 45-52 www.iosrjournals.org Quality of Service in Wireless Sensor Networks: Issues and Challenges Rajkumar S. Deshpande,

More information

Microcontroller-Based Wireless Sensor Networks Prof. Kasim M. Al-Aubidy Philadelphia University

Microcontroller-Based Wireless Sensor Networks Prof. Kasim M. Al-Aubidy Philadelphia University Embedded Systems Design (0630414) Lecture 14 Microcontroller-Based Wireless Sensor Networks Prof. Kasim M. Al-Aubidy Philadelphia University Introduction: Wireless Sensor Networks (WSNs) have been identified

More information

Energy Efficient Routing Protocols in Wireless Sensor Network

Energy Efficient Routing Protocols in Wireless Sensor Network Energy Efficient Routing Protocols in Wireless Sensor Network 1 Vinesh Kumari, 2 Hakam Singh, 3 Pratibha Sharma 1 Student Mtech, CSE 4 th SEM, 2 Assistant professor, CSE, 3 Assistant professor, CSE Career

More information

References. The vision of ambient intelligence. The missing component...

References. The vision of ambient intelligence. The missing component... References Introduction 1 K. Sohraby, D. Minoli, and T. Znadi. Wireless Sensor Networks: Technology, Protocols, and Applications. John Wiley & Sons, 2007. H. Karl and A. Willig. Protocols and Architectures

More information

Wireless Sensor Networks applications and Protocols- A Review

Wireless Sensor Networks applications and Protocols- A Review Wireless Sensor Networks applications and Protocols- A Review Er. Pooja Student(M.Tech), Deptt. Of C.S.E, Geeta Institute of Management and Technology, Kurukshetra University, India ABSTRACT The design

More information

Principles of Wireless Sensor Networks

Principles of Wireless Sensor Networks Principles of Wireless Sensor Networks https://kth.instructure.com/courses/293 Lecture 1 Introduction to WSNs Carlo Fischione Associate Professor of Sensor Networks e-mail:carlofi@kth.se http://www.ee.kth.se/

More information

AN EFFICIENT MAC PROTOCOL FOR SUPPORTING QOS IN WIRELESS SENSOR NETWORKS

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

More information

A Middleware-centric Design Flow for Networked Embedded Systems

A Middleware-centric Design Flow for Networked Embedded Systems A Middleware-centric Design Flow for ed Embedded Systems F. Fummi, G. Perbellini, R. Pietrangeli, D. Quaglia University of Verona - Department of Computer Science - Strada le Grazie, 37134, Verona, Italy

More information

International Journal of Advancements in Research & Technology, Volume 2, Issue1, January ISSN

International Journal of Advancements in Research & Technology, Volume 2, Issue1, January ISSN International Journal of Advancements in Research & Technology, Volume 2, Issue1, January-2013 1 ENERGY SAVING IN WIRELESS SENSOR NETWORK USING OPTIMAL SELECTIVE FORWARDING PROTOCOL 1 Mrs. K. ARUN PRABHA

More information

Mote Design Supported with Remote Hardware Modifications Capability for Wireless Sensor Network applications

Mote Design Supported with Remote Hardware Modifications Capability for Wireless Sensor Network applications Mote Design Supported with Remote Hardware Modifications Capability for Wireless Sensor Network applications ABSTRACT Ali El Kateeb University of Michigan-Dearborn Email: elkateeb@umich.edu Many Wireless

More information

CA464 Distributed Programming

CA464 Distributed Programming 1 / 25 CA464 Distributed Programming Lecturer: Martin Crane Office: L2.51 Phone: 8974 Email: martin.crane@computing.dcu.ie WWW: http://www.computing.dcu.ie/ mcrane Course Page: "/CA464NewUpdate Textbook

More information

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems Vortex Whitepaper Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems www.adlinktech.com 2017 Table of Contents 1. Introduction........ P 3 2. Iot and

More information

Wireless Sensor Architecture GENERAL PRINCIPLES AND ARCHITECTURES FOR PUTTING SENSOR NODES TOGETHER TO

Wireless Sensor Architecture GENERAL PRINCIPLES AND ARCHITECTURES FOR PUTTING SENSOR NODES TOGETHER TO Wireless Sensor Architecture 1 GENERAL PRINCIPLES AND ARCHITECTURES FOR PUTTING SENSOR NODES TOGETHER TO FORM A MEANINGFUL NETWORK Mobile ad hoc networks Nodes talking to each other Nodes talking to some

More information

A Comparative Survey

A Comparative Survey Contemporary Engineering Sciences, Vol. 7, 2014, no. 13, 649-660 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4671 Middleware Systems for Wireless Sensor Networks: A Comparative Survey

More information

Blue3 A Programmable Remote MP3 Sensor

Blue3 A Programmable Remote MP3 Sensor Blue3 A Programmable Remote MP3 Sensor Anonymous Anon Inc. Abstract. We present the concept and the prototypical implementation of Blue3, a programmable device that features a wireless communication interface,

More information

Modeling Energy Consumption of Wireless Sensor Networks by SystemC

Modeling Energy Consumption of Wireless Sensor Networks by SystemC 2010 Fifth International Conference on Systems and Networks Communications Modeling Energy Consumption of Wireless Sensor Networks by SystemC Wan Du, Fabien Mieyeville, and David Navarro Lyon Institute

More information

A Proposed Paper on Joint Priority Based Approach for Scheduling and Congestion Control in Multipath Multi-hop WSN

A Proposed Paper on Joint Priority Based Approach for Scheduling and Congestion Control in Multipath Multi-hop WSN A Proposed Paper on Joint Priority Based Approach for Scheduling and Congestion Control in Multipath Multi-hop WSN Sweta A.Kahurke M.Tech(IV) Wireless communication & Computing G.H.Raisoni College Of Engineering

More information

Distributed Systems Principles and Paradigms. Chapter 01: Introduction. Contents. Distributed System: Definition.

Distributed Systems Principles and Paradigms. Chapter 01: Introduction. Contents. Distributed System: Definition. Distributed Systems Principles and Paradigms Maarten van Steen VU Amsterdam, Dept. Computer Science Room R4.20, steen@cs.vu.nl Chapter 01: Version: February 21, 2011 1 / 26 Contents Chapter 01: 02: Architectures

More information

What are Embedded Systems? Lecture 1 Introduction to Embedded Systems & Software

What are Embedded Systems? Lecture 1 Introduction to Embedded Systems & Software What are Embedded Systems? 1 Lecture 1 Introduction to Embedded Systems & Software Roopa Rangaswami October 9, 2002 Embedded systems are computer systems that monitor, respond to, or control an external

More information

BTnodes. Scaling it up. Networking using the BTnode Platform. Jan Beutel. Computer Engineering and Networks Laboratory

BTnodes. Scaling it up. Networking using the BTnode Platform. Jan Beutel. Computer Engineering and Networks Laboratory BTnodes Scaling it up Networking using the BTnode Platform Computer Engineering and Networks Laboratory Jan Beutel ESF Workshop 2004 Outline Wireless Sensor Networks visions and current status Example:

More information

Distributed Systems Principles and Paradigms. Chapter 01: Introduction

Distributed Systems Principles and Paradigms. Chapter 01: Introduction Distributed Systems Principles and Paradigms Maarten van Steen VU Amsterdam, Dept. Computer Science Room R4.20, steen@cs.vu.nl Chapter 01: Introduction Version: October 25, 2009 2 / 26 Contents Chapter

More information

CSC8223 Wireless Sensor Networks. Chapter 3 Network Architecture

CSC8223 Wireless Sensor Networks. Chapter 3 Network Architecture CSC8223 Wireless Sensor Networks Chapter 3 Network Architecture Goals of this chapter General principles and architectures: how to put the nodes together to form a meaningful network Design approaches:

More information

SMART VEHICLE CONTROLLED SYSTEM

SMART VEHICLE CONTROLLED SYSTEM Volume 03, Special sue. 01, March 2015 ISSN (online): 2348 7550 SMART VEHICLE CONTROLLED SYSTEM Sneha Mohan Shingate 1, Y. V. Chavan 2 1,2 Padmabhooshan Vasantdada Patil Institute Of Technology, Pune,

More information

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e Advanced Materials Research Online: 2012-12-13 ISSN: 1662-8985, Vols. 605-607, pp 2375-2378 doi:10.4028/www.scientific.net/amr.605-607.2375 2013 Trans Tech Publications, Switzerland The Design of the Sensor

More information

A Review on Improving Packet Analysis in Wireless Sensor Network using Bit Rate Classifier

A Review on Improving Packet Analysis in Wireless Sensor Network using Bit Rate Classifier Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

An IoT-Aware Architecture for Smart

An IoT-Aware Architecture for Smart An IoT-Aware Architecture for Smart Healthcare System Presented By: Amnah Allboani Abstract Smart hospital system (SHS) relies on complementary technologies specifically RFID, WSN, and smart mobile, interoperating

More information

Principles of Wireless Sensor Networks

Principles of Wireless Sensor Networks Principles of Wireless Sensor Networks https://www.kth.se/social/course/el2745/ Lecture 1 Introduction to WSNs Carlo Fischione Associate Professor of Sensor Networks e-mail:carlofi@kth.se http://www.ee.kth.se/

More information

WSN NETWORK ARCHITECTURES AND PROTOCOL STACK

WSN NETWORK ARCHITECTURES AND PROTOCOL STACK WSN NETWORK ARCHITECTURES AND PROTOCOL STACK Sensing is a technique used to gather information about a physical object or process, including the occurrence of events (i.e., changes in state such as a drop

More information

Fig. 2: Architecture of sensor node

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

More information

Network protocols and. network systems INTRODUCTION CHAPTER

Network protocols and. network systems INTRODUCTION CHAPTER CHAPTER Network protocols and 2 network systems INTRODUCTION The technical area of telecommunications and networking is a mature area of engineering that has experienced significant contributions for more

More information

2. REVIEW OF RELATED RESEARCH WORK. 2.1 Methods of Data Aggregation

2. REVIEW OF RELATED RESEARCH WORK. 2.1 Methods of Data Aggregation ata Aggregation in Wireless Sensor Networks with Minimum elay and Minimum Use of Energy: A comparative Study Bushra Qayyum Mohammed Saeed Jason Roberts Ph Student ean of Research Senior Lecturer University

More information

Ad hoc and Sensor Networks Chapter 3: Network architecture

Ad hoc and Sensor Networks Chapter 3: Network architecture Ad hoc and Sensor Networks Chapter 3: Network architecture Goals of this chapter Having looked at the individual nodes in the previous chapter, we look at general principles and architectures how to put

More information

Mobile Agent Driven Time Synchronized Energy Efficient WSN

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

More information

An Industrial Employee Development Application Protocol Using Wireless Sensor Networks

An Industrial Employee Development Application Protocol Using Wireless Sensor Networks RESEARCH ARTICLE An Industrial Employee Development Application Protocol Using Wireless Sensor Networks 1 N.Roja Ramani, 2 A.Stenila 1,2 Asst.professor, Dept.of.Computer Application, Annai Vailankanni

More information

Middleware for Wireless Sensor Networks: An Outlook

Middleware for Wireless Sensor Networks: An Outlook Middleware for Wireless Sensor Networks: An Outlook Gian Pietro Picco disi.unitn.it/~picco d3s.disi.unitn.it Department of Information Engineering & Computer Science University of Trento, Italy joint work

More information

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

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

More information

Ad hoc and Sensor Networks Chapter 3: Network architecture

Ad hoc and Sensor Networks Chapter 3: Network architecture Ad hoc and Sensor Networks Chapter 3: Network architecture Holger Karl, Andreas Willig, "Protocols and Architectures for Wireless Sensor Networks," Wiley 2005 Goals of this chapter Having looked at the

More information

Ad hoc and Sensor Networks Chapter 3: Network architecture

Ad hoc and Sensor Networks Chapter 3: Network architecture Ad hoc and Sensor Networks Chapter 3: Network architecture Holger Karl Computer Networks Group Universität Paderborn Goals of this chapter Having looked at the individual nodes in the previous chapter,

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

Performance Analysis of IEEE based Sensor Networks for Large Scale Tree Topology

Performance Analysis of IEEE based Sensor Networks for Large Scale Tree Topology Circulation in Computer Science Vol.2, No.7, pp: (9-13), August 2017 https://doi.org/10.22632/ccs-2017-252-41 Performance Analysis of IEEE 802.15.4 based Sensor Networks for Large Scale Tree Topology Ziyad

More information

An Iterative Greedy Approach Using Geographical Destination Routing In WSN

An Iterative Greedy Approach Using Geographical Destination Routing In WSN ISSN (Online) : 2319-8753 ISSN (Print) : 2347-6710 International Journal of Innovative Research in Science, Engineering and Technology Volume 3, Special Issue 3, March 2014 2014 International Conference

More information

Introduction. Distributed Systems IT332

Introduction. Distributed Systems IT332 Introduction Distributed Systems IT332 2 Outline Definition of A Distributed System Goals of Distributed Systems Types of Distributed Systems 3 Definition of A Distributed System A distributed systems

More information

Minimum Overlapping Layers and Its Variant for Prolonging Network Lifetime in PMRC-based Wireless Sensor Networks

Minimum Overlapping Layers and Its Variant for Prolonging Network Lifetime in PMRC-based Wireless Sensor Networks Minimum Overlapping Layers and Its Variant for Prolonging Network Lifetime in PMRC-based Wireless Sensor Networks Qiaoqin Li 12, Mei Yang 1, Hongyan Wang 1, Yingtao Jiang 1, Jiazhi Zeng 2 1 Department

More information

1 School of Information Science, Computer and Electrical Engineering, Halmstad University, Halmstad, Sweden

1 School of Information Science, Computer and Electrical Engineering, Halmstad University, Halmstad, Sweden Adaptable Middleware for Heterogeneous Wireless Sensor Networks Edison Pignaton Freitas1,2, Per Söderstam1, Wagner Ourique de Morais1, Carlos Eduardo Pereira2,3, and Tony Larsson1 1 School of Information

More information

Time Synchronization in Wireless Sensor Networks: CCTS

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

More information

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

An Effective Device Integration Middleware in Prison IoT

An Effective Device Integration Middleware in Prison IoT 2017 International Conference on Applied Mechanics and Mechanical Automation (AMMA 2017) ISBN: 978-1-60595-471-4 An Effective Device Integration Middleware in Prison IoT Wei WEI *, Yang LIU, Huan-huan

More information

DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN. Chapter 1. Introduction

DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN. Chapter 1. Introduction DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN Chapter 1 Introduction Definition of a Distributed System (1) A distributed system is: A collection of

More information

Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus

Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus Xu Li a, *, Chen Meng, Huixia Jiang, Cheng Wang Army Engineering University, Shijiazhuang 050003,

More information

Long Term Trends for Embedded System Design

Long Term Trends for Embedded System Design Long Term Trends for Embedded System Design Ahmed Amine JERRAYA Laboratoire TIMA, 46 Avenue Félix Viallet, 38031 Grenoble CEDEX, France Email: Ahmed.Jerraya@imag.fr Abstract. An embedded system is an application

More information

Energy Efficiency Maximization for Wireless Sensor Networks

Energy Efficiency Maximization for Wireless Sensor Networks Energy Efficiency Maximization for Wireless Sensor Networks Inwhee Joe College of Information and Communications Hanyang University Seoul, Korea iwjoe@hanyang.ac.kr Abstract. Because of the remote nature

More information

References. K. Sohraby, D. Minoli, and T. Znati. Wireless Sensor Networks: Technology, Protocols, and

References. K. Sohraby, D. Minoli, and T. Znati. Wireless Sensor Networks: Technology, Protocols, and Middleware References K. Sohraby, D. Minoli, and T. Znati. Wireless Sensor Networks: Technology, Protocols, and Applications. John Wiley & Sons, 2007. (Chapter t 8) Y. Yu, B. Krishnamachari, and V. K.

More information

Maximum Coverage Range based Sensor Node Selection Approach to Optimize in WSN

Maximum Coverage Range based Sensor Node Selection Approach to Optimize in WSN Maximum Coverage Range based Sensor Node Selection Approach to Optimize in WSN Rinku Sharma 1, Dr. Rakesh Joon 2 1 Post Graduate Scholar, 2 Assistant Professor, Department of Electronics and Communication

More information

Ultra-low power wireless sensor networks: distributed signal processing and dynamic resources management

Ultra-low power wireless sensor networks: distributed signal processing and dynamic resources management Ultra-low power wireless sensor networks: distributed signal processing and dynamic resources management Candidate: Carlo Caione Tutor: Prof. Luca Benini Compressive Sensing The issue of data gathering

More information

Active source routing for ad-hoc network: seamless integration of wireless environment

Active source routing for ad-hoc network: seamless integration of wireless environment Active source routing for ad-hoc network: seamless integration of wireless environment 1. Introduction Active networking is the emerging technology that will provide new network environment where lots

More information

Figure 1. Clustering in MANET.

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

More information

Survey: Wireless Sensor Network

Survey: Wireless Sensor Network International Journal on Data Science and Technology 2016; 2(2): 31-35 Published online February 19, 2016 (http://www.sciencepublishinggroup.com/j/ijdst) doi: 10.11648/j.ijdst.20160202.13 Survey: Wireless

More information

A Routing Technique Based on Least Delay Path for Medical Application Networks

A Routing Technique Based on Least Delay Path for Medical Application Networks Int'l Conf. Wireless Networks ICWN'16 115 A Routing Technique Based on Least Delay Path for Medical Application Networks R. Plovas 1, S. Motoyama 2 Faculdade Campo Limpo Paulista (FACCAMP), Campo Limpo

More information

The Mote Connectivity Protocol

The Mote Connectivity Protocol The Mote Connectivity Protocol Young-ri Choi, Mohamed G. Gouda, and Moon C. Kim Department of Computer Sciences The University of Texas at Austin Austin, TX 78712-0233, U.S.A. Email: {yrchoi, gouda, mckim}@cs.utexas.edu

More information

A Review Paper On The Performance Analysis Of LMPC & MPC For Energy Efficient In Underwater Sensor Networks

A Review Paper On The Performance Analysis Of LMPC & MPC For Energy Efficient In Underwater Sensor Networks www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 5 May 2015, Page No. 12171-12175 A Review Paper On The Performance Analysis Of LMPC & MPC For Energy

More information

MultiHop Routing for Delay Minimization in WSN

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

More information

Introduction to Distributed Systems (DS)

Introduction to Distributed Systems (DS) Introduction to Distributed Systems (DS) INF5040/9040 autumn 2009 lecturer: Frank Eliassen Frank Eliassen, Ifi/UiO 1 Outline What is a distributed system? Challenges and benefits of distributed system

More information

The Impact of Clustering on the Average Path Length in Wireless Sensor Networks

The Impact of Clustering on the Average Path Length in Wireless Sensor Networks The Impact of Clustering on the Average Path Length in Wireless Sensor Networks Azrina Abd Aziz Y. Ahmet Şekercioğlu Department of Electrical and Computer Systems Engineering, Monash University, Australia

More information

TOSSIM simulation of wireless sensor network serving as hardware platform for Hopfield neural net configured for max independent set

TOSSIM simulation of wireless sensor network serving as hardware platform for Hopfield neural net configured for max independent set Available online at www.sciencedirect.com Procedia Computer Science 6 (2011) 408 412 Complex Adaptive Systems, Volume 1 Cihan H. Dagli, Editor in Chief Conference Organized by Missouri University of Science

More information

Energy-Efficient Self-Organization for Wireless Sensor Networks

Energy-Efficient Self-Organization for Wireless Sensor Networks Energy-Efficient Self-Organization for Wireless Sensor Networks Thomas Watteyne CTTC, 22nd May 2007 Thomas Watteyne, PhD. candidate CITI Laboratory INRIA / INSA de Lyon France Telecom R&D Grenoble Advisor:

More information

Location Based Energy-Efficient Reliable Routing Protocol for Wireless Sensor Networks

Location Based Energy-Efficient Reliable Routing Protocol for Wireless Sensor Networks Location Based Energy-Efficient Reliable Routing Protocol for Wireless Sensor Networks RAFE ALASEM 1, AHMED REDA 2 AND MAHMUD MANSOUR 3 (1) Computer Science Department Imam Muhammad ibn Saud Islamic University

More information

Impact of Mobile Sink Speed on the Performance of Wireless Sensor Networks

Impact of Mobile Sink Speed on the Performance of Wireless Sensor Networks Journal of Information & Communication Technology Vol. 1, No. 2, (Fall 2007) 49-55 ABSTRACT This paper investigates the impact of mobile sink speed on the performance of Wireless Sensor Networks (WSNs).

More information

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

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

More information

Intel Research mote. Ralph Kling Intel Corporation Research Santa Clara, CA

Intel Research mote. Ralph Kling Intel Corporation Research Santa Clara, CA Intel Research mote Ralph Kling Intel Corporation Research Santa Clara, CA Overview Intel mote project goals Project status and direction Intel mote hardware Intel mote software Summary and outlook Intel

More information

An Energy Efficient Clustering in Wireless Sensor Networks

An Energy Efficient Clustering in Wireless Sensor Networks , pp.37-42 http://dx.doi.org/10.14257/astl.2015.95.08 An Energy Efficient Clustering in Wireless Sensor Networks Se-Jung Lim 1, Gwang-Jun Kim 1* and Daehyon Kim 2 1 Department of computer engineering,

More information

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

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

More information