SlideShare una empresa de Scribd logo
1 de 53
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 1
 Introduction
 The Mica Mote
 Sensing and Communication Range
 Design Issues
 Challenges
 Energy Consumption
 Clustering of Sensors
 Regularly placed sensors
 Heterogeneous WSNs
 Mobile Sensors
 Applications
 Habitat Monitoring
 A Remote Ecological Micro-Sensor Network
 Environmental Monitoring
 Drinking Water Quality
 Disaster Relief Management
 Soil Moisture Monitoring
 Health Care Monitoring
 Building, Bridge and Structural Monitoring
 Smart Energy and Home/Office Applications
 DARPA Efforts towards Wireless Sensor Networks
 Body Area Network
 Conclusions and Future Directions
Table of
Contents
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 2
Introduction
 Wireless Sensor Networks can be considered as a special case of ad hoc
networks with reduced or no mobility
 WSNs enable reliable monitoring and analysis of unknown and untested
environments
 These networks are “data centric”, i.e., unlike traditional ad hoc networks
where data is requested from a specific node, data is requested based on
certain attributes such as, “which area has temperature over 35ºC or
95ºF”
 A sensor has many functional components as shown in Figure 8.1
 A typical sensor consists of a transducer to sense a given physical
quantity, an embedded processor, small memory and a wireless
transceiver to transmit or receive data and an attached battery
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 3
Transceiver
Embedded
Processor
Battery
Transceiver
10Kbps-1Mbps 50-125m range
Embedded
Processor
Sensor
Transducer
Battery
Memory
(3K-1Mb)
A/D
Converter
(8 bit 4-8Mhz)
Functional Components: A
Sensor
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 4
The Mica
Mote The Mica Mote is a comprehensive sensor node developed by
University of California at Berkeley and marketed by
Crossbow
 It uses an Atmel Atmega 103 microcontroller running at 4
MHz, with a radio operating at the 916 MHz frequency band
with bidirectional communication at 40 kbps when energized
with a pair of AA batteries
 Mica Board is stacked to the processor board via the 51 pin
extension connector to provide temperature, photo resistor,
barometer, humidity, and thermopile sensors
 To conserve energy, later designs include an A/D Converter
and an 8x8 power switch on the sensor board
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 5
The Mica Mote
Mica Motes-2 Mica Board
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 6
Sensing and Communication Range
A wireless sensor network (WSN) consists of a large number of
sensor nodes (SNs)
Adequate density of sensors is required so as to void any
unsensed area
rs
Sensing Area
Desired
Coverage
Area
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 7
Sensing and Communication Range
If N SNs are put in an area A, then the SNs density can
be given by N/A
The sensing range of each sensor is rs
To cover the whole space, adjacent SNs need to be located
at most at a distance of 2rs from each other
If the SNs are uniformly distributed with the node density
of , the probability that there are m SNs within the space
of S is Poisson distributed as
where space for two dimensional spaces
This gives the probability that the monitored space is not
covered by any SN and hence the probability pcover of the
coverage by at least one SN is:
λ
S
m
e
m
S
mP λλ −
=
!
)(
)(
2
srS π=
S
er ePp λ−
−=−= 1)0(1cov
λ
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 8
Sensing and Communication Range
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 9
rs
SN1
Sensing area
for SN1
rc
SN2
rs
Sensing area
for SN2
Sensing and Communication
Range
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 10
Sensing and Communication
Range
 Transmission between adjacent SNs is feasible if there is at
least one SN within the communication range of each SN
 Not just the sensing coverage, but the communication
connectivity is equally important
 The wireless communication coverage of a sensor must be at
least twice the sensing distance
 Data from a single SN is not adequate to make any useful
decision and need to be collected from a set of SNs
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 11
Design Issues: Advantages of
WSNs
 Ease of deployment – Can be dropped from a plane or placed in a factory,
without any prior organization, thus reducing the installation cost and
time, and increasing the flexibility of deployment
 Extended range – One huge wired sensor (macro-sensor) can be replaced
by many smaller wireless sensors for the same cost
 Fault tolerant – With wireless sensors, failure of one node does not affect
the network operation
 Mobility – Since these wireless sensors are equipped with battery, they can
possess limited mobility (e.g., if placed on robots)
 Disadvatage: The wireless medium has a few inherent limitations such as
low bandwidth, error prone transmissions, and potential collisions in
channel access, etc.
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 12
Design Issues
Traditional routing protocols defined for MANETs are not well suited
for wireless sensor networks due to the following reasons:
 Wireless sensor networks are “data centric”, where data is requested
based on particular criteria such as “which area has temperature
35ºC”
 In traditional wired and wireless networks, each node is given a
unique identification and cannot be effectively used in sensor networks
 Adjacent nodes may have similar data and rather than sending data
separately from each sensor node, it is desirable to aggregate similar
data before sending it
 The requirements of the network change with the application and
hence, it is application-specific
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 13
Desirable Features
 Attribute-based addressing: This is typically employed in
sensor networks where addresses are composed of a group of
attribute-value pairs
 Location awareness: Since most data collection is based on
location, it is desirable that the nodes know their position
 The sensors should react immediately to drastic changes in
their environment
 Query Handling: Users should be able to request data from
the network through some base station (also known as a sink)
or through any of the nodes, whichever is closer
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 14
Design Issues : Challenges
 Routing protocol design is heavily influenced by many challenging
factors
 These challenges can be summarized as follows:
 Ad hoc deployment – Sensor nodes are randomly deployed so
that they form connections between the nodes
 Computational capabilities – Sensor nodes have limited
computing power and therefore may run simple versions of
routing protocols
 Energy consumption without losing accuracy – Sensor nodes
can use up their limited energy supply carrying out
computations and transmitting information
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 15
Design Issues : Challenges
 Scalability – The number of sensor nodes deployed in the sensing
area may be in the order of hundreds, thousands, or more and
routing scheme must be scalable enough to respond to events
 Communication range – The bandwidth of the wireless links
connecting sensor nodes is often limited, hence constraining inter-
sensor communication
 Fault tolerance – Some sensor nodes may fail or be blocked due to
lack of power, physical damage, or environmental interference
 Connectivity – High node density in sensor networks precludes
them from being completely isolated from each other
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 16
Design Issues : Challenges
 Transmission media –Communicating nodes are linked by a wireless
medium and traditional problems associated with a wireless channel
(e.g., fading, high error rate) also affect the operation
 QoS – In some applications (e.g., some military applications), the data
should be delivered within a certain period of time from the moment it
is sensed
 Control Overhead – When the number of retransmissions in wireless
medium increases due to collisions, the latency and energy
consumption also increases
 Security –Besides physical security, both authentication and
encryption should be feasible while complex algorithm needs to be
avoided
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 17
Energy Consumption
 Minimizing the energy consumption of WSs is critical yet a challenge for
the design of WSNs
 Energy consumption in WSN involves three different components:
 Sensing Transducer
 A/D Converter (sensor consumes only 3.1 , in 31 pJ/8-bit
sample at 1Volt supply, standby power consumption at 1V supply is
41pW, the lower bound on energy per sample is roughly Emin=
CtotalVref
2
, where Ctotal is total capacitance of the array, and Vref is
input voltage
 Transmission Energy, transmission energy transmits a k-bit
message to distance d can be computed as:
ETx(k,d)=ETx-elec(k)+ETx-amp(k,d)=Eelec*k+*k*d 2
, where
ETx-elec is the transmission electronics energy consumption, ETx-amp is
the transmit amplifier energy consumption, example values: ETx-
elec=ERx-elec=Eelec=50nJ/bit, =100pJ/bit/m2
 Receiver Energy, ERx(k)=ERx-elec(k)=Eelec*k
 Computing/Processing Unit, Eswitch=CtotalVdd
2
 In order to conserve energy, we may make some SNs go to sleep mode and
need to consider energy consumed in that state
 Sensing transducer is responsible for capturing the physical parameters
Wµ
ampε
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 18
Energy Consumption : Clustering
of SNs
 Clustering of SNs not only allows aggregation of sensed data, but limits
data transmission primarily within the cluster
 The sequence starts with discovery of neighboring SNs by sending periodic
Beacon Signals, determining close by SNs with some intermediate SNs,
forming clusters and selecting cluster head (CH) for each cluster
 So, the real question is how to group adjacent SNs, and how many groups
should be there that could optimize some performance parameter
 One approach is to partition the WSN into clusters such that all members
of the clusters are directly connected to the CH
 One such example for randomly deployed SNs
 SNs in a WSN in a cluster, can transmit directly to the CH without any
intermediate SN
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 19
Energy Consumption : Clustering
of SNs
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 20
Clustering of Sensors
 Data from SNs belonging to a single cluster can be combined together in an
intelligent way (aggregation) using local transmissions
 This can not only reduce the global data to be transferred and localized most
traffic to within each individual cluster
 A lot of research gone into testing coverage of areas by k-sensors clustering
adjacent SNs and defining the size of the cluster so that the cluster heads (CHs)
can communicate and get data from their own cluster members
 If each cluster is covered by more than one subset of SNs all the time, then some
of the SNs can be put into sleep mode so as to conserve energy while keeping full
coverage
 The use of a second smaller radio has been suggested for waking up the sleeping
sensor, thereby conserving the power of main wireless transmitter
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 21
Clustering of Sensors:
Predetermined Grid v/s Random
Placement
Regularly placed sensors
 A simple strategy is to place the sensors in the form of two-
dimensional grid as such cross-point and such configuration
may be very useful for uniform coverage
 Such symmetric placement allows best possible regular
coverage and easy clustering of the close-by SNs
 Three such examples of SNs in rectangular, triangular and
hexagonal tiles of clusters are shown
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 22
Regularly Placed Sensors
 Clusters of size 5x5, with a SN located at each intersection of lines
 Square, triangle, or hexagonal placement of the SNs also dictates the
minimum sensing area that need to be covered by each sensor
Useful for deploying in a controlled environment
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 23
 Detailed views of three different configurations, are shown in next three slides
 For simplicity of calculation, the sensing area covered by rectangular placement is taken
rectangular, while sensing are by the two configurations are assumed hexagonal and
triangular respectively
 The required number of SNs in each scheme, is given in Table 8.2
 Radio transmission distance between adjacent SNs need to be such that the sensors can
receive data from adjacent sensors using wireless radio
 Clustering can be done for these configurations and the size of each cluster can be fixed as
per application requirements
 If the sensing and radio transmission ranges are set to the minimum value, then all the
SNs need to be active all the time to cover the area and function properly
 If these ranges are increased, then each sub-region can be covered by more than one
sensor node and selected SNs can be allowed to go to sleep mode
Regularly placed sensors
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 24
Triangular Placed Sensors
2
4
3
r
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 25
Hexagonal Placed Sensors
2
4
33
r
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 26
Regularly Placed Sensors
2
4
33
r
2
4
3
r
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 27
Hexagon
Triangular
Rectangular
Total sensing area
covered by N-Sensors
Sensing Area to be
covered by each sensor
Distance Between
Adjacent Sensors
Placement
Hexagon
Triangular
Rectangular
Total sensing area
covered by N-Sensors
Sensing Area to be
covered by each sensor
Distance Between
Adjacent Sensors
Placement
Placement of Sensors and Covered
Sensing Area
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 28
Randomly distributed sensors
 The sensors could also be used in an unknown territory or inaccessible area by
deploying them from a low flying airplane or unmanned ground/aerial vehicle
 SNs have to find themselves who their communicating neighbors are and how
many of them are present
 The adjacency among SNs can be initially determined by sending bacon
signals as is done in a typical ad hoc network (MANET)
 The communication range of associated wireless radio should be such that the
SNs could be connected together to form a WSN
 Distribution of the SNs and their sensing range would also determine if the
physical parameter in the complete deployed area can be sensed by at least one
SN
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 29
Randomly Distributed Sensors
 The sensing and communication ranges required in a randomly placed
sensor are governed by the maximum distance to be covered by any one of
the sensors in the given area
 If the N-nodes are uniformly distributed in an area A=LxL, then the node
density can be given by
 The probability that there are m nodes within the area S, is Poisson
distributed and can be given by :
 The probability that the monitored area or space is 1-covered, can be
expressed as :
 In many situations, an event need to be sensed by at least k close-by
sensors for a cooperative decision (such as relative location using
triangulation), then concurrent sensing by k SNs can be given by
 One way to determine the area to be covered by each SN is to form a
Voronoi diagram and one such example is shown in Figure 8.10
 The basic idea is to partition the area in to a set of convex polygons such that
all polygons edges are equidistant from neighboring sensors
 A simplistic approach is to let each sensor at least sense the area covered by
its surrounding polygon and maximum distance to be covered by a SN in a
polygon will govern the required sensing area
 Similarly, minimum wireless transmission range can be determined by the
maximum distance between any pair of adjacent sensors
AN /=λ
S
m
e
m
S
mP λλ −
=
!
)(
)(
)0(1cov1 Pp ered −=−
S
e λ−
−=1
∑∑
−
=
−
−
=
− −=−=
1
0
1
0
cov
!
)(
1)(1
k
m
S
mk
m
eredk e
m
S
mPp λλ
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 30
Randomly Distributed
Sensors: Voronoi
diagram
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 31
Heterogeneous WSNs
 With constant sensing and transmission range for all SNs, WSNs are also
known as homogeneous WSNs
 This makes the design simpler and easier to manage
 In some situations, when a new version of SNs are deployed to cover
additional area, or some of the existing SNs are replaced by new ones for
extended life or precision, then sensing and/or communication range and/or
computing power may also depend on the sensor type or version
 Use of sensors with different sensing and/or communication and/or
computation capabilities leads to a heterogeneous WSN which is helpful for
performing additional functionalities or be given much more responsibilities
 One such example is shown in Figure 8.11
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 32
Heterogeneous WSNs
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 33
Mobile Sensors
 The enhancements in the field of robotics are paving the way for industrial
robots to be applied to a wider range of tasks
 However, harnessing their full efficiency also depends on how accurately
they understand their environment
 Thus, as sensor networks are the primary choice for environmental sensing,
combining sensor networks with mobile robots is a natural and very
promising application
 Robots could play a major role of high-speed resource carriers in defense
and military applications where human time and life is very precious
 Other applications include fire fighting, autonomous waste disposal
 Thus, we see that there are a number of future applications where sensors
and robots could work together through some form of cooperation
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 34
Mobile Sensors
 Sensors detect events autonomously and the mobile robots could take appropriate
actions based on the nature of the event
 Coordination between the mobile robots is obviously critical in achieving better
resource distribution and information retrieval
 Mobile sensor Networks have been suggested to cover the area not reachable by static
sensors
 Coordination between multiple robots for resource transportation has been explored
for quite some time now
 Transporting various types of resources for different applications like defense,
manufacturing process, and so on, has been suggested
 In these schemes, time taken to detect an event depends entirely on the trail followed by
the robots
 Though the path progressively gets better with the use of an ant-like type of algorithm,
the whole process has to be started anew when the position of the event changes
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 35
Mobile Sensors
 In terrains where human ingress is difficult, mobile robots can be used to imitate
the human’s chore
 Typical resource-carrying robots are depicted in Figure 8.12 which depicts a
possible means of a robot transferring its resources to anothers
 Once depleted of their resource, they may get themselves refilled from the sink
 The resource in demand could be water or sand (to extinguish fire), oxygen
supply, medicines, bullets, clothes or chemicals to neutralize hazardous wastes, and
so on
 The target region that is in need of these resources is sometimes called an event
location
 Whether it is a sensor or another robot within collision distance, it is considered an
obstacle and the robot proceeds in a direction away from it
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 36
Mobile Sensors
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 37
Applications
 Thousands of sensors over strategic locations are used in a structure such as
an automobile or an airplane, so that conditions can be constantly monitored
both from the inside and the outside and a real-time warning can be issued
whenever a major problem is forthcoming in the monitored entity
 These wired sensors are large (and expensive) to cover as much area is
desirable
 Each of these need a continuous power supply and communicates their data to
the end-user using a wired network
 The organization of such a network should be pre-planned to find strategic
position to place these nodes and then should be installed appropriately
 The failure of a single node might bring down the whole network or leave that
region completely un-monitored
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 38
Applications
 Unattendability and some degree of fault tolerance in these networks are
desirable in those applications where the sensors may be embedded in the
structure or places in an inhospitable terrain and could be inaccessible for any
service
 Undoubtedly, wireless sensor networks have been conceived with military
applications in mind, including battlefield surveillance and tracking of enemy
activities
 However, civil applications considerably outnumber the military ones and are
applicable to many practical situations
 Judging by the interest shown by military, academia, and the media,
innumerable applications do exist for sensor networks
 Examples include weather monitoring, security and tactical surveillance,
distributed computing, fault detection and diagnosis in machinery, large
bridges and tall structures, detecting ambient conditions such as temperature,
movement, sound, light, radiation, vibration, smoke, gases, or the presence of
certain biological and chemical objects
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 39
Applications
 Under the civil category, envisioned applications can be classified into
environment observation and forecast system, habitat monitoring equipment
and human health, large structures and other commercial applications
Habitat Monitoring
 A prototype test bed consisting of iPAQs (i.e., a type of handheld device) has
been built to evaluate the performance of these target classification and
localization methods
 As expected, energy efficiency is one of the design goals at every level:
hardware, local processing (compressing, filtering, etc.), MAC and topology
control, data aggregation, data-centric routing and storage
 Preprocessing is proposed in for habitat monitoring applications, where it is
argued that the tiered network in GDI is solely used for communication
 The proposed 2-tier network architecture consists of micro nodes and macro
nodes, wherein the micro nodes perform local filtering and data to significantly
reduce the amount of data transmitted to macro nodes
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 40
Applications The Grand Duck
Island Monitoring Network
 Researchers from the University of California at Berkeley (UCB) and Intel
Research Laboratory deployed in August 2002 a mote-based tiered sensor
network in Great Duck Island (GDI), Maine, aimed at monitoring the behavior of
storm petrel
 The overall system architecture is depicted in Figure 8.13
 A total of 32 motes have been placed in the area to be sensed grouped into
sensor patches to transmit sensed data to a gateway which is responsible for
forwarding the information from the sensor patch to a remote base station
through a local transit network
 The base station then provides data logging and replicates the data every 15
minutes to a database in Berkeley over a satellite link
 Remote users can access the replica database server in Berkeley, while local
users make use of a small PDA-size device to perform local interactions such
as adjusting the sampling rates, power management parameters, etc.
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 41
Transit Network
Base station
Gateway
Patch
Network
Base-Remote Link
Data Service
Internet
Client Data Browsing and
Processing
Sensor Node
The Grand Duck Island Monitoring Networ
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 42
Applications: Remote
Ecological Micro-Sensor
Network PODS is a research project undertaken at the University of Hawaii that has
built a wireless network of environmental sensors to investigate why
endangered species of plants will grow in one area but not in neighboring areas
 They deployed camouflaged sensor nodes, (called PODS), in the Hawaii
Volcanoes National Park
 The PODS consist of a computer, radio transceiver and environmental sensors,
sometimes including a high resolution digital camera, relaying sensed data via
wireless link back to the Internet
 Bluetooth and 802.11b are chosen as the MAC layer, while data packets are
delivered through the IP
 In PODS, energy efficiency is identified as one of the design goals and an ad
hoc routing protocols called Multi-Path On-demand Routing (MOR) has been
developed
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 43
Applications: Remote
Ecological Micro-Sensor
Network Weather data are collected every ten minutes and image data are collected
once per hour
 Users employ the Internet to access the data from a server in University of
Hawaii at Manoa
 The placement strategy for the sensor nodes is then investigated
 Topologies of 1-dimensional and 2-dimensional regions such as triangle tile,
square tile, hexagon tile, ring, star, and linear are discussed
 The sensor placement strategy evaluation is based on three goals: resilience to
single point of failure, the area of interest has to be covered by at lease one
sensor, and minimum number of nodes
 Finally, it is found that the choice of placement depends on d and r
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 44
Environmental Monitoring
Application
 Sensors to monitor landfill and the air quality
 Household solid waste and non-hazardous industrial waste such as
construction debris and sewer sludge are being disposed off by using over 6000
landfills in USA and associated organic components undergo biological and
chemical reaction such as fermentation, biodegradation and oxidation-
reduction
 This causes harmful gases like methane, carbon dioxide, nitrogen, sulfide
compounds and ammonia to be produced and migration of gases in the landfill
causes physical reactions which eventually lead to ozone gases, a primary air
pollutant and an irritant to our respiratory systems
 The current method of monitoring landfill employs periodic drilling of
collection well, collecting gas samples in airtight bags and analyze off-site,
making the process very time consuming
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 45
Environmental Monitoring
ApplicationThe idea is to interface gas sensors with custom-made devices and wireless
radio and transmit sensed data for further analysis
 Deployment of a large number of sensors allows real-time monitoring of gases
being emitted by the waste material or from industrial spills
Place a large number of sensors throughout the area of interest and
appropriate type of sensors can be placed according to the type of pollutant
anticipated in a given area
 A large volume of raw data from sensors, can be collected, processed and
efficiently retrieval
 A generic set up of a WSN, has been covered and various associated issues have
been clearly pointed out
 The scheme can be easily used and adopted for other applications as well
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 46
Environment Observation
and Forecasting System
 The Environment Observation and Forecasting System (EOFS) is a distributed
system that spans large geographic areas and monitors, models and forecasts
physical processes such as environmental pollution, flooding, among others
 Usually, it consists of three components: sensor stations, a distribution
network, and a centralized processing farm
 Some of the characteristics of EOFS are:
 Centralized processing: The environment model is computationally very
intensive and runs on a central server and process data gathered from the
sensor network
 High data volume: For example, nautical X-band radar can generate
megabytes of data per second
 QoS sensitivity: This defines the utility of the data and there is an
engineering trade-off between QoS and energy constraint
 Extensibility
 Autonomous operation
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 47
Drinking Water Quality
 A sensor based monitoring system with emphasis on placement and utilization
of in situ sensing technologies and doing spatial-temporal data mining for
water-quality monitoring and modeling
 The main objective is to develop data-mining techniques to water-quality
databases and use them for interpreting and using environmental data
 This also helps in controlling addition of chlorine to the treated water before
releasing to the distribution system
 Detailed implementation of a bio-sensor for incoming wastewater treatment
has been discussed
 A pilot-scale and full scale system has also been described
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 48
Disaster Relief Management
and Soil Moisture Monitoring
 Novel sensor network architecture has been proposed in that could be useful
for major disasters including earthquakes, storms, floods, fires and terrorist
attacks
 The SNs are deployed randomly at homes, offices and other places prior to the
disaster and data collecting nodes communicate with database server for a
given sub area which are in-turn linked to a central database for continuous
update
Soil Moisture Monitoring
 A soil moisture monitoring scheme using sensors, over a one hectare outdoor
area and various performance parameters measured from an actual system
 A custom made moisture sensor is interfaced with Mica-2 Mote wireless board
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 49
Health Care Monitoring
 Telemonitoring of human physiological data, tracking and monitoring of
doctors and patients inside a hospital, drug administrator in hospitals, …
 An example: Artificial retina developed within the Smart Sensors and
Integrated Microsystems (SSIM) project
 A retina prosthesis chip consisting of one hundred microsensors are built and
implanted within the human eye, allowing patients with no vision or limited
vision to see at an acceptable level
 Wireless communication is required to suit the need for feedback control,
image identification and validation
 The communication pattern is deterministic and periodic like a TDMA scheme
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 50
Building, Bridge and
Structural Monitoring
 Projects have explored the use of sensors in monitoring the health of buildings,
bridges and highways
 A Bluetooth based scatternet has been proposed to monitor stress, vibration,
temperature, humidity etc. in civil infrastructures
 Simulation results are given to justify effectiveness of their solution by having
a set of rectangular Bluetooth equipped sensor grids to model a portion of
bridge span
 Fiber optic based sensors have been proposed for monitoring crack openings
in concrete bridge decks, of strain and corrosion of the reinforcement in
concrete structures
 Corrosion of steel bars is measured by using special super glue and angular
strain sensors
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 51
Smart Energy and
Home/Office Applications
 Societal-scale sensor networks can greatly improve the efficiency of energy-
provision chain, which consists of three components: the energy-generation,
distribution, and consumption infrastructure
 It has been reported that 1% load reduction due to demand response can lead
to a 10% reduction in wholesale prices, while a 5% load response can cut the
wholesale price in half
DARPA Efforts towards Wireless Sensor Networks
 The DARPA has identified networked micro sensors technology as a key
application for the future
 On the battlefield of the future, a networked system of smart, inexpensive and
plentiful microsensors, combining multiple sensor types, embedded
processors, positioning ability and wireless communication, will pervade the
environment and provide commanders and soldiers alike with heightened
situation awareness
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 52
Body Area Network
 Specialized sensors and transducers are being developed to measure human
body characterizing parameters
 There has been increased interest in the biomedical area and numerous
proposals have recently been introduced
 Micro sensor array is used for artificial retina, glucose level monitoring, organ
monitors, cancer detectors and general health monitoring
 A wearable computing network has been suggested to remotely monitor the
progress of a physical therapy done at home and an initial prototype has been
developed using electroluminescent strips indicating the range of human
body’s motion
 An indoor/outdoor wearable navigation system has been suggested for blind
and visually impaired people through vocal interfaces about surrounding
environment and changing the mode from indoor to outdoor and vice-versa
using simple vocal command
Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 53
 Sensor networks are perhaps one of the fastest growing areas in the broad
wireless ad hoc networking field
 As we could see throughout this chapter, the research in sensor networks is
flourishing at a rapid pace and still there are many challenges to be addressed
such as:
 Energy Conservation - Nodes are battery powered with limited resources
while still having to perform basic functions such as sensing, transmission
and routing
 Sensing - Many new sensor transducers are being developed to convert
physical quantity to equivalent electrical signal and many new
development is anticipated
 Communication - Sensor networks are very bandwidth-limited and how to
optimize the use of the scarce resources and how can sensor nodes
minimize the amount of communication
 Computation - Here, there are many open issues in what regards signal
processing algorithms and network protocols
Conclusions and Future
Directions

Más contenido relacionado

La actualidad más candente

Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Chandra Meena
 
SENSOR NETWORK PLATFORMS AND TOOLS
SENSOR NETWORK PLATFORMS AND TOOLSSENSOR NETWORK PLATFORMS AND TOOLS
SENSOR NETWORK PLATFORMS AND TOOLSjuno susi
 
Energy consumption of wsn
Energy consumption of wsnEnergy consumption of wsn
Energy consumption of wsnDeepaDasarathan
 
Lecture 11 14. Adhoc routing protocols cont..
Lecture 11 14. Adhoc  routing protocols cont..Lecture 11 14. Adhoc  routing protocols cont..
Lecture 11 14. Adhoc routing protocols cont..Chandra Meena
 
Adhoc and Sensor Networks - Chapter 02
Adhoc and Sensor Networks - Chapter 02Adhoc and Sensor Networks - Chapter 02
Adhoc and Sensor Networks - Chapter 02Ali Habeeb
 
Security issues and attacks in wireless sensor networks
Security issues and attacks in wireless sensor networksSecurity issues and attacks in wireless sensor networks
Security issues and attacks in wireless sensor networksMd Waresul Islam
 
Wireless Sensor Network Routing Protocols
Wireless Sensor Network Routing ProtocolsWireless Sensor Network Routing Protocols
Wireless Sensor Network Routing ProtocolsVirendra Thakur
 
CS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSCS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSKathirvel Ayyaswamy
 
CS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSCS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSKathirvel Ayyaswamy
 
Multiple Access in wireless communication
Multiple Access in wireless communicationMultiple Access in wireless communication
Multiple Access in wireless communicationMaulik Togadiya
 
Adhoc and Sensor Networks - Chapter 11
Adhoc and Sensor Networks - Chapter 11Adhoc and Sensor Networks - Chapter 11
Adhoc and Sensor Networks - Chapter 11Ali Habeeb
 
wireless sensor network ppt
wireless sensor network pptwireless sensor network ppt
wireless sensor network pptPramod Kuruvatti
 
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...ArunChokkalingam
 
Lecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsLecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsChandra Meena
 
Traffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolTraffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolGaurav Chauhan
 
WSN-Routing Protocols Energy Efficient Routing
WSN-Routing Protocols Energy Efficient RoutingWSN-Routing Protocols Energy Efficient Routing
WSN-Routing Protocols Energy Efficient RoutingArunChokkalingam
 
Adhoc networks notes by divya (rnsit)
Adhoc networks notes by divya (rnsit)Adhoc networks notes by divya (rnsit)
Adhoc networks notes by divya (rnsit)Vivek Maurya
 

La actualidad más candente (20)

Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc
 
SENSOR NETWORK PLATFORMS AND TOOLS
SENSOR NETWORK PLATFORMS AND TOOLSSENSOR NETWORK PLATFORMS AND TOOLS
SENSOR NETWORK PLATFORMS AND TOOLS
 
Energy consumption of wsn
Energy consumption of wsnEnergy consumption of wsn
Energy consumption of wsn
 
Routing Protocols in WSN
Routing Protocols in WSNRouting Protocols in WSN
Routing Protocols in WSN
 
Lecture 11 14. Adhoc routing protocols cont..
Lecture 11 14. Adhoc  routing protocols cont..Lecture 11 14. Adhoc  routing protocols cont..
Lecture 11 14. Adhoc routing protocols cont..
 
Adhoc and Sensor Networks - Chapter 02
Adhoc and Sensor Networks - Chapter 02Adhoc and Sensor Networks - Chapter 02
Adhoc and Sensor Networks - Chapter 02
 
Security issues and attacks in wireless sensor networks
Security issues and attacks in wireless sensor networksSecurity issues and attacks in wireless sensor networks
Security issues and attacks in wireless sensor networks
 
Wireless Sensor Network Routing Protocols
Wireless Sensor Network Routing ProtocolsWireless Sensor Network Routing Protocols
Wireless Sensor Network Routing Protocols
 
CS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSCS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKS
 
CS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKSCS6003 AD HOC AND SENSOR NETWORKS
CS6003 AD HOC AND SENSOR NETWORKS
 
Multiple Access in wireless communication
Multiple Access in wireless communicationMultiple Access in wireless communication
Multiple Access in wireless communication
 
Wsn 08
Wsn 08Wsn 08
Wsn 08
 
Adhoc and Sensor Networks - Chapter 11
Adhoc and Sensor Networks - Chapter 11Adhoc and Sensor Networks - Chapter 11
Adhoc and Sensor Networks - Chapter 11
 
wireless sensor network ppt
wireless sensor network pptwireless sensor network ppt
wireless sensor network ppt
 
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
 
Lecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsLecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocols
 
Routing
RoutingRouting
Routing
 
Traffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolTraffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access Protocol
 
WSN-Routing Protocols Energy Efficient Routing
WSN-Routing Protocols Energy Efficient RoutingWSN-Routing Protocols Energy Efficient Routing
WSN-Routing Protocols Energy Efficient Routing
 
Adhoc networks notes by divya (rnsit)
Adhoc networks notes by divya (rnsit)Adhoc networks notes by divya (rnsit)
Adhoc networks notes by divya (rnsit)
 

Destacado

Anonymous Connections And Onion Routing
Anonymous Connections And Onion RoutingAnonymous Connections And Onion Routing
Anonymous Connections And Onion RoutingAli Habeeb
 
Adhoc and Sensor Networks - Chapter 07
Adhoc and Sensor Networks - Chapter 07Adhoc and Sensor Networks - Chapter 07
Adhoc and Sensor Networks - Chapter 07Ali Habeeb
 
Adhoc and Sensor Networks - Chapter 04
Adhoc and Sensor Networks - Chapter 04Adhoc and Sensor Networks - Chapter 04
Adhoc and Sensor Networks - Chapter 04Ali Habeeb
 
Adhoc and Sensor Networks - Chapter 05
Adhoc and Sensor Networks - Chapter 05Adhoc and Sensor Networks - Chapter 05
Adhoc and Sensor Networks - Chapter 05Ali Habeeb
 
Basics of Wireless sensor networks
Basics of Wireless sensor networksBasics of Wireless sensor networks
Basics of Wireless sensor networksRushin Shah
 
TEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkTEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkVolker Hirsch
 

Destacado (6)

Anonymous Connections And Onion Routing
Anonymous Connections And Onion RoutingAnonymous Connections And Onion Routing
Anonymous Connections And Onion Routing
 
Adhoc and Sensor Networks - Chapter 07
Adhoc and Sensor Networks - Chapter 07Adhoc and Sensor Networks - Chapter 07
Adhoc and Sensor Networks - Chapter 07
 
Adhoc and Sensor Networks - Chapter 04
Adhoc and Sensor Networks - Chapter 04Adhoc and Sensor Networks - Chapter 04
Adhoc and Sensor Networks - Chapter 04
 
Adhoc and Sensor Networks - Chapter 05
Adhoc and Sensor Networks - Chapter 05Adhoc and Sensor Networks - Chapter 05
Adhoc and Sensor Networks - Chapter 05
 
Basics of Wireless sensor networks
Basics of Wireless sensor networksBasics of Wireless sensor networks
Basics of Wireless sensor networks
 
TEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkTEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of Work
 

Similar a Adhoc and Sensor Networks - Chapter 08

WIRELESS SENSOR NETWORKS
WIRELESS SENSOR NETWORKSWIRELESS SENSOR NETWORKS
WIRELESS SENSOR NETWORKSnanocdac
 
A Review Paper on Energy Capable Routing in Wireless Sensor Network
A Review Paper on Energy Capable Routing in Wireless Sensor NetworkA Review Paper on Energy Capable Routing in Wireless Sensor Network
A Review Paper on Energy Capable Routing in Wireless Sensor Networkijtsrd
 
Data retrieval in sensor networks
Data retrieval in sensor networksData retrieval in sensor networks
Data retrieval in sensor networksAcad
 
De3211001104
De3211001104De3211001104
De3211001104IJMER
 
Sensor networks a survey
Sensor networks a surveySensor networks a survey
Sensor networks a surveywsnapple
 
Spread Spectrum Based Energy Efficient Wireless Sensor Networks
Spread Spectrum Based Energy Efficient Wireless Sensor NetworksSpread Spectrum Based Energy Efficient Wireless Sensor Networks
Spread Spectrum Based Energy Efficient Wireless Sensor NetworksIDES Editor
 
7_adhoc and wireless network (1).ppt
7_adhoc and wireless network (1).ppt7_adhoc and wireless network (1).ppt
7_adhoc and wireless network (1).pptleonalmessibd21
 
Wireless sensor network
Wireless sensor networkWireless sensor network
Wireless sensor networkNeha Kulkarni
 
On-chip ESD protection for LNA
On-chip ESD protection for LNAOn-chip ESD protection for LNA
On-chip ESD protection for LNASofics
 
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...IJTET Journal
 
WSN_Chapter _1.pptx
WSN_Chapter _1.pptxWSN_Chapter _1.pptx
WSN_Chapter _1.pptxKamakshiMB1
 
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...Editor IJMTER
 
Wireless Sensor Networks
Wireless Sensor NetworksWireless Sensor Networks
Wireless Sensor NetworksJerry Yoakum
 

Similar a Adhoc and Sensor Networks - Chapter 08 (20)

WIRELESS SENSOR NETWORKS
WIRELESS SENSOR NETWORKSWIRELESS SENSOR NETWORKS
WIRELESS SENSOR NETWORKS
 
A Review Paper on Energy Capable Routing in Wireless Sensor Network
A Review Paper on Energy Capable Routing in Wireless Sensor NetworkA Review Paper on Energy Capable Routing in Wireless Sensor Network
A Review Paper on Energy Capable Routing in Wireless Sensor Network
 
Data retrieval in sensor networks
Data retrieval in sensor networksData retrieval in sensor networks
Data retrieval in sensor networks
 
Chapter
ChapterChapter
Chapter
 
Ijetr021229
Ijetr021229Ijetr021229
Ijetr021229
 
Ijetr021229
Ijetr021229Ijetr021229
Ijetr021229
 
De3211001104
De3211001104De3211001104
De3211001104
 
Sensor networks a survey
Sensor networks a surveySensor networks a survey
Sensor networks a survey
 
wireless sensor network
wireless sensor networkwireless sensor network
wireless sensor network
 
Spread Spectrum Based Energy Efficient Wireless Sensor Networks
Spread Spectrum Based Energy Efficient Wireless Sensor NetworksSpread Spectrum Based Energy Efficient Wireless Sensor Networks
Spread Spectrum Based Energy Efficient Wireless Sensor Networks
 
7_adhoc and wireless network (1).ppt
7_adhoc and wireless network (1).ppt7_adhoc and wireless network (1).ppt
7_adhoc and wireless network (1).ppt
 
Wireless sensor network
Wireless sensor networkWireless sensor network
Wireless sensor network
 
On-chip ESD protection for LNA
On-chip ESD protection for LNAOn-chip ESD protection for LNA
On-chip ESD protection for LNA
 
Gm3411871190
Gm3411871190Gm3411871190
Gm3411871190
 
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...
Node Failure Prevention by Using Energy Efficient Routing In Wireless Sensor ...
 
WSN_Chapter _1.pptx
WSN_Chapter _1.pptxWSN_Chapter _1.pptx
WSN_Chapter _1.pptx
 
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...
Performance Analysis of Fault Detection in Round Trip Delay and Path Wireless...
 
Wireless Sensor Networks
Wireless Sensor NetworksWireless Sensor Networks
Wireless Sensor Networks
 
Wireless sensor networks
Wireless sensor networksWireless sensor networks
Wireless sensor networks
 
Unit 2-basic wireless sensor
Unit 2-basic wireless sensorUnit 2-basic wireless sensor
Unit 2-basic wireless sensor
 

Más de Ali Habeeb

Opinion Mining
Opinion MiningOpinion Mining
Opinion MiningAli Habeeb
 
Cloud Security
Cloud SecurityCloud Security
Cloud SecurityAli Habeeb
 
Data-Centric Routing Protocols in Wireless Sensor Network: A survey
Data-Centric Routing Protocols in Wireless Sensor Network: A surveyData-Centric Routing Protocols in Wireless Sensor Network: A survey
Data-Centric Routing Protocols in Wireless Sensor Network: A surveyAli Habeeb
 
Secure erasure code based distributed storage system with secure data forwarding
Secure erasure code based distributed storage system with secure data forwardingSecure erasure code based distributed storage system with secure data forwarding
Secure erasure code based distributed storage system with secure data forwardingAli Habeeb
 
Organizing User Search Histories
Organizing User Search HistoriesOrganizing User Search Histories
Organizing User Search HistoriesAli Habeeb
 
Detecting and Resolving Firewall Policy Anomalies
Detecting and Resolving Firewall Policy AnomaliesDetecting and Resolving Firewall Policy Anomalies
Detecting and Resolving Firewall Policy AnomaliesAli Habeeb
 
Bit Torrent Protocol
Bit Torrent ProtocolBit Torrent Protocol
Bit Torrent ProtocolAli Habeeb
 
A study of Data Quality and Analytics
A study of Data Quality and AnalyticsA study of Data Quality and Analytics
A study of Data Quality and AnalyticsAli Habeeb
 
Adhoc and Sensor Networks - Chapter 10
Adhoc and Sensor Networks - Chapter 10Adhoc and Sensor Networks - Chapter 10
Adhoc and Sensor Networks - Chapter 10Ali Habeeb
 
Adhoc and Sensor Networks - Chapter 06
Adhoc and Sensor Networks - Chapter 06Adhoc and Sensor Networks - Chapter 06
Adhoc and Sensor Networks - Chapter 06Ali Habeeb
 

Más de Ali Habeeb (20)

Opinion Mining
Opinion MiningOpinion Mining
Opinion Mining
 
WAP
WAPWAP
WAP
 
USB 3.0
USB 3.0USB 3.0
USB 3.0
 
Blue Eyes
Blue EyesBlue Eyes
Blue Eyes
 
Cloud Security
Cloud SecurityCloud Security
Cloud Security
 
Data-Centric Routing Protocols in Wireless Sensor Network: A survey
Data-Centric Routing Protocols in Wireless Sensor Network: A surveyData-Centric Routing Protocols in Wireless Sensor Network: A survey
Data-Centric Routing Protocols in Wireless Sensor Network: A survey
 
Web Security
Web SecurityWeb Security
Web Security
 
Secure erasure code based distributed storage system with secure data forwarding
Secure erasure code based distributed storage system with secure data forwardingSecure erasure code based distributed storage system with secure data forwarding
Secure erasure code based distributed storage system with secure data forwarding
 
Organizing User Search Histories
Organizing User Search HistoriesOrganizing User Search Histories
Organizing User Search Histories
 
Detecting and Resolving Firewall Policy Anomalies
Detecting and Resolving Firewall Policy AnomaliesDetecting and Resolving Firewall Policy Anomalies
Detecting and Resolving Firewall Policy Anomalies
 
Bit Torrent Protocol
Bit Torrent ProtocolBit Torrent Protocol
Bit Torrent Protocol
 
A study of Data Quality and Analytics
A study of Data Quality and AnalyticsA study of Data Quality and Analytics
A study of Data Quality and Analytics
 
Adhoc and Sensor Networks - Chapter 10
Adhoc and Sensor Networks - Chapter 10Adhoc and Sensor Networks - Chapter 10
Adhoc and Sensor Networks - Chapter 10
 
Adhoc and Sensor Networks - Chapter 06
Adhoc and Sensor Networks - Chapter 06Adhoc and Sensor Networks - Chapter 06
Adhoc and Sensor Networks - Chapter 06
 
Iss lecture 9
Iss lecture 9Iss lecture 9
Iss lecture 9
 
Iss lecture 6
Iss lecture 6Iss lecture 6
Iss lecture 6
 
Iss lecture 5
Iss lecture 5Iss lecture 5
Iss lecture 5
 
Iss lecture 4
Iss lecture 4Iss lecture 4
Iss lecture 4
 
Iss lecture 3
Iss lecture 3Iss lecture 3
Iss lecture 3
 
Iss lecture 2
Iss lecture 2Iss lecture 2
Iss lecture 2
 

Último

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Último (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Adhoc and Sensor Networks - Chapter 08

  • 1. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 1  Introduction  The Mica Mote  Sensing and Communication Range  Design Issues  Challenges  Energy Consumption  Clustering of Sensors  Regularly placed sensors  Heterogeneous WSNs  Mobile Sensors  Applications  Habitat Monitoring  A Remote Ecological Micro-Sensor Network  Environmental Monitoring  Drinking Water Quality  Disaster Relief Management  Soil Moisture Monitoring  Health Care Monitoring  Building, Bridge and Structural Monitoring  Smart Energy and Home/Office Applications  DARPA Efforts towards Wireless Sensor Networks  Body Area Network  Conclusions and Future Directions Table of Contents
  • 2. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 2 Introduction  Wireless Sensor Networks can be considered as a special case of ad hoc networks with reduced or no mobility  WSNs enable reliable monitoring and analysis of unknown and untested environments  These networks are “data centric”, i.e., unlike traditional ad hoc networks where data is requested from a specific node, data is requested based on certain attributes such as, “which area has temperature over 35ºC or 95ºF”  A sensor has many functional components as shown in Figure 8.1  A typical sensor consists of a transducer to sense a given physical quantity, an embedded processor, small memory and a wireless transceiver to transmit or receive data and an attached battery
  • 3. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 3 Transceiver Embedded Processor Battery Transceiver 10Kbps-1Mbps 50-125m range Embedded Processor Sensor Transducer Battery Memory (3K-1Mb) A/D Converter (8 bit 4-8Mhz) Functional Components: A Sensor
  • 4. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 4 The Mica Mote The Mica Mote is a comprehensive sensor node developed by University of California at Berkeley and marketed by Crossbow  It uses an Atmel Atmega 103 microcontroller running at 4 MHz, with a radio operating at the 916 MHz frequency band with bidirectional communication at 40 kbps when energized with a pair of AA batteries  Mica Board is stacked to the processor board via the 51 pin extension connector to provide temperature, photo resistor, barometer, humidity, and thermopile sensors  To conserve energy, later designs include an A/D Converter and an 8x8 power switch on the sensor board
  • 5. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 5 The Mica Mote Mica Motes-2 Mica Board
  • 6. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 6 Sensing and Communication Range A wireless sensor network (WSN) consists of a large number of sensor nodes (SNs) Adequate density of sensors is required so as to void any unsensed area rs Sensing Area Desired Coverage Area
  • 7. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 7 Sensing and Communication Range If N SNs are put in an area A, then the SNs density can be given by N/A The sensing range of each sensor is rs To cover the whole space, adjacent SNs need to be located at most at a distance of 2rs from each other If the SNs are uniformly distributed with the node density of , the probability that there are m SNs within the space of S is Poisson distributed as where space for two dimensional spaces This gives the probability that the monitored space is not covered by any SN and hence the probability pcover of the coverage by at least one SN is: λ S m e m S mP λλ − = ! )( )( 2 srS π= S er ePp λ− −=−= 1)0(1cov λ
  • 8. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 8 Sensing and Communication Range
  • 9. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 9 rs SN1 Sensing area for SN1 rc SN2 rs Sensing area for SN2 Sensing and Communication Range
  • 10. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 10 Sensing and Communication Range  Transmission between adjacent SNs is feasible if there is at least one SN within the communication range of each SN  Not just the sensing coverage, but the communication connectivity is equally important  The wireless communication coverage of a sensor must be at least twice the sensing distance  Data from a single SN is not adequate to make any useful decision and need to be collected from a set of SNs
  • 11. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 11 Design Issues: Advantages of WSNs  Ease of deployment – Can be dropped from a plane or placed in a factory, without any prior organization, thus reducing the installation cost and time, and increasing the flexibility of deployment  Extended range – One huge wired sensor (macro-sensor) can be replaced by many smaller wireless sensors for the same cost  Fault tolerant – With wireless sensors, failure of one node does not affect the network operation  Mobility – Since these wireless sensors are equipped with battery, they can possess limited mobility (e.g., if placed on robots)  Disadvatage: The wireless medium has a few inherent limitations such as low bandwidth, error prone transmissions, and potential collisions in channel access, etc.
  • 12. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 12 Design Issues Traditional routing protocols defined for MANETs are not well suited for wireless sensor networks due to the following reasons:  Wireless sensor networks are “data centric”, where data is requested based on particular criteria such as “which area has temperature 35ºC”  In traditional wired and wireless networks, each node is given a unique identification and cannot be effectively used in sensor networks  Adjacent nodes may have similar data and rather than sending data separately from each sensor node, it is desirable to aggregate similar data before sending it  The requirements of the network change with the application and hence, it is application-specific
  • 13. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 13 Desirable Features  Attribute-based addressing: This is typically employed in sensor networks where addresses are composed of a group of attribute-value pairs  Location awareness: Since most data collection is based on location, it is desirable that the nodes know their position  The sensors should react immediately to drastic changes in their environment  Query Handling: Users should be able to request data from the network through some base station (also known as a sink) or through any of the nodes, whichever is closer
  • 14. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 14 Design Issues : Challenges  Routing protocol design is heavily influenced by many challenging factors  These challenges can be summarized as follows:  Ad hoc deployment – Sensor nodes are randomly deployed so that they form connections between the nodes  Computational capabilities – Sensor nodes have limited computing power and therefore may run simple versions of routing protocols  Energy consumption without losing accuracy – Sensor nodes can use up their limited energy supply carrying out computations and transmitting information
  • 15. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 15 Design Issues : Challenges  Scalability – The number of sensor nodes deployed in the sensing area may be in the order of hundreds, thousands, or more and routing scheme must be scalable enough to respond to events  Communication range – The bandwidth of the wireless links connecting sensor nodes is often limited, hence constraining inter- sensor communication  Fault tolerance – Some sensor nodes may fail or be blocked due to lack of power, physical damage, or environmental interference  Connectivity – High node density in sensor networks precludes them from being completely isolated from each other
  • 16. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 16 Design Issues : Challenges  Transmission media –Communicating nodes are linked by a wireless medium and traditional problems associated with a wireless channel (e.g., fading, high error rate) also affect the operation  QoS – In some applications (e.g., some military applications), the data should be delivered within a certain period of time from the moment it is sensed  Control Overhead – When the number of retransmissions in wireless medium increases due to collisions, the latency and energy consumption also increases  Security –Besides physical security, both authentication and encryption should be feasible while complex algorithm needs to be avoided
  • 17. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 17 Energy Consumption  Minimizing the energy consumption of WSs is critical yet a challenge for the design of WSNs  Energy consumption in WSN involves three different components:  Sensing Transducer  A/D Converter (sensor consumes only 3.1 , in 31 pJ/8-bit sample at 1Volt supply, standby power consumption at 1V supply is 41pW, the lower bound on energy per sample is roughly Emin= CtotalVref 2 , where Ctotal is total capacitance of the array, and Vref is input voltage  Transmission Energy, transmission energy transmits a k-bit message to distance d can be computed as: ETx(k,d)=ETx-elec(k)+ETx-amp(k,d)=Eelec*k+*k*d 2 , where ETx-elec is the transmission electronics energy consumption, ETx-amp is the transmit amplifier energy consumption, example values: ETx- elec=ERx-elec=Eelec=50nJ/bit, =100pJ/bit/m2  Receiver Energy, ERx(k)=ERx-elec(k)=Eelec*k  Computing/Processing Unit, Eswitch=CtotalVdd 2  In order to conserve energy, we may make some SNs go to sleep mode and need to consider energy consumed in that state  Sensing transducer is responsible for capturing the physical parameters Wµ ampε
  • 18. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 18 Energy Consumption : Clustering of SNs  Clustering of SNs not only allows aggregation of sensed data, but limits data transmission primarily within the cluster  The sequence starts with discovery of neighboring SNs by sending periodic Beacon Signals, determining close by SNs with some intermediate SNs, forming clusters and selecting cluster head (CH) for each cluster  So, the real question is how to group adjacent SNs, and how many groups should be there that could optimize some performance parameter  One approach is to partition the WSN into clusters such that all members of the clusters are directly connected to the CH  One such example for randomly deployed SNs  SNs in a WSN in a cluster, can transmit directly to the CH without any intermediate SN
  • 19. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 19 Energy Consumption : Clustering of SNs
  • 20. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 20 Clustering of Sensors  Data from SNs belonging to a single cluster can be combined together in an intelligent way (aggregation) using local transmissions  This can not only reduce the global data to be transferred and localized most traffic to within each individual cluster  A lot of research gone into testing coverage of areas by k-sensors clustering adjacent SNs and defining the size of the cluster so that the cluster heads (CHs) can communicate and get data from their own cluster members  If each cluster is covered by more than one subset of SNs all the time, then some of the SNs can be put into sleep mode so as to conserve energy while keeping full coverage  The use of a second smaller radio has been suggested for waking up the sleeping sensor, thereby conserving the power of main wireless transmitter
  • 21. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 21 Clustering of Sensors: Predetermined Grid v/s Random Placement Regularly placed sensors  A simple strategy is to place the sensors in the form of two- dimensional grid as such cross-point and such configuration may be very useful for uniform coverage  Such symmetric placement allows best possible regular coverage and easy clustering of the close-by SNs  Three such examples of SNs in rectangular, triangular and hexagonal tiles of clusters are shown
  • 22. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 22 Regularly Placed Sensors  Clusters of size 5x5, with a SN located at each intersection of lines  Square, triangle, or hexagonal placement of the SNs also dictates the minimum sensing area that need to be covered by each sensor Useful for deploying in a controlled environment
  • 23. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 23  Detailed views of three different configurations, are shown in next three slides  For simplicity of calculation, the sensing area covered by rectangular placement is taken rectangular, while sensing are by the two configurations are assumed hexagonal and triangular respectively  The required number of SNs in each scheme, is given in Table 8.2  Radio transmission distance between adjacent SNs need to be such that the sensors can receive data from adjacent sensors using wireless radio  Clustering can be done for these configurations and the size of each cluster can be fixed as per application requirements  If the sensing and radio transmission ranges are set to the minimum value, then all the SNs need to be active all the time to cover the area and function properly  If these ranges are increased, then each sub-region can be covered by more than one sensor node and selected SNs can be allowed to go to sleep mode Regularly placed sensors
  • 24. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 24 Triangular Placed Sensors 2 4 3 r
  • 25. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 25 Hexagonal Placed Sensors 2 4 33 r
  • 26. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 26 Regularly Placed Sensors 2 4 33 r 2 4 3 r
  • 27. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 27 Hexagon Triangular Rectangular Total sensing area covered by N-Sensors Sensing Area to be covered by each sensor Distance Between Adjacent Sensors Placement Hexagon Triangular Rectangular Total sensing area covered by N-Sensors Sensing Area to be covered by each sensor Distance Between Adjacent Sensors Placement Placement of Sensors and Covered Sensing Area
  • 28. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 28 Randomly distributed sensors  The sensors could also be used in an unknown territory or inaccessible area by deploying them from a low flying airplane or unmanned ground/aerial vehicle  SNs have to find themselves who their communicating neighbors are and how many of them are present  The adjacency among SNs can be initially determined by sending bacon signals as is done in a typical ad hoc network (MANET)  The communication range of associated wireless radio should be such that the SNs could be connected together to form a WSN  Distribution of the SNs and their sensing range would also determine if the physical parameter in the complete deployed area can be sensed by at least one SN
  • 29. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 29 Randomly Distributed Sensors  The sensing and communication ranges required in a randomly placed sensor are governed by the maximum distance to be covered by any one of the sensors in the given area  If the N-nodes are uniformly distributed in an area A=LxL, then the node density can be given by  The probability that there are m nodes within the area S, is Poisson distributed and can be given by :  The probability that the monitored area or space is 1-covered, can be expressed as :  In many situations, an event need to be sensed by at least k close-by sensors for a cooperative decision (such as relative location using triangulation), then concurrent sensing by k SNs can be given by  One way to determine the area to be covered by each SN is to form a Voronoi diagram and one such example is shown in Figure 8.10  The basic idea is to partition the area in to a set of convex polygons such that all polygons edges are equidistant from neighboring sensors  A simplistic approach is to let each sensor at least sense the area covered by its surrounding polygon and maximum distance to be covered by a SN in a polygon will govern the required sensing area  Similarly, minimum wireless transmission range can be determined by the maximum distance between any pair of adjacent sensors AN /=λ S m e m S mP λλ − = ! )( )( )0(1cov1 Pp ered −=− S e λ− −=1 ∑∑ − = − − = − −=−= 1 0 1 0 cov ! )( 1)(1 k m S mk m eredk e m S mPp λλ
  • 30. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 30 Randomly Distributed Sensors: Voronoi diagram
  • 31. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 31 Heterogeneous WSNs  With constant sensing and transmission range for all SNs, WSNs are also known as homogeneous WSNs  This makes the design simpler and easier to manage  In some situations, when a new version of SNs are deployed to cover additional area, or some of the existing SNs are replaced by new ones for extended life or precision, then sensing and/or communication range and/or computing power may also depend on the sensor type or version  Use of sensors with different sensing and/or communication and/or computation capabilities leads to a heterogeneous WSN which is helpful for performing additional functionalities or be given much more responsibilities  One such example is shown in Figure 8.11
  • 32. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 32 Heterogeneous WSNs
  • 33. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 33 Mobile Sensors  The enhancements in the field of robotics are paving the way for industrial robots to be applied to a wider range of tasks  However, harnessing their full efficiency also depends on how accurately they understand their environment  Thus, as sensor networks are the primary choice for environmental sensing, combining sensor networks with mobile robots is a natural and very promising application  Robots could play a major role of high-speed resource carriers in defense and military applications where human time and life is very precious  Other applications include fire fighting, autonomous waste disposal  Thus, we see that there are a number of future applications where sensors and robots could work together through some form of cooperation
  • 34. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 34 Mobile Sensors  Sensors detect events autonomously and the mobile robots could take appropriate actions based on the nature of the event  Coordination between the mobile robots is obviously critical in achieving better resource distribution and information retrieval  Mobile sensor Networks have been suggested to cover the area not reachable by static sensors  Coordination between multiple robots for resource transportation has been explored for quite some time now  Transporting various types of resources for different applications like defense, manufacturing process, and so on, has been suggested  In these schemes, time taken to detect an event depends entirely on the trail followed by the robots  Though the path progressively gets better with the use of an ant-like type of algorithm, the whole process has to be started anew when the position of the event changes
  • 35. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 35 Mobile Sensors  In terrains where human ingress is difficult, mobile robots can be used to imitate the human’s chore  Typical resource-carrying robots are depicted in Figure 8.12 which depicts a possible means of a robot transferring its resources to anothers  Once depleted of their resource, they may get themselves refilled from the sink  The resource in demand could be water or sand (to extinguish fire), oxygen supply, medicines, bullets, clothes or chemicals to neutralize hazardous wastes, and so on  The target region that is in need of these resources is sometimes called an event location  Whether it is a sensor or another robot within collision distance, it is considered an obstacle and the robot proceeds in a direction away from it
  • 36. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 36 Mobile Sensors
  • 37. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 37 Applications  Thousands of sensors over strategic locations are used in a structure such as an automobile or an airplane, so that conditions can be constantly monitored both from the inside and the outside and a real-time warning can be issued whenever a major problem is forthcoming in the monitored entity  These wired sensors are large (and expensive) to cover as much area is desirable  Each of these need a continuous power supply and communicates their data to the end-user using a wired network  The organization of such a network should be pre-planned to find strategic position to place these nodes and then should be installed appropriately  The failure of a single node might bring down the whole network or leave that region completely un-monitored
  • 38. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 38 Applications  Unattendability and some degree of fault tolerance in these networks are desirable in those applications where the sensors may be embedded in the structure or places in an inhospitable terrain and could be inaccessible for any service  Undoubtedly, wireless sensor networks have been conceived with military applications in mind, including battlefield surveillance and tracking of enemy activities  However, civil applications considerably outnumber the military ones and are applicable to many practical situations  Judging by the interest shown by military, academia, and the media, innumerable applications do exist for sensor networks  Examples include weather monitoring, security and tactical surveillance, distributed computing, fault detection and diagnosis in machinery, large bridges and tall structures, detecting ambient conditions such as temperature, movement, sound, light, radiation, vibration, smoke, gases, or the presence of certain biological and chemical objects
  • 39. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 39 Applications  Under the civil category, envisioned applications can be classified into environment observation and forecast system, habitat monitoring equipment and human health, large structures and other commercial applications Habitat Monitoring  A prototype test bed consisting of iPAQs (i.e., a type of handheld device) has been built to evaluate the performance of these target classification and localization methods  As expected, energy efficiency is one of the design goals at every level: hardware, local processing (compressing, filtering, etc.), MAC and topology control, data aggregation, data-centric routing and storage  Preprocessing is proposed in for habitat monitoring applications, where it is argued that the tiered network in GDI is solely used for communication  The proposed 2-tier network architecture consists of micro nodes and macro nodes, wherein the micro nodes perform local filtering and data to significantly reduce the amount of data transmitted to macro nodes
  • 40. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 40 Applications The Grand Duck Island Monitoring Network  Researchers from the University of California at Berkeley (UCB) and Intel Research Laboratory deployed in August 2002 a mote-based tiered sensor network in Great Duck Island (GDI), Maine, aimed at monitoring the behavior of storm petrel  The overall system architecture is depicted in Figure 8.13  A total of 32 motes have been placed in the area to be sensed grouped into sensor patches to transmit sensed data to a gateway which is responsible for forwarding the information from the sensor patch to a remote base station through a local transit network  The base station then provides data logging and replicates the data every 15 minutes to a database in Berkeley over a satellite link  Remote users can access the replica database server in Berkeley, while local users make use of a small PDA-size device to perform local interactions such as adjusting the sampling rates, power management parameters, etc.
  • 41. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 41 Transit Network Base station Gateway Patch Network Base-Remote Link Data Service Internet Client Data Browsing and Processing Sensor Node The Grand Duck Island Monitoring Networ
  • 42. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 42 Applications: Remote Ecological Micro-Sensor Network PODS is a research project undertaken at the University of Hawaii that has built a wireless network of environmental sensors to investigate why endangered species of plants will grow in one area but not in neighboring areas  They deployed camouflaged sensor nodes, (called PODS), in the Hawaii Volcanoes National Park  The PODS consist of a computer, radio transceiver and environmental sensors, sometimes including a high resolution digital camera, relaying sensed data via wireless link back to the Internet  Bluetooth and 802.11b are chosen as the MAC layer, while data packets are delivered through the IP  In PODS, energy efficiency is identified as one of the design goals and an ad hoc routing protocols called Multi-Path On-demand Routing (MOR) has been developed
  • 43. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 43 Applications: Remote Ecological Micro-Sensor Network Weather data are collected every ten minutes and image data are collected once per hour  Users employ the Internet to access the data from a server in University of Hawaii at Manoa  The placement strategy for the sensor nodes is then investigated  Topologies of 1-dimensional and 2-dimensional regions such as triangle tile, square tile, hexagon tile, ring, star, and linear are discussed  The sensor placement strategy evaluation is based on three goals: resilience to single point of failure, the area of interest has to be covered by at lease one sensor, and minimum number of nodes  Finally, it is found that the choice of placement depends on d and r
  • 44. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 44 Environmental Monitoring Application  Sensors to monitor landfill and the air quality  Household solid waste and non-hazardous industrial waste such as construction debris and sewer sludge are being disposed off by using over 6000 landfills in USA and associated organic components undergo biological and chemical reaction such as fermentation, biodegradation and oxidation- reduction  This causes harmful gases like methane, carbon dioxide, nitrogen, sulfide compounds and ammonia to be produced and migration of gases in the landfill causes physical reactions which eventually lead to ozone gases, a primary air pollutant and an irritant to our respiratory systems  The current method of monitoring landfill employs periodic drilling of collection well, collecting gas samples in airtight bags and analyze off-site, making the process very time consuming
  • 45. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 45 Environmental Monitoring ApplicationThe idea is to interface gas sensors with custom-made devices and wireless radio and transmit sensed data for further analysis  Deployment of a large number of sensors allows real-time monitoring of gases being emitted by the waste material or from industrial spills Place a large number of sensors throughout the area of interest and appropriate type of sensors can be placed according to the type of pollutant anticipated in a given area  A large volume of raw data from sensors, can be collected, processed and efficiently retrieval  A generic set up of a WSN, has been covered and various associated issues have been clearly pointed out  The scheme can be easily used and adopted for other applications as well
  • 46. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 46 Environment Observation and Forecasting System  The Environment Observation and Forecasting System (EOFS) is a distributed system that spans large geographic areas and monitors, models and forecasts physical processes such as environmental pollution, flooding, among others  Usually, it consists of three components: sensor stations, a distribution network, and a centralized processing farm  Some of the characteristics of EOFS are:  Centralized processing: The environment model is computationally very intensive and runs on a central server and process data gathered from the sensor network  High data volume: For example, nautical X-band radar can generate megabytes of data per second  QoS sensitivity: This defines the utility of the data and there is an engineering trade-off between QoS and energy constraint  Extensibility  Autonomous operation
  • 47. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 47 Drinking Water Quality  A sensor based monitoring system with emphasis on placement and utilization of in situ sensing technologies and doing spatial-temporal data mining for water-quality monitoring and modeling  The main objective is to develop data-mining techniques to water-quality databases and use them for interpreting and using environmental data  This also helps in controlling addition of chlorine to the treated water before releasing to the distribution system  Detailed implementation of a bio-sensor for incoming wastewater treatment has been discussed  A pilot-scale and full scale system has also been described
  • 48. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 48 Disaster Relief Management and Soil Moisture Monitoring  Novel sensor network architecture has been proposed in that could be useful for major disasters including earthquakes, storms, floods, fires and terrorist attacks  The SNs are deployed randomly at homes, offices and other places prior to the disaster and data collecting nodes communicate with database server for a given sub area which are in-turn linked to a central database for continuous update Soil Moisture Monitoring  A soil moisture monitoring scheme using sensors, over a one hectare outdoor area and various performance parameters measured from an actual system  A custom made moisture sensor is interfaced with Mica-2 Mote wireless board
  • 49. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 49 Health Care Monitoring  Telemonitoring of human physiological data, tracking and monitoring of doctors and patients inside a hospital, drug administrator in hospitals, …  An example: Artificial retina developed within the Smart Sensors and Integrated Microsystems (SSIM) project  A retina prosthesis chip consisting of one hundred microsensors are built and implanted within the human eye, allowing patients with no vision or limited vision to see at an acceptable level  Wireless communication is required to suit the need for feedback control, image identification and validation  The communication pattern is deterministic and periodic like a TDMA scheme
  • 50. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 50 Building, Bridge and Structural Monitoring  Projects have explored the use of sensors in monitoring the health of buildings, bridges and highways  A Bluetooth based scatternet has been proposed to monitor stress, vibration, temperature, humidity etc. in civil infrastructures  Simulation results are given to justify effectiveness of their solution by having a set of rectangular Bluetooth equipped sensor grids to model a portion of bridge span  Fiber optic based sensors have been proposed for monitoring crack openings in concrete bridge decks, of strain and corrosion of the reinforcement in concrete structures  Corrosion of steel bars is measured by using special super glue and angular strain sensors
  • 51. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 51 Smart Energy and Home/Office Applications  Societal-scale sensor networks can greatly improve the efficiency of energy- provision chain, which consists of three components: the energy-generation, distribution, and consumption infrastructure  It has been reported that 1% load reduction due to demand response can lead to a 10% reduction in wholesale prices, while a 5% load response can cut the wholesale price in half DARPA Efforts towards Wireless Sensor Networks  The DARPA has identified networked micro sensors technology as a key application for the future  On the battlefield of the future, a networked system of smart, inexpensive and plentiful microsensors, combining multiple sensor types, embedded processors, positioning ability and wireless communication, will pervade the environment and provide commanders and soldiers alike with heightened situation awareness
  • 52. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 52 Body Area Network  Specialized sensors and transducers are being developed to measure human body characterizing parameters  There has been increased interest in the biomedical area and numerous proposals have recently been introduced  Micro sensor array is used for artificial retina, glucose level monitoring, organ monitors, cancer detectors and general health monitoring  A wearable computing network has been suggested to remotely monitor the progress of a physical therapy done at home and an initial prototype has been developed using electroluminescent strips indicating the range of human body’s motion  An indoor/outdoor wearable navigation system has been suggested for blind and visually impaired people through vocal interfaces about surrounding environment and changing the mode from indoor to outdoor and vice-versa using simple vocal command
  • 53. Copyright © 2006, Dr. Carlos Cordeiro and Prof. Dharma P. Agrawal, All rights reserved. 53  Sensor networks are perhaps one of the fastest growing areas in the broad wireless ad hoc networking field  As we could see throughout this chapter, the research in sensor networks is flourishing at a rapid pace and still there are many challenges to be addressed such as:  Energy Conservation - Nodes are battery powered with limited resources while still having to perform basic functions such as sensing, transmission and routing  Sensing - Many new sensor transducers are being developed to convert physical quantity to equivalent electrical signal and many new development is anticipated  Communication - Sensor networks are very bandwidth-limited and how to optimize the use of the scarce resources and how can sensor nodes minimize the amount of communication  Computation - Here, there are many open issues in what regards signal processing algorithms and network protocols Conclusions and Future Directions