infrastructure establishment in sensor...

80
Infrastructure Establishment in Infrastructure Establishment in Sensor Networks Sensor Networks Leonidas Guibas Stanford University Sensing Networking Computation CS321 CS321 [ZG, Chapter 4]

Upload: others

Post on 01-Aug-2020

8 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Infrastructure Establishment in Infrastructure Establishment in Sensor NetworksSensor Networks

Leonidas GuibasStanford University

Sensing Networking

Computation

CS321CS321 [ZG, Chapter 4]

Page 2: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Infrastructure Establishment in a Sensor Network

Network topology discovery and controlNode clustering and hierarchy formationTime synchronizationLocalizationLocation and other network-wide services

For the sensor network to function as a system, theindividual nodes must be brought into a commonframework and establish necessary infrastructure

Page 3: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Time Synchronization

Page 4: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Time Synchronization in Sensor Networks

Time sync is critical at many layersBeam-forming, localization, (sound) trackingData fusion, aggregation, cachingfine-grained radio scheduling

High precision sometimes requiredorder of 1 microsecond (e.g., sleep cycles)

Low precision sometimes sufficientorder of 10 milliseconds (e.g., temperature readings)

Physical time needed to relate events in the physical world

Page 5: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Clock Synch in Wired NetworksClock synchronization problem

bound differences between reading of two clocksvery well studied in computer networks

NTP (Network Time Protocol)Ubiquitous in the Internet

802.11 synchronizationPrecise clock sync within a cluster

GPS, WWVB, other radio time servicesHigh precision anywhere

High-stability oscillators (Rubidium, Cesium)

Page 6: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Synchronization Challenges

Time synchronization is well-studied in computer networksBut in sensor networks we have

Fewer resourcesenergy, network bandwidth constraints

Less infrastructure availableno accurate master clocksno stable connections with reliable delaysno master NTP server

Sensors may be located on hostile environmentsno GPS signal

Cost and size factor$50 GPS receiver or $500 oscillator on a $20 mote?

High precision sometimes required

Page 7: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Traditional Local Clock SyncSlave sends a message to masterMaster replies with current timeSlave estimates delay, updates its local clock

Master Slave

NIC

Physical Medium

NIC

Send time

Access Time

Propagation Time

Receive Time

Problem: many sources of unknown, nondeterministic latency between timestamp and its reception

Page 8: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Communication Delays

Communication delays comprise four parts:send time (preparing the packet)access time (getting medium access)propagation time (in the medium)receive time (receiving and decoding)

Node 1 Node 2

NIC

Physical Medium

NIC

Send time

Access Time

Propagation Time

Receive Time

Page 9: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Clock Mappings

It may be had to get all sensor node clocks to agreeA less demanding requirement is to provide mappings between the clock readings of nodes that need to talk to each other

Page 10: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Clocks and Their Differences

Computer clocks are based on hardware oscillatorsThe clock of different nodes may not agree because of

clock skew (or drift)

clock phase (or bias)

Page 11: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Symmetric Delay Estimation

In the absence of skew, the transmission delay D can beestimated as follows (d denotes the unknown phasedifference)

Page 12: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Delay Estimation, II

Node j can compute

-- and send that to node kNow node k can compute D

Page 13: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Interval Methods

In temporal reasoning, often the ordering of events matters more than the exact times when the events occurredThe goal is to map timestamps of events in one node to time intervals in other nodes, and thus perform temporal comparisons

Page 14: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Mapping Durations

In general we work we time intervals we call durationsNode 1 with max. clock skew ρ1 wishes to transform a local duration ∆C1 into the time framework of node 2 with maximum clock skew ρ2 . We must have:

i = 1,2

Page 15: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Estimating Communication DelaysNode 1 detects event E and time stamps with r1 = S1(E)

what is the channelcommunication delayD?

l1

p1

Page 16: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Propagation of Time Stamps

Time notation:round-tripidlesendreceivepilisiri

node 1

node 2

Page 17: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Propagation, Continued ...

node i

•intervals can get large fast, and then they become useless•interval size increases with the number of hops•interval size increases with holding times

•many possible paths for node 1 to node i•how do we choose the best?

Page 18: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Reference Broadcasts

Sometimes we do need to look a real values, not just time comparisons (localization, for example)The reference broadcast system (RBS)exploits the broadcast nature of the wireless medium by synchronizing two receivers with each other, as opposed to a sender and a receiver

Page 19: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Reference Broadcasts[Elson, Girod, Estrin ’02]

Sender Receiver2

NIC

Physical Medium

NIC

Propagation Time

Receive Time

Receiver1

NICI saw itat t1=4 I saw it

at t2=5

Sender sends a broadcast reference packetReceivers record time of arrivalReceivers exchange observations (and update clocks)

Syncs two receivers with each other, NOT sender with receiver

Page 20: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

NICSender

Receiver 1

Receiver 2

Critical Path

NICSender

Receiver

Critical PathTime

Traditional critical path:From the time the sender

reads its clock, to when the receiver reads its clock

RBS: Only sensitive to the differences in receive time and

propagation delay

Reference BroadcastsRBS reduces error by removing much uncertainty from critical path

Page 21: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Variations in Critical Path

Differences in time-of-flight of packetgeographical distances usually negligible

Delays in recording time of packet arrivalread local system clock within NIC driverquite deterministic

Differences between recording time is smallorder of transmission time of a single bitcan be accounted for

Page 22: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Experiments with Receive Time

Obtain exact packet arrival time (using external global clock)Compute differences Bin using 1 microsecond1 bit TX time is 52 microsecondsError can be modeled using Gaussian distribution

Page 23: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Removing Receive Time Differences

Receive time differences are at most around transmission time of 1 bit (52 microseconds)

Reduce this potential error by averaging

Server broadcasts m reference packets

Each of receiver records local time of each of thr m reference packets

Receiver i and j exchange all m observationsCompute offset[i,j] = 1/m Σ (Tj,k – Ti,k)

Page 24: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Clock Skew Problem It takes time to send multiple reference packetsClocks do not have identical heartbeats

differences in frequency make them driftAfter collecting m reference packets, clocks will have driftedDirect averaging the differences will not workSolution:

Fit data to a line to estimate clock skew and offset

Page 25: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Measuring Clock SkewEach point is difference of arrival times of reference packet between nodes i and jClock skew is the slope, y intercept is the offset

Page 26: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

“Here 0 sec after blue pulse!”

“Here 1 sec after blue pulse!”

“Here 3 sec afterred pulse!”

“Here 1 sec afterred pulse!”

Multi-Hop RBSSome nodes broadcast RF synchronization pulsesReceivers in a neighborhood are synced by using the pulse as a time reference. (The pulse senders are not synced.)Nodes that hear both can relate the time bases to each other

“Red pulse 2 secafter blue pulse!”

Page 27: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Multi-hop RBS Some nodes broadcast reference packetsReceivers within transmission range are synced using RBSNodes that hear both reference packets can relate to both time bases

1

3

2

A

B

Event e1 occurred in node 1 at local time t1

convert t1 to corresponding time in local clock of node 2 (t2)convert t2 to corresponding time in local clock of node 3 (t3)

Page 28: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Multi-hop RBS

1

3

2

A4

8

C

5

7

6B

10

D11

9

1

3

2

4

8

5

7

6

10 11

9

Physical topology easily converts into logical topology

links represent possible clock conversions

Use shortest path search to find a “time route”Edges can be weighted by error estimates

Page 29: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Multi-Hop RBS

0

1

2

3

4

5

6

7

1 Hop 2 Hop 3 Hop 4 Hop

Err

or

(use

c)

Std Dev

Error

1.85 +/- 1.28

2.73 +/- 1.912.73 +/- 2.42

3.68 +/- 2.57

Error (and std dev) over multiple hops, in µsec

Page 30: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Optimal and Global Clock Sync

Line fitting in RBS provides an estimate forskewoffset

But clock synchronization is between nodes pairwise

Two problems:Synchronization is not globally consistentSynchronization is not optimally precise

Page 31: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Global Consistency Event e1 occurs at node 1 at local time t1Convert this time to node’s 2 clock

directly via skew/offset relative to 2indirectly via skew/offset relative to 3, then via skew/offset relative to 2

1

3

B

2

C

AThese 2 times represented in node 2’s clock may be different!In large networks, several conversion paths exist

Page 32: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Localization

Page 33: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Location Discovery (LD) Service

Very fundamental component for many other services

Enables ad hoc node deploymentGPS does not work everywhere, nor is it economical

Necessary for many network operationsGeographic routing and coverage problemsPeople and asset trackingNeed spatial reference when monitoring spatial phenomenaSmart systems – devices need to know where they are

Page 34: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

It is Worth Understanding LDLD captures multiple aspects of sensor networks:

Physical layer imposes measurement challengesMultipath, shadowing, sensor imperfections, changes in propagation properties and more

Extensive computation aspectsMany formulations of localization problems -- how do you solve the corresponding optimization problem?How do you solve the problem in a distributed manner?

You may have to solve the problem on a memory constrained processor…

Networking and coordination issuesNodes have to collaborate and communicate to solve the problemIf you are using locations for routing, these are not yet available! How do you do it?

System Integration issuesHow do you build a whole system for localization?How do you integrate location services with other applications?Different implementation for each setup, sensor, integration issue

Page 35: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Ranging TechniquesRanging refers to measuring distances between nodes

Received Signal Strength (RSS) measurements

Can be used with RF, but have to deal with fading, shadowing, multipath, and other channel effectsAlso possible with ultrasound

Time of Arrival (ToA), or Time Difference of Arrival (TDoA) measurements

medium propagation speed must be estimatedrequires clock synchronization

Page 36: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

LD from RangingAssume that initially a small number of nodes know their positions (base stations, with GPS, etc.) and can act as landmarks. We call these nodes beacons.Other nodes will localize themselves my measuring their distances to these, and then can become beacons themselves, and so on ...

Known Location

Unknown Location

Page 37: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Two Phase ProtocolsLocation discovery approaches consist of two phases : Ranging phase, Estimation phaseRanging phase (distance estimation)

Each node estimate its distance from its neighbors

Location estimation phase (distance combining)Nodes use ranging information and beacon node locations to estimate their positions

Page 38: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Using Distancesto

Immediate Neighbors

Page 39: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Atomic Multilateration

Base stations advertise their coordinates & transmit a reference signalNode u uses these reference signals to estimatedistances to each of the base stationsNote: Distance measurements can be noisy!

u

Page 40: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Problem FormulationNeed to minimize the sum of squares of the distance residuals for node u

The objective error function to be minimized is

This a non-linear optimization problemMany ways to solve it (e.g. force formulation, gradient descent methods, etc.)

2 2, , ˆ( ) ( ˆ )u i u i i u uif r x yx y� � � � �

2,( , ) uu u ix yF f��

measured distance to node i

Page 41: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

System Linearization

We saw exactly the same equations in the localization of a source using acoustic distance measurementsThat solution was obtained by subtracting equations pairwise, to remove quadratic terms in the unknown location. Then least squares was used to solve the over-constrained system

Page 42: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Solution for an Embedded Processor

Linearize the measurement equations using Taylor expansions

where

Now this is in linear form

2 2, ( )u i i x i yf x y O� �� �� �� � �

ˆ ˆ,i u i u

i ii i

x x y yx y

r r� �

� � � �

22 )ˆ()ˆ( uiuii yyxxr −+−=

zA =δ

Page 43: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Incremental Least Squares Estimation

The linearized equations in matrix form become

Now we can use the least squares equation to compute a correction to our initial estimate

Update the current position estimate

Repeat the same process until � comes very close to 0

( )1 1 1

( )2 2 2

( )3 3 3

, ,

u

x u

y u

x y f

A x y z f

x y f

���

� �� �� � �� � � � � � �� � � � � � �

zAAA TT 1)( −=δ

yuuxuu yyxx δδ +=+= ˆˆ and ˆˆ

Page 44: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Some Issues

Check several conditionsLandmark nodes must not be collinearAssumes measurement error follows a Gaussian distribution

Create a system of equationsExactly how would you solve this in an distributed embedded system?In ToA, TDoA settings, how do you solve for the speed of the medium?

Page 45: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Estimate Also Medium Speed

Minimize over all

This can be linearized to the form

where

20

2000 )()(),,( yyxxstsxxf iiii −+−−=

Xby =

++−−

++−−++−−

=

−−222

12

1

2222

22

2221

21

kkkk

kk

kk

yxyx

yxyx

yxyx

y�

−−−

−−−−−−

=

−−−2

0)1(2011

220

2022

210

2011

)(2)(2

)(2)(2)(2)(2

kkkkkk

kkk

kkk

ttyyxx

ttyyxx

ttyyxx

X��

=

20

0

s

y

x

b

12

34

0

12,1 −= ki �

yXXXb TT 1)( −=MMSE Solution:

Page 46: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

The General Localization Problem

Beacon

Unkown Location

Randomly Deployed Sensor Network

Beacon nodes

• Localize nodes in an ad-hocmultihop network

• Based on a set of inter-node distance measurements

Page 47: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Solving over multiple hops

Iterative Multilateration

Beacon node(known position)

other node(unknown position)

Page 48: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Iterative Multilateration

Iterative (Sequential) Multilateration

ProblemsError accumulationMay get stuck!!!

% of initial beacons

Localized nodes

total nodes

Page 49: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Collaborative Mutlilateration(Savvides et. al., ‘03)

All available measurements are used as constraints

Solve for the positions of multiple unknowns simultaneouslyCatch: This is a non-linear optimization problem! How do we handle this?

Known position

Uknown position

Page 50: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Problem Formulation

214

2141,41,4

254

2545,45,4

234

2343,43,4

253

2535,35,3

232

2323,23,2

)ˆ()ˆ(

)ˆ()ˆ(

)ˆˆ()ˆˆ(

)ˆ()ˆ(

)ˆ()ˆ(

yyxxRf

yyxxRf

yyxxRf

yyxxRf

yyxxRf

−+−−=

−+−−=

−+−−=

−+−−=

−+−−=

∑= 2,4433 min)ˆ,ˆ,ˆ,ˆ( jifyxyxF

The objective function is

Need some decent initial estimates, theniterate using a Kalman Filter

1

2

3 4

5

6

Page 51: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Initial EstimatesUse the accurate distance measurements to impose constraints in the x and y coordinates – bounding boxUse the distance to a beacon as bounds on the x and y coordinates

a

a ax

U

Page 52: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Initial Estimates, Con’tUse the accurate distance measurements to impose constraints in the x and y coordinates – bounding boxUse the distance to a beacon as bounds on the x and y coordinatesDo the same for beacons that are multiple hops awaySelect the most constraining bounds

a

bc

b+c b+c

X

Y

U

U is between [Y-(b+c)] and [X+a]

Page 53: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Initial Estimates, Cont’dUse the accurate distance measurements to impose constraints in the x and y coordinates – bounding boxUse the distance to a beacon as bounds on the x and y coordinatesDo the same for beacons that are multiple hops awaySelect the most constraining boundsSet the center of the bounding box as the initial estimate

a

a a

bc

b+c b+c

X

Y

U

Page 54: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Initial Estimates, Cont’d

Example:4 beacons16 unknowns

To get good initial estimates, beacons should be placed on the perimeter of the networkObservation: If the unknown nodes are outside the beacon perimeter then initial estimates are on or very close to the convex hull of the beacons

Page 55: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Overview: Collaborative Multilateration

Collaborative Multilateration

ChallengesComputation constraintsCommunication cost

1

2

3

45

2

1

3

45

1

2

3

45

Page 56: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Overview: Collaborative Multilateration

Collaborative Multilateration

ChallengesComputation constraintsCommunication cost

0

1,000

2,000

3,000

4,000

5,000

6,000

7,000

8,000

9,000

10,000

10 20 30 40 50 60 70 80 90 100

No. of Unknown Nodes

MFl

op

s

Distributed Centralized

Distributed has reduced cost Even sharing of communication cost

Page 57: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Satisfy Global Constraints with Local Computation

� From SensorSimsimulation

� 40 nodes, 4 beacons� IEEE 802.11 MAC� 10Kbps radio� Average 6 neighbors

per node

Page 58: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Kalman Filter

• We only use measurement update since the nodes are static• We know R (ranging noise distribution)• Artificial notion of time: sequentially introduce distance constraints

Page 59: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Global Kalman Filter

Matrices grow with density and number of nodes � so does computation costComputation is not feasible on small processors with limited computation and memory

−−

−−

−−−−

−−

−−

=

00)5(ˆ)5(ˆ

00)4(ˆ)4(ˆ

)3(ˆ)3(ˆ)3(ˆ)3(ˆ

00)2(ˆ)2(ˆ

)1(ˆ)1(ˆ00

5454

44

34344343

5353

3232

kk

kk

kkkk

kk

kk

zyey

zxex

zyey

zxex

zeyey

zexex

zeyey

zexex

zyey

zxex

zeyy

zexx

H # of edges

# of nodes to be located x 2

−+−−+−−+−−+−

−+−

=

254

254

214

214

243

243

253

253

232

232

)()(

)()(

)()(

)()(

)()(

ˆ

yeyxex

yeyxex

eyeyexex

yeyxex

eyyexx

z Tk

Page 60: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Beware of Geometry Effects!Known as Geometric Dilution of Precision(GDOP)Position accuracy depends on measurement accuracy

and geometric conditioning

∑ ∑ >

==i ijj ij

NNGDOPGDOP

,2|sin|

),(θ

θ

ijθjkθ i

kj

bQAAQAx bT

bT 111 )(ˆ −−−=From pseudoinverse equation

Page 61: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Beware of Uniqueness Requirements

In a 2D scenario a network is uniquely localizable if:

1. It belongs to a subgraph that is redundantly rigid2. The subgraph is 3-connected3. It contains at least 3 beacons

Nodes can be exchanged without violating the measurement constraints

Page 62: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Using Distancesto

Distant Neighbors

Page 63: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Three-phase approach

1. Determine distance to beacon nodes(communication)

2. Establish position estimates(computation)

3. Iteratively refine positions using additional range measurements

(both)

Page 64: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Phase 1: Distance to Beacons

Three algorithmsSum-dist [Savvides et al.]DV-Hop [Niculescu et al., Savarese et al.]Euclidean [Niculescu et al.]

beacons flood network with their known positions

Page 65: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Beaconsflood network with known position

Nodesadd hop distancesrequires range measurement

Phase 1:Sum-dist

����

���������

�����������

Page 66: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Beacons flood network with known positionflood network with avg hop distance

Nodescount # of hops to anchorsmultiply with avg hop distance

Phase 1: DV-hop

����� ������

����������

Page 67: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Beaconsflood network with known positions

Nodesdetermine distance by

1. range measurement2. geometric calculation

require range measurement

Phase 1:Euclidean

Page 68: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Phase 1:Euclidean (2)

Wanted:Distance A-G �

Using AEGF:A-G = 8 ...or 3

Using AEGD:A-G = 8 ...or 0.5

A-G = 8

Page 69: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Phase 1:Euclidean (3)

Needs high connectivityError prone (selecting wrong distance)

Perfect accuracy possible

Page 70: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Phase 1: Comparison

Rangemeasurement

Very accurate: EuclideanReasonable: Sum-distNone / very bad: DV-hop

Page 71: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

APIT: a Method Using Only Distance Comparisons

APIT employs a novel area-basedapproach. Beacons divide the field into triangular regions

A node’s presence inside or outside of these triangular regions allows a node to narrow the area in which it can potentially reside.

The method to do so is called Approximate Point In Triangle Test (APIT). Out

IN

IN

Page 72: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

APIT Main AlgorithmPseudo Code:Receive locations (Xi,Yi) from

N beacons

N beacons form triangles.

For ( each triangle Ti � ){

InsideSet � Point-In-Triangle-Test (Ti)}

Position = CoG ( Ti ∈InsideSet);

For each nodeGet Beacon LocationsIndividual APIT TestTriangle AggregationCenter of Gravity Estim.

3N

3N

Page 73: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Point-In-Triangle-Test

For three beacons with known positions: A(ax,ay), B(bx,by), C(cx,cy), determine whether a point M with an unknown position is inside triangle �ABC or not.

B(bx,by)C(cx,cy),

A(ax,ay)

M

Page 74: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Perfect P.I.T TheoryIf there exists a direction in which M gets further from points A, B, and C simultaneously, then M is outside of �ABC. Otherwise, M is inside �ABC.

Require approximation for practical useNodes cannot move, how to recognize direction of departure (moving away)Exhaustive test on all directions is impractical

Page 75: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Distance TestRecognize directions of departure (moving away) via neighbor exchange

1. Receiving Power Comparison Smoothed Hop Distance Comparison

Experiment Result from UVA

300

350

400

450

500

550

600

1 5 9 13 17 21 25 29 33 37Beacon Sequence Number

Sig

nal

Str

eng

th (

mv)

1 Foot

5 Feet

10 Feet

15 Feet

Experiment Result from Berkeley

Page 76: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

A.P.I.T. TestApproximation: Test only directions towards

neighbors Error in individual test exists , however is relatively small and can be masked by APIT aggregation.

APIT(A,B,C,M) = IN APIT(A,B,C,M) = OUT

Page 77: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

APIT AggregationAggregation provides a good accuracy, even results by individual tests are coarse and error prone.

With a density 10 nodes/circle, Average 92% A.P.I.T Test is correctAverage 8% A.P.I.T Test is wrong

Localization Simulation example

Grid-Based Aggregation

High Possibility area

Low possibility area

Page 78: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Does All This Solve the LD Problem?

No! Several other challengesSolution depends on

Problem setupInfrastructure assisted (beacons), fully ad-hoc & beaconless, hybrid

Measurement technologyDistances vs. angles, acoustic vs. rf, connectivity based, proximity basedThe underlying measurement error distribution changes with each technology

The algorithm will also changeFully distributed computation or centralizedHow big is the network and what networking support do you have to solve the problem?Mobile vs. static scenariosMany other possibilities and many different approaches

Page 79: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

Summary

Location discovery is a central but difficult problem in sensor networksMost localization methods are based on ranging (distance estimates)Localization algorithms can be demanding for small nodesLocalization errors need to be taken into accountLocation services are needed so that location information becomes globally available

Page 80: Infrastructure Establishment in Sensor Networksgraphics.stanford.edu/courses/cs321-05-fall/Lectures/05cs321-nov07.pdfInfrastructure Establishment in a Sensor Network Network topology

The End