WIRELESS SENSOR NETWORKS, also known as WSNs, are

Size: px
Start display at page:

Download "WIRELESS SENSOR NETWORKS, also known as WSNs, are"

Transcription

1 PAPERS OF THE E-LAB MASTER THESES Emote: A Wireless Sensor Network Monitoring Tool With Node Localization Using RSSI Nick Verbaendert, David Henderickx and Jeroen Doggen. Abstract It is a fact that Wireless Sensor Networks (WSN) have a very promising future to many applications in different areas of deployment. As we all know, many technologies find their roots in military applications. With this in mind we have been developing a test-bed application, called emote, for monitoring and visualizing a battlefield that is covered by a Wireless Sensor Network, where hurt soldiers can be tracked. This paper describes how we managed to develop this application using the open source project Octopus as a core and Crossbow s TelosB nodes as devices. We present both our theoretical and practical findings, and in particular the implementation of the localization scheme we have used. Index Terms Wireless Sensor Network, WSN, RSSI, localization, TelosB, TinyOS. 1 INTRODUCTION WIRELESS SENSOR NETWORKS, also known as WSNs, are networks consisting of a large number of small, autonomous, low-power nodes, also referred as motes, which are equipped with different types of sensors. These devices are spread around an area or space to cooperatively monitor and/or modify the state of that area. The nodes are most likely to be left without human supervision, so we can call this network a standalone network. Sensor nodes have many limitations regarding computational power, but actually their only task is to report their sensing values to a single base station or sink node which is, in most cases, connected to a PC or notebook with a lot of computational resources. This way we can put the intelligence into the software application. In the beginning, the need for Wireless Sensor Networks was motivated by military applications such as battlefield surveillance. These days, however, wireless sensor networks are more commonly used in civilian application areas such as environmental monitoring [1], disaster relief [2], home automation [3] or health care [4]. The ultimate vision for wireless sensor networks can be found in the concept of smart dust (Kahn, Kats, Pister, 1999): sensor nodes shall become so small and cheap that they can be embedded almost everywhere and could make our environment intelligent. [5] In figure 1 a typical mesh network consisting of wireless sensor nodes, routing nodes and a base station is shown whereas figure 2 shows us the basic architecture of a sensor node. In this paper we discuss our master thesis. Namely, we discuss how we developed an application that is able to monitor the environment, visualize the sensor network and localize so-called blind nodes. The devices we have used are the TelosB nodes from Crossbow Technology [6]. The paper is structured as follows. In Section 2 we define our goals for our master thesis. Section 3 describes our case study more thoroughly. In section 4 we present an overview of the application and the technologies we have used. We devote a new section, section 5, to the implementation and realization of Nick Verbaendert, David Henderickx and Jeroen Doggen (promotor) are with the University College of Antwerp, Paardenmarkt 92, 2000 Antwerp, Belgium see the localization mechanism. In section 6 we discuss our results. and, finally, section 7 concludes our paper and we describe some future challenges. Fig. 1. A typical mesh network Fig. 2. Basic architecture of a sensor node 2 GOALS The goal for this project is to create a Wireless Sensor Network with node localization using Received Signal Strength. We divide this goal into subdivisions. Deploy a wireless sensor network. Let anchor nodes cooperate with the blind nodes using a good routing protocol. Choose a good and reliable localization method. Visualizing events: when a sensor threshold is reached, an alarm is triggered and it has to be visualized onscreen.

2 2 PAPERS OF THE E-LAB MASTER THESES Create an all-in application which is able to visualize, monitor and control this type of sensor network. 3 CASE This project was built around a hypothetical case. We started from the idea that this sensor network had to be used on a battlefield where soldiers would infiltrate a certain area. Beforehand, a helicopter drops anchor nodes on the, soon to become, battlefield and gets their coordinates. Every soldier has a sensor node on him, which is connected to his body. This sensor node monitors the soldier s health situation. It reads his body temperature, pulse rate, blood pressure or even the amount of adrenaline that is released in his blood. When a soldier is wounded a certain threshold of these sensor values will be reached and the node will signal this event to the basecamp. Because one can monitor the movement of the soldier and values of the sensors using the application, a medic (or even a robot with a medical kit) can be sent directly to the soldier. This will increase the safety of the soldiers and medics as well as the efficiency of the infiltration. 4 APPLICATION OVERVIEW 4.1 Hardware For our sensor network, we made use of TelosB nodes (see figure 3) to create a tree network. Crossbow Technology manufactured this open-source platform for academic and experimental use. These nodes are IEEE compliant and have a TI MSP430 microcontroller. There is an USB interface, a 2.4GHz radio (the industrial, scientific and medical (ISM) band [7]), onboard antenna and sensors. It is possible to connect the nodes with the FCC/ARIB certified MICAz motes from Crossbow Technology in case of further development. TPR2400 is an uncertified radio platform, intended for research and lab studies. TPR2400 is fully compatible with UC Berkeley s opensource TinyOS [8] distribution Octopus Our application is built onto an existing open-source application named Octopus [10]. This application already has the ability to visualize a sensor network in a random matter. This means that the sensor nodes are displayed onscreen in random fashion. The motes are programmed so that they send messages using the CTP protocol [11] of TinyOS and are able to receive requests from the application. Using this as a base for our implementation was a very good choice Emote The overall goal of the application is to alert the user when a certain threshold is reached and specifically locate and visualize this event. As an analogy to our case: when a soldier turns on his sensor node, the onboard sensors will monitor his health condition. When a soldier is hit, his sensor will measure a value which is above or below a given threshold and there will be an event visualized by the user interface. At the base camp a user can monitor the location and situation of the soldier and send a medic immediately to the location of the wounded soldier. Thus, what is our application able to do? In the first place, it is designed to monitor the deployed sensor network, particularly, monitoring the sensor values received from the motes. TelosB motes have the possibility to mount 2 sensors on it. We can measure temperature and humidity (these are measured by the same sensor), light intensity and the remaining battery level. To obtain these sensor values we will have to address the sensors one by one. The sensors used by TelosB nodes for temperature, humidity and light intensity are respectively the Sensirion Sht11 and the Hamamatsu S1087. How this is done in nesc is irrelevant for this paper, so we won t go into this any further. All these values are sent to the base station, which is connected to a PC or laptop that runs the application. In figure 4 a screenshot is shown of the panel where all the incoming data is represented in a table. Fig. 3. TelosB mote Fig. 4. emote: Monitoring the sensor values 4.2 Software TinyOS TinyOS is a component-based operating system for wireless sensor networks. Component-based means that TinyOS applications are built with software components written in nesc. NesC is an extension to the C programming language designed to embody the structuring concepts and execution model of TinyOS [9].It is optimized for the memory limitations of sensor networks. The software components are connected with each other by using interfaces. emote, completely written in Java, reads the sensor values and saves them in a MySQL database. We have chosen for this type of database because it is fairly easy to execute SQL commands in Java and we can use this database for the development of a web based monitoring system, e.g. in PHP. Of course, an application that processes data received from external devices needs to have a built-in graphing function. The authors of Octopus have this feature already implemented but it is only able to plot some demo values. That is why, as you can see in figure 5, we added some extra features and now

3 EMOTE: WSN WITH NODE LOCALIZATION 3 the application shows us real-time graphs of all the values we receive through the base station. Fig. 6. Network Topology Fig. 5. emote: Real-time graphs of the sensor readings Events are triggered when a sensor value of a specific mote reaches its threshold. emote has a feature that can set a threshold for each sensor value for each mote. Thus, it is possible to signal a threshold reach to the user. Because we need to be able to locate a blind node we have to receive some kind of value that is related to distance. That is why we use the Received Signal Strength Indicator function of the CC2420 radio where the TelosB nodes are equipped with. Since these values are very sensitive to environmental noise we have implemented some sort of calibration process in our application. This topic, together with localization of a node, is described in section 5. To make our application usable for every kind of area, we have implemented a map import function. With this feature, one can import a specific map of an area and set the scale in real-time by drawing a line on the map and define the desired distance for this line. This can be very effective in combination with the calibration function. 4.3 Network And Protocols In wireless networks there are different kind of network topologies one can use. Figure 6 shows us three widely used topologies. Mesh Star Tree In a mesh network, each node is able to send its data through the network by simply using multiple hops. Hence the name multihop network. When one node fails, the routing is done by another node which is in the sending node s neighbourhood. In a star network all nodes are connected with a central node. When the central node is down, the network is down. In a tree network, the nodes are placed in an hierarchical order. The top level node is connected to one or more nodes of one lower level. Depending on which node is down, the network is down, or just partially. In the setup for this case we use anchor nodes, blind nodes and a base station. Every blind node is connected in a star network to the anchor nodes. The blind node is connected to the base station, forming a tree network. We choose for this setup so we can calculate the position of the blind node in respect to the anchor nodes. Because of this we had to reprogram Octopus code for the motes. There had to be a difference between an anchor node and a blind node. The anchor nodes send their packets, including their Received Signal Strength Indicator (RSSI), to the blind node and the blind node on his part has to forward the anchors messages as well as sending its own RSSI values and sensor readings to the base station. In TinyOS there is a protocol called Collection Tree Protocol (CTP). CTP is a tree-based collection protocol. A number of nodes in a network indentify themselves as tree roots. Nodes form a set of routing trees to these roots. CTP is address-free, this means that a node does not send a packet to a particular root, instead, it chooses a root by choosing a next hop. Nodes generate routes to roots using a routing gradient. By simply combining this protocol, used on the blind node, with anchors sending regular AM packets to the blind node, we are able to create a tree topology where we can choose the tree-roots ourselves, in this case the blind node. Eventually, the ultimate goal, in which we didn t manage to succeed, is to create a network where there can be an unlimited number of blind and anchor nodes working in a cooperative way without the need for hard coding the anchor nodes to send its data to the blind node. 5 LOCALIZATION 5.1 Techniques Since we use a number of nodes to create a sensor network for monitoring an environment, it is important to know which data is received from which node, but it is also important to know where this node is located in an environment. This tendency is becoming a very popular and demanding feature as this greatly improves the quality of service. To estimate the location of a blind node we need their coordinates. There are three commonly used techniques to determine the location of a node in a wireless network: Triangulation A large number of localization algorithms fall into this category. In simple terms, the triangulation method involves gathering Angle of Arrival (AoA) measurements at the sensor node from at least three sources. Then using the AoA references, simple geometric relationships and properties are applied to compute the location of the sensor node. [12] Attenuation or RSS The distance to an anchor node is measured by the received signal strength (RSS) that the other node emits. In this case we need three anchor nodes to determine the location of a blind node. Now, trilateration can be used to calculate the location.

4 4 PAPERS OF THE E-LAB MASTER THESES Propagation or TDOA A node sends a packet to another node. This packet consists of a time stamp on which it was sent. The receiving node deducts the timestamp with the time when it received the packet. 5.2 Attenuation The method we have opted for is attenuation or the Received Signal Strength (RSS) method. This technique does not require any additional hardware or software and it can be easily implemented in the TelosB motes by using the CC2420 Received Signal Strength Indicator (RSSI) function. Received Signal Strength Indication is an indication of the power in a received radio signal. TelosB motes make use of the CC2420 radio controller and with every package it sends, there is the possibility to send an RSS measurement with it. By simply using at least three nodes as anchors, we can determine the location of a fourth blind (unknown) node. We send the RSS values of the anchor nodes, in respect to the blind node, to the base station via the blind node and the base station in turn sends these values to a PC or laptop. Now we can use the RSS values in a formula (1) [13] that computes the distance related to the RSS value. Figure 7 shows us a typical way of estimating the location of a node. Once we have the desired distances, it is fairly simple to calculate a certain location. A = 2 b = (x 1 x n) (y 1 y n) (z 1 z n) (x 2 x n) (y 2 y n) (z 2 z n) (x n 1 x n) (y n 1 y n) (z n 1 z n) r 2 1 r 2 n x x 2 n y y 2 n z z 2 n r 2 2 r 2 n x x 2 n y y 2 n z z 2 n... r 2 n 1 r 2 n x 2 n 1 + x 2 n y 2 n 1 + y 2 n z 2 n 1 + z 2 n u = [ ux u y u z ] u = (A A) 1 A b (1) x i, y i and z i are the three-dimensional coordinates of the i th reference point. u x, u y and u z are the coordinates of the unknown node. r i is the RSSI value between the unknown node and the i th reference node. Fig. 7. Localization with RSSI and trilateration 5.3 Location Estimation Because we are estimating distances, we could use lateration to calculate the position like it is shown in figure 7. But this method comes along with some practical problems. RSS is very sensitive to measurement errors. It would be practical impossible to obtain just one intersection point like we presented in figure 7. That is why we will use another technique called bounding boxes [14]. Instead of using a circle to show the RSS value of an anchor node, we use squares with the same length and width as the diameter of the circles. When three squares overlap, we get a fourth square, a bounding box. In this bounding box the blind node is positioned. We set the node s position exactly in the middle of this box. In an ideal situation, one should get the exact same result as presented in figure 7. In figure 8 we illustrate the bounding box method. Fig. 8. Estimating position with the bounding box method 5.4 Computing Distance with RSSI Before we can apply the bounding box technique we need to convert RSS values to actual distances. This section explains how this is done. An electromagnetic signal is attenuated when it travels through air. As RSSI is a measurement of this signal strength, it decreases when the blind node is placed further away from an anchor node. The relationship is given by formula (2) [15]. With: RSS(d) = Π 0 10γ log d 0 [dbm] (2) Π 0 [dbm] : The RSS at distance 0 γ : The path loss exponent 0 [m] : A distance For our network we rearrange this formula to [16] With: RSS(d) = A 10n log A [dbm] : RSS at distance 1m. d [dbm] (3) 1m You can take multiple measurements at one meter around a node and take the average to get the best result. n: the path loss exponent. By rearranging the formula you can calculate: n = (A RSS) 10 log d 1m (4)

5 EMOTE: WSN WITH NODE LOCALIZATION 5 Since we know the RSS value and A, we can calculate n for each distance. 5.5 Noise and RSSI In an ideal world the signal strength would decrease linearly, but in a real environment the signal strength is influenced due to fading. Fading is caused by multipath and propagation. Objects cause the multiple paths for a signal to reflect or diffract. The receiver detects multiple copies of a same signal with another phase shift, delay or attenuation. This causes an interference that results in the amplification or attenuation of the signal strength. Slow fading The strength of the signal is changed very slowly in function of the signal delay. It can be caused due to shadowing. That is, there is signal strength loss because of things that are in the path between the transmitter and receiver. You can think of walls, desks, people, etc. Fast fading The amplitude and phase of the signal changes rapidly in function of the signal delay. Deep fading Strong destructive interference is frequently referred to as a deep fade and may result in temporary failure of communication due to a severe drop in the channel s signal-to-noise ratio. 5.6 Calibration Like we mentioned in the application overview, emote has a calibration feature. Constants A and n can be calibrated with this feature for any environment and any deployment, and the noise will be filtered out. We calibrate with a median filter to get the best results. A median filter is a non-linear digital filter that rearranges the received signal strength values from the lowest value to the highest and then takes the value in the middle of the array as the end result Calibrating n Using formula (4), n can be found. Thus, n can be calculated for each distance since we know the according signal strength and A. Again, one can use the average of these results as the value for n (see figure 10). Fig. 10. emote: Calibrating N 6 RESULTS 6.1 Antenna Limitations TelosB motes can have 2 types of antennas [17]. The first type is an internal antenna. It is a Planar Inverted Folded Antenna (PIFA), this type of antenna is mostly used in cell phones. The second one is an external SMA (SubMiniature version A) connector, which is a coaxial RF connector. In our experiments we used the internal antenna. Since the received signal strength was not the same in every direction we can conclude that the radiation of the antenna is not homogenous. In figure 11 the results are shown of the measurements when we rotated one node around its axis in respect to another node. Fig. 9. emote: Calibrating A Fig. 11. RSSI values for the rotation of one node in respect to another node at a distance of 1 meter Calibrating A When calibrating A, one should only use two nodes and place them 1 meter from each other. The next step is to perform a number of measurements at 1 meter distance from the fixed node. Then the average of these measurements can be used for A. In figure 9, a screenshot is shown illustrating the calibration of A. 6.2 Received Signal Strength Versus Environment Since radio waves are extremely sensitive to all kinds of factors, especially reflection, we did some experiments in different environments. First we did some tests on grass (roughly 5 cm in height), then we did the same tests on a concrete surface and a last test 40 cm above ground level. The goal of this experiment was to see how much RSS values would differ from each other

6 6 PAPERS OF THE E-LAB MASTER THESES Real-time Localization In emote The most difficult task was to develop a feature that could visualize the movement of a node in the network. We explained the bounding box method in the previous section. In figure 14 a screenshot is shown of emote s localization feature. As you can see, a test map is loaded into the background and all the nodes (base station, anchor nodes and blind node) are visualized. Fig. 12. RSSI values for 1 to 10 meters on grass, a concrete surface and 40 cm above surface. in these kind of situations. In figure 12 we show you a graph with our results. As you can see, the results from the last experiment, holding the motes 40 cm above ground level, differ a lot from the other two. We can conclude that this is related to reflection because in the first two experiments, the radio waves reflect on the grass and the ground itself. In [18] also tests on this subject were done. The tests showed that there was a significant difference in RSS measurements on a field of grass 6 cm in height and a field of grass 20 cm in height. Although, we had expected more variance in the results with grass, this was not the case. 6.3 Received Signal Strength Versus RF Power In TinyOS it is possible to set the RF power level of a mote. This is easily done by setting the variable CC2420 DEF RFPOWER in TinyOS to a desired value. Ranging from 0 to 31, we only tested power levels 11, 21 and 31 to see what influences they had on the received signal strength. In figure 13 we compare these results in a graph. Fig. 14. emote: Localization of the blind node 7 CONCLUSIONS AND FUTURE WORK We can conclude that using RSSI for locating a blind node is very unreliable. RSSI has too many delimiting factors such as environment, temperature, remaining battery or even the way one places nodes at each other. All of these factors cause errors one by one and thus incorrect distance calculations. We did manage to get some decent results by implementing a calibration system, a median filter, and a scaling function but still, errors occur and an exact localization system cannot be built by using RSSI. However, in our case these errors are not really a problem. If a soldier is hit, it is not of great importance that he is located with an error range of just 30 cm, even an error of 3 meters is sufficient to locate this person. Our future work consists in improving scalability of the network, a real time calibration system that constantly re-calibrates the anchor nodes and a more precise localization system. Also, we are planning to implement a web-based interface to the network. Because of the fact that all the values are saved in a MySQL database we can easily monitor the network through a PHPbased website, for example. Another challenge is to develop a mobile implementation for a PDA or cell phone. We think that the new SDK for Apple s iphone is a perfect platform to develop these kinds of applications. REFERENCES Fig. 13. RSSI values for 1 to 10 meters on a concrete surface for different power levels As expected, the lower the RF power the lower the received signal strength. One would think that setting the RF power level always to the maximum is the best solution, but this is not always the case. Setting this value has influence on the battery life. Thus, if one has deployed a multihop network for example, one can set this value much lower than the maximum, increasing your network lifetime. [1] R. Cardell-Oliver, K. Smettem, M. Kranz, and K. Mayer, Field testing a wireless sensor network for reactive environmental monitoring [soil moisture measurement], Intelligent Sensors, Sensor Networks and Information Processing Conference, Proceedings of the 2004, pp. 7 12, Dec [Online]. Available: all. jsp?arnumber= [2] G. Werner-Allen, J. Johnson, M. Ruiz, J. Lees, and M. Welsh, Monitoring volcanic eruptions with a wireless sensor network, Wireless Sensor Networks, Proceedings of the Second European Workshop on, pp , Jan.-2 Feb [Online]. Available: all. jsp?arnumber= [3] D. Gurganious, M. Hatlerand, and M. Ritter, Wsn for smart homes, ON World Inc., Tech. Rep., Feb

7 EMOTE: WSN WITH NODE LOCALIZATION 7 [4] C. R. Baker, K. Armijo, S. Belka, M. Benhabib, V. Bhargava, N. Burkhart, A. D. Minassians, G. Dervisoglu, L. Gutnik, M. B. Haick, C. Ho, M. Koplow, J. Mangold, S. Robinson, M. Rosa, M. Schwartz, C. Sims, H. Stoffregen, A. Waterbury, E. S. Leland, T. Pering, and P. K. Wright, Wireless sensor networks for home health care, Advanced Information Networking and Applications Workshops, 2007, AINAW st International Conference on, vol. 2, pp , May [5] A. Willig, Wireless sensor networks: concept, challenges and approaches, Elektrotechnik & Informationstechnik, vol. 20, p. 224, [6] [7] A. S. Tanenbaum, Computer networks. Pearson Education Benelux, [8] [9] D. Gay, P. Levis, D. Culler, and E. Brewer, nesc 1.1 Language Reference Manual, May [10] rjurdak/octopus.htm. [11] 2.x/doc/html/tep123.html. [12] A. Srinivasan and J. Wu, A Survey on Secure Localization in Wireless Sensor Networks. Auerbach Publishers Inc., 2008, p. 6. [13] C. Savarese, Robust positioning algorithms for distributed adhoc wireless sensor networks, Ph.D. dissertation, Department of Electrical Engineering and Computer Sciences, University of California at Berkeleys, [14] R. Severino and M. Alves, Engineering a search and rescue application with a wireless sensor network - based localization mechanism, World of Wireless, Mobile and Multimedia Networks, WoWMoM 2007., pp. 1 4, June [15] N. Patwari, Location estimation in sensor networks, Ph.D. dissertation, The University of Michigan, [16] G. Ottoy, A. Van Nieuwenhuyse, J.-P. Goemaere, and L. De Strycker, Indoor localisation techniques: Comparison between the use of rss and toa, Ph.D. dissertation, KaHo Sint Lieven Department Industrieel Ingenieur, [17] R. Polastre, J. Szewczyk and D. Culler, Telos: Enabling ultra-low power wireless research, Information Processing in Sensor Networks, IPSN 2005., pp , Apr [Online]. Available: all. jsp?arnumber= [18] K. Whitehouse, C. Karlof, and D. Culler, A practical evaluation of radio signal strength for ranging-based localization, SIGMOBILE Mob. Comput. Commun. Rev., vol. 11, no. 1, pp , Student 1 Nick Verbaendert is currently working on his Master Thesis after graduating as Bachelor in Applied Engineering: electronics-ict in 2007 at the University College of Antwerp. Student 2 David Henderickx is currently working on his Master Thesis after graduating as Bachelor in Applied Engineering: electronics-ict in 2007 at the University College of Antwerp.

8

Outdoor Localization System Using RSSI Measurement of Wireless Sensor Network

Outdoor Localization System Using RSSI Measurement of Wireless Sensor Network International Journal of Innovative Technology and Exploring Engineering (IJITEE) ISSN: 78-3075, Volume-, Issue-, January 013 Outdoor Localization System Using RSSI Measurement of Wireless Sensor Network

More information

REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS

REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS Varsha jaladi 1, Guthula Ganga Raja Sekhar 2, K.Raghava Rao 3 1 BTech Student, dept. of Electronics and Computers, K L University,

More information

NanoMon: An Adaptable Sensor Network Monitoring Software

NanoMon: An Adaptable Sensor Network Monitoring Software NanoMon: An Adaptable Sensor Network Monitoring Software Misun Yu, Haeyong Kim, and Pyeongsoo Mah Embedded S/W Research Division Electronics and Telecommunications Research Institute (ETRI) Gajeong-dong

More information

Motion Sensing without Sensors: Information. Harvesting from Signal Strength Measurements

Motion Sensing without Sensors: Information. Harvesting from Signal Strength Measurements Motion Sensing without Sensors: Information Harvesting from Signal Strength Measurements D. Puccinelli and M. Haenggi Department of Electrical Engineering University of Notre Dame Notre Dame, Indiana,

More information

Propsim enabled Mobile Ad-hoc Network Testing

Propsim enabled Mobile Ad-hoc Network Testing www.anite.com Propsim enabled Mobile Ad-hoc Network Testing Anite is now part of Keysight Technologies Lab-based, end-to-end performance testing of systems using Propsim MANET channel emulation A Mobile

More information

RF Coverage Validation and Prediction with GPS Technology

RF Coverage Validation and Prediction with GPS Technology RF Coverage Validation and Prediction with GPS Technology By: Jin Yu Berkeley Varitronics Systems, Inc. 255 Liberty Street Metuchen, NJ 08840 It has taken many years for wireless engineers to tame wireless

More information

Multipath fading in wireless sensor mote

Multipath fading in wireless sensor mote Multipath fading in wireless sensor mote Vaishali M.Tech (VLSI), IMSEC, Ghaziabad/MTU, Noida Abstract: In this paper we study about the new technology as to transfer the data with the help of smart device,

More information

Demystifying Wireless for Real-World Measurement Applications

Demystifying Wireless for Real-World Measurement Applications Proceedings of the IMAC-XXVIII February 1 4, 2010, Jacksonville, Florida USA 2010 Society for Experimental Mechanics Inc. Demystifying Wireless for Real-World Measurement Applications Kurt Veggeberg, Business,

More information

BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS

BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS Review of the Air Force Academy No 2 (24) 2013 BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS Marian ALEXANDRU, Vlad URSU Transilvania University of Brasov, Romania Abstract: A study of how to implement

More information

HomeReACT a Tool for Real-time Indoor Environmental Monitoring

HomeReACT a Tool for Real-time Indoor Environmental Monitoring HomeReACT a Tool for Real-time Indoor Environmental Monitoring Tessa Daniel, Elena Gaura, James Brusey Cogent Computing Applied Research Centre Faculty of Engineering and Computing Coventry University,

More information

WIRELESS INSTRUMENTATION TECHNOLOGY

WIRELESS INSTRUMENTATION TECHNOLOGY BS&B WIRELESS, L.L.C. BS&B WIRELESS, L.L.C. WIRELESS INSTRUMENTATION TECHNOLOGY Printed February 2004 BS&B WIRELESS, L.L.C. 7422-B East 46th Place, Tulsa, OK74145 Phone: 918-622-5950 Fax: 918-665-3904

More information

INTRODUCTION TO WIRELESS SENSOR NETWORKS. Marco Zennaro, ICTP Trieste-Italy

INTRODUCTION TO WIRELESS SENSOR NETWORKS. Marco Zennaro, ICTP Trieste-Italy INTRODUCTION TO WIRELESS SENSOR NETWORKS Marco Zennaro, ICTP Trieste-Italy Wireless sensor networks A Wireless Sensor Network is a self-configuring network of small sensor nodes communicating among themselves

More information

is the power reference: Specifically, power in db is represented by the following equation, where P0 P db = 10 log 10

is the power reference: Specifically, power in db is represented by the following equation, where P0 P db = 10 log 10 RF Basics - Part 1 This is the first article in the multi-part series on RF Basics. We start the series by reviewing some basic RF concepts: Decibels (db), Antenna Gain, Free-space RF Propagation, RF Attenuation,

More information

Research Article ISSN 2277 9140 Copyright by the authors - Licensee IJACIT- Under Creative Commons license 3.0

Research Article ISSN 2277 9140 Copyright by the authors - Licensee IJACIT- Under Creative Commons license 3.0 INTERNATIONAL JOURNAL OF ADVANCES IN COMPUTING AND INFORMATION TECHNOLOGY An international, online, open access, peer reviewed journal Volume 2 Issue 2 April 2013 Research Article ISSN 2277 9140 Copyright

More information

communication over wireless link handling mobile user who changes point of attachment to network

communication over wireless link handling mobile user who changes point of attachment to network Wireless Networks Background: # wireless (mobile) phone subscribers now exceeds # wired phone subscribers! computer nets: laptops, palmtops, PDAs, Internet-enabled phone promise anytime untethered Internet

More information

Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee

Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee Ramanathan.P ECE-DEPT Pallavan College of Engineering Thimmasamudram, Kanchipuram-631502 Tamilnadu, India

More information

Outdoor Propagation Prediction in Wireless Local Area Network (WLAN)

Outdoor Propagation Prediction in Wireless Local Area Network (WLAN) Outdoor Propagation Prediction in Wireless Local Area Network (WLAN) Akpado K.A 1, Oguejiofor O.S 1, Abe Adewale 2, Femijemilohun O.J 2 1 Department of Electronic and Computer Engineering, Nnamdi Azikiwe

More information

A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification

A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification Sheng-Cong Hu [email protected] Jen-Hou Liu [email protected] Min-Sheng

More information

Using Received Signal Strength Indicator to Detect Node Replacement and Replication Attacks in Wireless Sensor Networks

Using Received Signal Strength Indicator to Detect Node Replacement and Replication Attacks in Wireless Sensor Networks Using Received Signal Strength Indicator to Detect Node Replacement and Replication Attacks in Wireless Sensor Networks Sajid Hussain* and Md Shafayat Rahman Jodrey School of Computer Science, Acadia University

More information

Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2

Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2 Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2 1 PG Student (M. Tech), Dept. of ECE, Chirala Engineering College, Chirala., A.P, India. 2 Assistant Professor, Dept.

More information

STRUCTURAL HEALTH MONITORING AT ROME UNDERGROUND, ROMA, ITALY

STRUCTURAL HEALTH MONITORING AT ROME UNDERGROUND, ROMA, ITALY Ref: WhP_Rome_vA STRUCTURAL HEALTH MONITORING AT ROME UNDERGROUND, ROMA, ITALY WHITE PAPER Summary: This white paper shows how Structural Health Monitoring (SHM), helps to improve the quality in the construction

More information

MOTEWORKS. Key Features. Overview

MOTEWORKS. Key Features. Overview MOTEWORKS SOFTWARE PLATFORM MoteWorks 2.0 provides a complete software development environment for wireless sensor network applications. Included is a collection of flexible software packages that enables

More information

Mobile Tracking and Resource Reservation Scheme for Cellular Networks

Mobile Tracking and Resource Reservation Scheme for Cellular Networks Mobile Tracking and Resource Reservation Scheme for Cellular Networks Subbiah Shenbagaraman, B. Prabhakaran, S. Venkatesan Department of Computer Science, University of Texas at Dallas, Richardson, USA,

More information

You will need the following pieces of equipment to complete this experiment:

You will need the following pieces of equipment to complete this experiment: UNIVERSITY OF TORONTO FACULTY OF APPLIED SCIENCE AND ENGINEERING The Edward S. Rogers Sr. Department of Electrical and Computer Engineering ECE422H1S: RADIO AND MICROWAVE WIRELESS SYSTEMS EXPERIMENT 3:

More information

EE4367 Telecom. Switching & Transmission. Prof. Murat Torlak

EE4367 Telecom. Switching & Transmission. Prof. Murat Torlak Path Loss Radio Wave Propagation The wireless radio channel puts fundamental limitations to the performance of wireless communications systems Radio channels are extremely random, and are not easily analyzed

More information

High-Frequency Distributed Sensing for Structure Monitoring

High-Frequency Distributed Sensing for Structure Monitoring High-Frequency Distributed Sensing for Structure Monitoring K. Mechitov, W. Kim, G. Agha and T. Nagayama* Department of Computer Science, University of Illinois at Urbana-Champaign 201 N. Goodwin Ave.,

More information

Cellular Wireless Antennas

Cellular Wireless Antennas Cellular Wireless Antennas A Technical Brief GarrettCom Inc., November 2010 Overview The Cellular Wireless Antenna Technical brief is provided to assist with the design and deployment of the DX940 Cellular

More information

Indoor Location Tracking using Received Signal Strength Indicator

Indoor Location Tracking using Received Signal Strength Indicator Indoor Location Tracking using Received Signal Strength Indicator 9 11 X Indoor Location Tracking using Received Signal Strength Indicator Chuan-Chin Pu 1, Chuan-Hsian Pu, and Hoon-Jae Lee 3 1 Sunway University

More information

USB 3.0* Radio Frequency Interference Impact on 2.4 GHz Wireless Devices

USB 3.0* Radio Frequency Interference Impact on 2.4 GHz Wireless Devices USB 3.0* Radio Frequency Interference Impact on 2.4 GHz Wireless Devices White Paper April 2012 Document: 327216-001 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

Antenna Deployment Technical Brief

Antenna Deployment Technical Brief ProCurve Networking Antenna Deployment Technical Brief Introduction... 2 Antenna types... 2 Omni directional antennas... 2 Directional antennas... 2 Diversity antennas... 3 High gain directional antennas...

More information

Using Received Signal Strength Variation for Surveillance In Residential Areas

Using Received Signal Strength Variation for Surveillance In Residential Areas Using Received Signal Strength Variation for Surveillance In Residential Areas Sajid Hussain, Richard Peters, and Daniel L. Silver Jodrey School of Computer Science, Acadia University, Wolfville, Canada.

More information

International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 ISSN 2278-7763

International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 ISSN 2278-7763 International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 Management of Wireless sensor networks using cloud technology Dipankar Mishra, Department of Electronics,

More information

XBee Wireless Sensor Networks for Temperature Monitoring

XBee Wireless Sensor Networks for Temperature Monitoring XBee Wireless Sensor Networks for Temperature Monitoring Vongsagon Boonsawat, Jurarat Ekchamanonta, Kulwadee Bumrungkhet, and Somsak Kittipiyakul School of Information, Computer, and Communication Technology

More information

An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks

An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks Ayon Chakraborty 1, Swarup Kumar Mitra 2, and M.K. Naskar 3 1 Department of CSE, Jadavpur University, Kolkata, India 2 Department of

More information

Design and Performance Analysis of Building Monitoring System with Wireless Sensor Networks

Design and Performance Analysis of Building Monitoring System with Wireless Sensor Networks Design and Performance Analysis of Building Monitoring System with Wireless Sensor Networks Mohammed A. Abdala & Alaa Mohammed Salih Department of Networks, College of Information Engineering, University

More information

Antennas & Propagation. CS 6710 Spring 2010 Rajmohan Rajaraman

Antennas & Propagation. CS 6710 Spring 2010 Rajmohan Rajaraman Antennas & Propagation CS 6710 Spring 2010 Rajmohan Rajaraman Introduction An antenna is an electrical conductor or system of conductors o Transmission - radiates electromagnetic energy into space o Reception

More information

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES SWATHI NANDURI * ZAHOOR-UL-HUQ * Master of Technology, Associate Professor, G. Pulla Reddy Engineering College, G. Pulla Reddy Engineering

More information

Introduction to Wireless Sensors Networks (WSN)

Introduction to Wireless Sensors Networks (WSN) Introduction to Wireless Sensors Networks (WSN) Hossein Mamaghanian Embedded Systems Laboratory (ESL), Laboratory of Signal Processing (LTS2) EPFL, Switzerland ICT Summer School Fiuggi, Italy July 9 th,

More information

Effective Communication in Schools of Submersibles

Effective Communication in Schools of Submersibles Oceans 06, Singapore (authors manuscript do not distribute) Effective Communication in Schools of Submersibles Felix Schill & Uwe R. Zimmer Research School of Information Sciences and Engineering Autonomous

More information

A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS

A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS Sumanta Saha, Md. Safiqul Islam, Md. Sakhawat Hossen School of Information and Communication Technology The Royal Institute of Technology (KTH) Stockholm,

More information

SmartDiagnostics Application Note Wireless Interference

SmartDiagnostics Application Note Wireless Interference SmartDiagnostics Application Note Wireless Interference Publication Date: May 27, 2015 KCF Technologies, Inc. Background The SmartDiagnostics wireless network is an easy to install, end-to-end machine

More information

Wireless Sensor Network apply for the Blind U-bus System

Wireless Sensor Network apply for the Blind U-bus System Wireless Sensor Network apply for the Blind U-bus System Trung Pham Quoc 1, Min Chul Kim 1, Hyn Kwan Lee 2, Ki Hwan Eom 1 Electronic Engineering 1Dongguk University: 26, Pil-dong 3-ga jung-gu Seol, Korea

More information

Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry

Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry July 2014 Introduction Trying to find your way around a large hospital or locating a high-value medical device such as

More information

Logging of RF Power Measurements

Logging of RF Power Measurements Logging of RF Power Measurements By Orwill Hawkins Logging of measurement data is critical for effective trend, drift and Exploring the use of RF event analysis of various processes. For RF power measurements,

More information

Instruction Manual Service Program ULTRA-PROG-IR

Instruction Manual Service Program ULTRA-PROG-IR Instruction Manual Service Program ULTRA-PROG-IR Parameterizing Software for Ultrasonic Sensors with Infrared Interface Contents 1 Installation of the Software ULTRA-PROG-IR... 4 1.1 System Requirements...

More information

Performance Evaluation of Large-Scale Wireless Sensor Networks Communication Protocols that can be Integrated in a Smart City

Performance Evaluation of Large-Scale Wireless Sensor Networks Communication Protocols that can be Integrated in a Smart City Performance Evaluation of Large-Scale Wireless Sensor Networks Communication Protocols that can be Integrated in a Smart City A. Lavric 1, V. Popa 2 PhD.,Computers, Department of Electronics and Automation,

More information

DAG based In-Network Aggregation for Sensor Network Monitoring

DAG based In-Network Aggregation for Sensor Network Monitoring DAG based In-Network Aggregation for Sensor Network Monitoring Shinji Motegi, Kiyohito Yoshihara and Hiroki Horiuchi KDDI R&D Laboratories Inc. {motegi, yosshy, hr-horiuchi}@kddilabs.jp Abstract Wireless

More information

Easy-Flow: Comparing and integrating Wireless and PLC Medium Access Control Protocols.

Easy-Flow: Comparing and integrating Wireless and PLC Medium Access Control Protocols. 1 LCA Easy-Flow: Comparing and integrating Wireless and PLC Medium Access Control Protocols. Christina Vlachou, Julien Herzen, Patrick Thiran (EPFL) Marc Sommer, Hervé Dedieu (HEIG-VD) Gérôme Bovet, Jean

More information

Iknaia Asset and Personnel Tracking Management System for the Construction Industry

Iknaia Asset and Personnel Tracking Management System for the Construction Industry Iknaia Asset and Personnel Tracking Management System for the Construction Industry Introduction The UK construction industry accounts for over 7%* of the UK s Gross Domestic Product and employs over two

More information

Ad hoc and Sensor Networks Chapter 1: Motivation & Applications

Ad hoc and Sensor Networks Chapter 1: Motivation & Applications Ad hoc and Sensor Networks Chapter 1: Motivation & Applications Holger Karl Computer Networks Group Universität Paderborn Goals of this chapter Give an understanding what ad hoc & sensor networks are good

More information

Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network

Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network Xinjian Xiang College of Automation & Electrical Engineering, Zhejiang University of Science and Technology, Zhejiang,

More information

Experiences in positioning and sensor network applications with Ultra Wide Band technology

Experiences in positioning and sensor network applications with Ultra Wide Band technology Experiences in positioning and sensor network applications with Ultra Wide Band technology WAMS LANGATTOMUUDESTA UUTTA BISNESTÄ Timo Lehikoinen VTT Technical Research Centre of Finland 10/14/2013 2 Contents

More information

OPTIMIZED SENSOR NODES BY FAULT NODE RECOVERY ALGORITHM

OPTIMIZED SENSOR NODES BY FAULT NODE RECOVERY ALGORITHM OPTIMIZED SENSOR NODES BY FAULT NODE RECOVERY ALGORITHM S. Sofia 1, M.Varghese 2 1 Student, Department of CSE, IJCET 2 Professor, Department of CSE, IJCET Abstract This paper proposes fault node recovery

More information

A Study on Intelligent Video Security Surveillance System with Active Tracking Technology in Multiple Objects Environment

A Study on Intelligent Video Security Surveillance System with Active Tracking Technology in Multiple Objects Environment Vol. 6, No., April, 01 A Stud on Intelligent Video Securit Surveillance Sstem with Active Tracking Technolog in Multiple Objects Environment Juhun Park 1, Jeonghun Choi 1, 1, Moungheum Park, Sukwon Hong

More information

Municipal Mesh Network Design

Municipal Mesh Network Design White Paper Municipal Mesh Network Design Author: Maen Artimy 1 Summary This document provides a wireless mesh network design for the downtown area of the Town of Wolfville, Nova Scotia. This design serves

More information

Remote Home Security System Based on Wireless Sensor Network Using NS2

Remote Home Security System Based on Wireless Sensor Network Using NS2 Remote Home Security System Based on Wireless Sensor Network Using NS2 #Rajesh Banala 1, Asst.Professor,E-mail: [email protected] #D.Upender 2, Asst.Professor, E mail: [email protected] #Department

More information

Omni Antenna vs. Directional Antenna

Omni Antenna vs. Directional Antenna Omni Antenna vs. Directional Antenna Document ID: 82068 Contents Introduction Prerequisites Requirements Components Used Conventions Basic Definitions and Antenna Concepts Indoor Effects Omni Antenna Pros

More information

Protocols and Architectures for Wireless Sensor Netwoks. by Holger Karl and Andreas Willig

Protocols and Architectures for Wireless Sensor Netwoks. by Holger Karl and Andreas Willig Protocols and Architectures for Wireless Sensor Netwoks by Holger Karl and Andreas Willig Grade Midterm Exam. 25% Exercises 35% (5 ~ 7 times) Term Project 30% Class Attitude 10% 2 Ad hoc and Sensor Networks

More information

Figure 1. The Example of ZigBee AODV Algorithm

Figure 1. The Example of ZigBee AODV Algorithm TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.2, February 2014, pp. 1528 ~ 1535 DOI: http://dx.doi.org/10.11591/telkomnika.v12i2.3576 1528 Improving ZigBee AODV Mesh Routing Algorithm

More information

HOME ALARM MONITORING NETWORK GOH SWEE TIAN

HOME ALARM MONITORING NETWORK GOH SWEE TIAN iv HOME ALARM MONITORING NETWORK GOH SWEE TIAN This thesis is submitted as partial fulfillment of the requirements for the award of the Bachelor of Electrical Engineering (Hons.) (Electronics) Faculty

More information

Energy Efficiency of Wireless Sensor Networks

Energy Efficiency of Wireless Sensor Networks Microwave & RF, Olivier Berder, 20/03/14 1 / 23 Energy Efficiency of Wireless Sensor Networks O. BERDER, M. GAUTIER, O. SENTIEYS, A. CARER ENSSAT, Université de Rennes1 INRIA/IRISA EPC CAIRN March 20,

More information

MANUAL FOR RX700 LR and NR

MANUAL FOR RX700 LR and NR MANUAL FOR RX700 LR and NR 2013, November 11 Revision/ updates Date, updates, and person Revision 1.2 03-12-2013, By Patrick M Affected pages, ETC ALL Content Revision/ updates... 1 Preface... 2 Technical

More information

Surveillance System Using Wireless Sensor Networks

Surveillance System Using Wireless Sensor Networks Surveillance System Using Wireless Sensor Networks Dan Nguyen, Leo Chang Computer Engineering, Santa Clara University Santa Clara, California, USA [email protected] [email protected] Abstract The

More information

1 Lecture Notes 1 Interference Limited System, Cellular. Systems Introduction, Power and Path Loss

1 Lecture Notes 1 Interference Limited System, Cellular. Systems Introduction, Power and Path Loss ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2015 1 Lecture Notes 1 Interference Limited System, Cellular Systems Introduction, Power and Path Loss Reading: Mol 1, 2, 3.3, Patwari

More information

Load Balancing in Periodic Wireless Sensor Networks for Lifetime Maximisation

Load Balancing in Periodic Wireless Sensor Networks for Lifetime Maximisation Load Balancing in Periodic Wireless Sensor Networks for Lifetime Maximisation Anthony Kleerekoper 2nd year PhD Multi-Service Networks 2011 The Energy Hole Problem Uniform distribution of motes Regular,

More information

AN1200.04. Application Note: FCC Regulations for ISM Band Devices: 902-928 MHz. FCC Regulations for ISM Band Devices: 902-928 MHz

AN1200.04. Application Note: FCC Regulations for ISM Band Devices: 902-928 MHz. FCC Regulations for ISM Band Devices: 902-928 MHz AN1200.04 Application Note: FCC Regulations for ISM Band Devices: Copyright Semtech 2006 1 of 15 www.semtech.com 1 Table of Contents 1 Table of Contents...2 1.1 Index of Figures...2 1.2 Index of Tables...2

More information

Characterizing Wireless Network Performance

Characterizing Wireless Network Performance Characterizing Wireless Network Performance Ruckus Wireless Black Paper Accurate performance testing for wireless networks requires understanding how to test for worst case scenarios As expensive and inconvenient

More information

Deliberant.com, 2011. Technology review

Deliberant.com, 2011. Technology review Technology review 11N advantages Parameter 802.11a/g 802.11n 2x2 Improvement factor Data rate, Mbps 108 300 2.7x Max throughput, h t Mbps 45 150 3.3x3 Spectral efficiency, bit/hz 1.125 3.75 3.3x Signal

More information

This Antenna Basics reference guide includes basic information about antenna types, how antennas work, gain, and some installation examples.

This Antenna Basics reference guide includes basic information about antenna types, how antennas work, gain, and some installation examples. Antenna Basics This Antenna Basics reference guide includes basic information about antenna types, how antennas work, gain, and some installation examples. What Do Antennas Do? Antennas transmit radio

More information

Mobile Phone Tracking & Positioning Techniques

Mobile Phone Tracking & Positioning Techniques Mobile Phone Tracking & Positioning Techniques Laxmana Siridhara Arigela #1, Putta Aditya Veerendra *2, Simhadri Anvesh *2, Kolisetty Sandeep Satya Hanuman #3 1 Assistant Professor, Department of ECE,

More information

ÇANKAYA ÜNİVERSİTESİ ECE 491 SENIOR PROJECT I 11111 ERDİNÇ YILMAZ 200614038

ÇANKAYA ÜNİVERSİTESİ ECE 491 SENIOR PROJECT I 11111 ERDİNÇ YILMAZ 200614038 ÇANKAYA ÜNİVERSİTESİ ECE 491 SENIOR PROJECT I 11111 200614038 1 Project Name : Sensor Network System Project company : ROBUTEL Contact : www.robutel.com Project instructor : Yrd. Doç. Dr. Orhan GAZİ Contact

More information

Minimum-Hop Load-Balancing Graph Routing Algorithm for Wireless HART

Minimum-Hop Load-Balancing Graph Routing Algorithm for Wireless HART Minimum-Hop Load-Balancing Graph Routing Algorithm for Wireless HART Abdul Aziz Memon and Seung Ho Hong Abstract In this paper load-balancing routing algorithm for WirelessHART standard is proposed. WirelessHART

More information

Outline. Application examples. Infrastructure-based limits? Infrastructure-based wireless networks. Possible applications

Outline. Application examples. Infrastructure-based limits? Infrastructure-based wireless networks. Possible applications Outline TDDI13 Distributed embedded software and networks Infrastructure for wireless (Mobile) ad hoc networks Wireless sensor networks Comparison of mobile nets and WSN WSN Enabling technology 36 pages

More information

Online Communication of Critical Parameters in Powerplant Using ZIGBEE

Online Communication of Critical Parameters in Powerplant Using ZIGBEE International Journal of Engineering Science Invention Volume 2 Issue 2 ǁ February. 2013 Online Communication of Critical Parameters in Powerplant Using ZIGBEE D.Santhiya 1, R.Renita Priyatharshini 2,K.C.Dhivya

More information

Technologies Supporting Smart Meter Networks

Technologies Supporting Smart Meter Networks Technologies Supporting Smart Meter Networks Isamu Kitagawa Shinichi Sekiguchi The power crisis that Japan confronted in the wake of the Great East Japan Earthquake in 2011 underscored the need for managing

More information

Physical Layer Research Trends for 5G

Physical Layer Research Trends for 5G Physical Layer Research Trends for 5G Brett T. Walkenhorst, Ph.D. Principal Research Engineer, Georgia Tech Research Institute Adjunct Professor, Georgia Tech, School of Electrical and Computer Engineering

More information

Christian Bettstetter. Mobility Modeling, Connectivity, and Adaptive Clustering in Ad Hoc Networks

Christian Bettstetter. Mobility Modeling, Connectivity, and Adaptive Clustering in Ad Hoc Networks Christian Bettstetter Mobility Modeling, Connectivity, and Adaptive Clustering in Ad Hoc Networks Contents 1 Introduction 1 2 Ad Hoc Networking: Principles, Applications, and Research Issues 5 2.1 Fundamental

More information

ZigBee Propagation for Smart Metering Networks

ZigBee Propagation for Smart Metering Networks ZigBee Propagation for Smart Metering Networks The UK government requires energy suppliers to take all reasonable steps to deploy smart meters in customer residences in Great Britain by 2019, with the

More information

CDMA Performance under Fading Channel

CDMA Performance under Fading Channel CDMA Performance under Fading Channel Ashwini Dyahadray 05307901 Under the guidance of: Prof Girish P Saraph Department of Electrical Engineering Overview Wireless channel fading characteristics Large

More information

Experiment Measurements for Packet Reception Rate in Wireless Underground Sensor Networks

Experiment Measurements for Packet Reception Rate in Wireless Underground Sensor Networks International Journal of Recent Trends in Engineering, Vol, No., November 009 Experiment Measurements for Packet Reception Rate in Wireless Underground Sensor Networks Adel Ali Ahmed 1, Norsheila Fisal

More information

Water Quality Monitoring System Using Zigbee Based Wireless Sensor Network

Water Quality Monitoring System Using Zigbee Based Wireless Sensor Network 24 Water Quality Monitoring System Using Zigbee Based Wireless Sensor Network Zulhani Rasin Faculty of Electrical Engineering Universiti Teknikal Malaysia Melaka (UTeM) Melaka, Malaysia Email: [email protected]

More information

ANDROID APPLICATION DEVELOPMENT FOR ENVIRONMENT MONITORING USING SMART PHONES

ANDROID APPLICATION DEVELOPMENT FOR ENVIRONMENT MONITORING USING SMART PHONES ANDROID APPLICATION DEVELOPMENT FOR ENVIRONMENT MONITORING USING SMART PHONES ABSTRACT K. Krishnakanth 1 and P. Kavipriya 2 1 M.E Embedded Systems, Sathyabama University, Chennai, India. [email protected]

More information

Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates

Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates Jack Driscoll, Jack Hamm & Nick Hennigar, PID Analyzers, LLC, 780 Corporate Park Dr. Pembroke, MA 0239 Pat Hogan,

More information

Avaya WLAN 9100 External Antennas for use with the WAO-9122 Access Point

Avaya WLAN 9100 External Antennas for use with the WAO-9122 Access Point Avaya WLAN 9100 External Antennas for use with the WAO-9122 Access Point Overview To optimize the overall performance of a WLAN in an outdoor deployment it is important to understand how to maximize coverage

More information

Frequency Hopping Spread Spectrum (FHSS) vs. Direct Sequence Spread Spectrum (DSSS) in Broadband Wireless Access (BWA) and Wireless LAN (WLAN)

Frequency Hopping Spread Spectrum (FHSS) vs. Direct Sequence Spread Spectrum (DSSS) in Broadband Wireless Access (BWA) and Wireless LAN (WLAN) FHSS vs. DSSS page 1 of 16 Frequency Hopping Spread Spectrum (FHSS) vs. Direct Sequence Spread Spectrum (DSSS) in Broadband Wireless Access (BWA) and Wireless LAN (WLAN) by Sorin M. SCHWARTZ Scope In 1997

More information

A Surveillance Robot with Climbing Capabilities for Home Security

A Surveillance Robot with Climbing Capabilities for Home Security Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 2, Issue. 11, November 2013,

More information

LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS

LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS Saranya.S 1, Menakambal.S 2 1 M.E., Embedded System Technologies, Nandha Engineering College (Autonomous), (India)

More information

Location management Need Frequency Location updating

Location management Need Frequency Location updating Lecture-16 Mobility Management Location management Need Frequency Location updating Fig 3.10 Location management in cellular network Mobility Management Paging messages Different paging schemes Transmission

More information

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities Dr. William Kao Agenda Introduction - Sensors, Actuators, Transducers Sensor Types, Classification Wireless Sensor Networks

More information

Monitoring Software using Sun Spots. Corey Andalora February 19, 2008

Monitoring Software using Sun Spots. Corey Andalora February 19, 2008 Monitoring Software using Sun Spots Corey Andalora February 19, 2008 Abstract Sun has developed small devices named Spots designed to provide developers familiar with the Java programming language a platform

More information

Congestion Control in WSN using Cluster and Adaptive Load Balanced Routing Protocol

Congestion Control in WSN using Cluster and Adaptive Load Balanced Routing Protocol Congestion Control in WSN using Cluster and Adaptive Load Balanced Routing Protocol Monu Rani 1, Kiran Gupta 2, Arvind Sharma 3 1 M.Tech (Student), 2 Assistant Professor, 3 Assistant Professor Department

More information

RT-QoS for Wireless ad-hoc Networks of Embedded Systems

RT-QoS for Wireless ad-hoc Networks of Embedded Systems RT-QoS for Wireless ad-hoc Networks of Embedded Systems Marco accamo University of Illinois Urbana-hampaign 1 Outline Wireless RT-QoS: important MA attributes and faced challenges Some new ideas and results

More information