Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

62
Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management Hao Yi Ong and Mykel J. Kochenderfer Stanford University September 22, 2015

Transcript of Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Page 1: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Short-Term Conflict Resolution forUnmanned Aircraft Traffic Management

Hao Yi Ong and Mykel J. Kochenderfer

Stanford University

September 22, 2015

Page 2: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

Introduction 2

Page 3: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Unmanned aircraft traffic management

I automating conflict avoidance is critical to integrating smallunmanned aerial systems (UAS) to civil airspace

I automation to augment controllers

Introduction 3

Page 4: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Conflict avoidance

given potential conflicts between drones, find the best set of advisories

I focus on horizontal or co-altitude conflict resolution

– NASA’s proposed airspace for UAS is under 150 m (500 ft)– flight altitudes need to avoid disruption and buildings

I conflict defined as loss of minimum separation between aircraft

Introduction 4

Page 5: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Complications

I multiagent problem

– system must coordinate between many aircraft– large search space for solution

I uncertainty in system

– imperfect sensor measurements of current state– variable pilot response, vehicle performance, etc. affect future path

I appropriate trade-off between safety and efficiency not obvious

Introduction 5

Page 6: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Goals

robust and efficient method

I tractable approach to complex stochastic problem

– account for uncertainty in large problem with reasonable computeresources

I balances between airspace safety and efficiency

– ensure safety and provide timely conflict alerts to aircraft

I arbitrary-scale optimization

– real-time conflict resolution for large airspace

Introduction 6

Page 7: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Previous approaches

I mathematical programming (MIP, SCP) [SVFH05, ASD12]

– can work well for simple vehicle networks

I distributed convex optimization [OG15]

– hard to incorporate stochastic objectives/constraints

I Markov decision process formulation (ACAS X) [KC11, CK12]

– assumes “white noise” accelerations for intruder aircraft

I and many more. . . [KY00]

Introduction 7

Page 8: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Overview

idea: decomposition + coordination

multi-agent pairwise joint policy

decompose pairwise solutions

+ coordination

=

ac1: left ac2: right ac3: straight

Introduction 8

Page 9: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Conflict Resolution as a UTM service

UTM server client side

resolution server

filtered sector status updates

advisories

advisories

status updates

Introduction 9

Page 10: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Conflict Resolution as a Standalone service

I derivative UTM client service

– subscribes to UTM server to track aircraft and deconflict routes– pub-sub system that operators subscribe to to receive advisories

I current implementation uses standalone model

– still unclear about end architecture for resolution service– clean approach to get started with prototype system– implemented with scalability and modularity in mind

Introduction 10

Page 11: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

Mathematical formulation 11

Page 12: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Markov decision process (MDP)

defined by the tuple (S,A, T,R)I S and A are the sets of all possible states and actions, respectively

I T (s, a, s′) gives the probability of transitioning into state s′ bytaking action a at the current state s

I R (s, a) gives the reward for taking action a at the current state s

environment T(s,a,s’ )!

agent

action a!

state s!

reward R(s,a)!

Mathematical formulation 12

Page 13: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Value iteration

agent π ⋆(s )"

action a"

state s"

I want to find the optimal policy π? (s)

– gives action that maximizes the utility Q? (s, a) from any given state

π? (s) = argmaxa∈A

Q? (s, a)

I value iteration updates value function guess Q until convergence

– expensive one-off compute but cheap policy extraction (Q lookup)

Q (s, a) := R (s, a) +∑s′∈S

T (s, a, s′)maxa′∈A

Q (s′, a′)

Mathematical formulation 13

Page 14: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Multiagent MDP

extension of MDP to cooperative multiagent setting

I similar to case where centralized planner has access to system state

I also defined by the tuple (S,A, T,R), except

– S and A are all possible joint states and actions– T and R operate on elements of S and A

Mathematical formulation 14

Page 15: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Short-term conflict resolution

I horizontal conflict resolution between n aircraft

– conflict defined as loss of minimum separation distance, 500 m– aircraft at risk if it could experience a conflict within two minutes

I alert aircraft that need corrective maneuvers

– but not to the extent that alerts become a nuisance

Mathematical formulation 15

Page 16: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Resolution advisories

I at each time step T = 5 s, system issues a joint advisory

– joint advisory φ chosen out of a finite set of corrective bank anglesfor each aircraft

I action set A = {−20◦,−10◦, 0◦, 10◦, 20◦,COC}n

– positive and negative angles correspond to left and right banks– COC is a clear-of-conflict status advisory—nothing needs to be done

I higher resolution comes at the cost of computational complexity

Mathematical formulation 16

Page 17: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Dynamics

I ith aircraft state si = (xi, yi, ψi, vi, pi)

– latitude and longitude xi and yi– heading ψi

– groundspeed vi– responsiveness indicator pi

I aircraft follow Dubin’s kinematic model

– simplicity avoids risk of overfitting complicated models

xi = vi cosψi yi = vi sinψi ψi =g tanφivi

ψi!

bank: φi!

(xi , yi )! vi!

Mathematical formulation 17

Page 18: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Pilot model

I advisory response determined stochastically by Bernoulli process

I 5 s average response delay to first corrective advisory asrecommended by ICAO [ICA07]

– when responding, the pilot executes the advisory for 5 s time step

non-responsive: white noise path

responsive: corrective action

COC 5 s average response lag

Mathematical formulation 18

Page 19: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Reward function

balance competing objectives

I maximize safety

loss of separation

cost

separation

closeness penalty

I minimize disruption

cost

advisory COC ±0° ±10° ±20°

conflict penalty

Mathematical formulation 19

Page 20: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

Approach 20

Page 21: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Curse of dimensionality

I in an MMDP, S and A are all possible joint states and actions

I problem: S and A scale exponentially with number of agents

3 drones: 1000 states

2 drones: 100 states

1 drone: 10 states

Approach 21

Page 22: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Decompose and coordinate

multi-agent pairwise joint policy

decompose pairwise solutions

+ coordination

=

ac1: left ac2: right ac3: straight

Approach 22

Page 23: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

MMDP decomposition

multi-agent pairwise joint policy

decompose

ac1: left ac2: right ac3: straight

pairwise solutions +

coordination =

Approach 23

Page 24: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Pairwise conflict resolution

decompose full MMDP into O(n2)

pairwise encounters

I action set, pilot response model, and reward function unchanged

I use relative positions and bearing to reduce state space

– arbitrarily set one aircraft as ownship, and the other as intruder– speeds remain in global reference frame

s =(xrel, yrel, ψrel, vownship, vintruder, pownship, pintruder

)

(0, 0 )!

v ownship

!

ψ rel

(x rel

, y rel

)!

v intruder

Approach 24

Page 25: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Discretization

I in general, no analytical solution to problem with continuous statespace

I approximate value function Q over discretized state space

– discretize state space via multilinear interpolation– iteratively update Q until convergence

Q (s, a) := R (s, a) +∑s′∈S

T (s, a, s′)maxa′∈A

Q (s′, a′)

Approach 25

Page 26: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Approximating environment noise

sigma-point sampling

speed bank

weights

sigma-point sample

Approach 26

Page 27: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Implementation

I discretize continuous state space into 9.6 million states

– expensive but one-off computation

I Q converges in 7 hours (40 iterations over S ×A)

– solver: parallel implementation in Julia– machine: 20 2.3 GHz Intel Xeon cores with 125 GB RAM

Variable Minimum Maximum Number of values

xrel, yrel −3000 m 3000 m 51ψrel 0◦ 360◦ 37vownship, vintruder 10 m s−1 20 m s−1 5pownship, pintruder - - 2

Approach 27

Page 28: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Pairwise policy visualization

passing intrusion (240◦ bearing)

COC

I

I−2,000−1,000 0 1,000 2,000

−2,000

−1,000

0

1,000

2,000

x (m)

y(m

)

Ownship action

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

Intruder action

−20

−10

0

10

20

Approach 28

Page 29: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Example advisory execution

passing intrusion at (1000 m, 0 m)

ownship: 10° left bank intruder: 10° left bank

Approach 29

Page 30: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Accounting for pilot response

pilots responsive (top) and non-responsive (bottom)

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

y(m

)Ownship action

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

Intruder action

−20

−10

0

10

20

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

y(m

)

Ownship action

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

Intruder action

−20

−10

0

10

20

Approach 30

Page 31: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Accounting for pilot response

ownship responsive (top) and intruder responsive (bottom)

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

y(m

)Ownship action

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

Intruder action

−20

−10

0

10

20

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

y(m

)

Ownship action

COC

I

I

−2,000−1,000 0 1,000 2,000−2,000

−1,000

0

1,000

2,000

x (m)

Intruder action

−20

−10

0

10

20

Approach 31

Page 32: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Multithreat coordination

multi-agent pairwise joint policy

decompose pairwise solutions

+ coordination

=

ac1: left ac2: right ac3: straight

Approach 32

Page 33: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Utility fusion

idea: combine pairwise utilities Qij to form proxy for global utility Q

I Qij operates on the pairwise MDP state-action pair (sij , aij) foraircraft i and j

I fusion strategies π(s) = argmaxa∈A

Q(s, a)

– max-min: “worst-case”

Qmin(s, a) = mini<j

{Uij(sij , aij)}

– max-sum: “average”

Qsum(s, a) =∑i<j

Uij(sij , aij)

problem: action space A scales exponentially with number of aircraft

Approach 33

Page 34: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Search heuristic: Alternating maximization

I maximize global utility by varying one action and fixing the rest

I e.g., fix drone 1 and 2’s actions (R and L) and vary drone 3’s action

1.1 1.3 0.9

2.1 1.1 0.9

1.3 2.3 0.8

2.3 1.4 0.3

0.9 1.7 0.8

0.8 2.2 1.4

2.1 1.1 0.3

argmax

pair 1 pair 2

L

R

S

L

R

S

L R S L R S

aircraft 3 action: L

Q13(s, a)! Q23(s, a)!

min

Approach 34

Page 35: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Distributed variant I: Parallel search

greedy local maximization

0 L 0

0 0 L

R 0 0

broadcast action

R L L

R L L

R L L

repeat until convergence

Approach 35

Page 36: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Distributed variant II: Consensus search

parallel alt. maximization

R R L

R L L

R L R

broadcast joint action

R R L

R L L

R L R

greedy local maximization

R L L

R R L

R R L

incorporate msgs

R ? L

R R ?

? R L

Approach 36

Page 37: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Consensus search message

I parallel search could incur large communication cost

I messages reduce communication between compute nodes, but riskyielding unsynchronized joint action across aircraft

I incorporate messages by “averaging” what intruders think ownshipshould do to approximate consensus

broadcast joint action

R R L

R L L

R L R

incorporate msgs

R L? L

R R 0?

R? R L

Approach 37

Page 38: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Joint policy visualization

triple aircraft encounter max-min (top) and max-sum policies (bottom)

COC

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

y(m

)

First aircraft action

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

Second aircraft action

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

Third aircraft action

−20

−10

0

10

20

COC

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

y(m

)

First aircraft action

COC

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

Second aircraft action

COC

I

I

−2,000−1,000 0 1,000 2,000

−2,000

0

2,000

x (m)

Third aircraft action

−20

−10

0

10

20

Approach 38

Page 39: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

Numerical experiments 39

Page 40: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Encounter model

I generate uniformly random starting aircraft states in annulus

– speeds uniformly random– headings initialized to point to annulus center– resample if loss of separation

Numerical experiments 40

Page 41: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Aircraft model

I ODE solver for dynamics

– continuous Dubin’s kinematic model– Gaussian noise in acceleration and banking

I corrective bank angles mapped to PID control policies

Numerical experiments 41

Page 42: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Baseline methods

I closest threat

– multithreat scenario decomposed into pairwise encounters– aircraft execute solution to encounter with closest intruder

I uncoordinated

– aircraft assumes all other aircraft are white-noise intruders– executes greedy local maximization to find own action

Numerical experiments 42

Page 43: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Experiment

I >1 million simulations from 2 to 10 aircraft

– code: Julia implementation– machine: 3.4 GHz Intel i7 processor with 32 GB RAM

I ∼10 ms decision times (vs. 5 s decision period)

– serial solve times of <10 ms for up to 10 aircraft sufficient forserver-based resolution system

– unoptimized code that doesn’t account for communication costs fordistributed variants

Numerical experiments 43

Page 44: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Safety performance

I max-min utility fusion

4 5 6 7 8 9 10

6

7

8

9×10−3

number of aircraft

con

flic

tpr

obab

ility

uncoordcentralizedparallelconsensus

I max-sum utility fusion

4 5 6 7 8 9 10

3

4

5

6

×10−2

number of aircraft

con

flic

tpr

obab

ility

uncoordcentralizedparallelconsensus

I distributed variants perform as well as serial version

I coordinated methods >10 times better than closest threat heuristic

I coordinated methods ∼10% better than uncoordinated method

Numerical experiments 44

Page 45: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Safety performance takeaways

I no near mid-air collisions (NMACs) in simulations

– NMAC threshold distance defined at 30 m (100 ft)– due to penalty on smaller separation distances even in conflict

I simulations validate all algorithmic variants

– distributed variants perform as well as serial version– coordinated methods significantly better than baselines

Numerical experiments 45

Page 46: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Trade-off: Safety vs. alert rate

I vary relative penalty between loss of separation and disruption

I best performance at “knee” of Pareto frontier

0 2 4 6

×10−2

1.8

1.9

2

2.1

2.2

×10−2

conflict probability

aler

tra

tecentralizedparallelconsensus

Numerical experiments 46

Page 47: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

UTM-α: A distributed framework 47

Page 48: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Practical conflict avoidance

I recall: pub-sub system that UTM clients subscribe to for advisories

– standalone system that subscribes to UTM server for flight tracking

I goals: robustness, scalability, and modularity

– cluster computing framework for large-scale data processing– streaming analytics for real-time conflict resolution– built-in system fault-tolerance

UTM-α: A distributed framework 48

Page 49: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

System design

UTM-α: A distributed framework 49

Page 50: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

System design

I why Kafka?

– designed as unified, high-throughput, low-latency platform forhandling real-time data feeds

– open source with active industry use (originally developed byLinkedIn)

I why Spark?

– easy, high-level API– ease of operations with minimal fuss over fault-tolerance– enormous, active community and industry deployments (CISCO,

Netflix, Intel,. . . )

UTM-α: A distributed framework 50

Page 51: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Driver-worker model

I driver-worker model for conflict resolution

– driver loads up policy object that contains lookup table andalgorithm for conflict resolution

– workers receives policy object via broadcast and subsequentlydelegated tasks by driver

I formatted conflict data stored as an “infinite” stream of resilientdistributed datasets (RDDs)

– distributed, partitioned collection of conflict objects (JSON)– automatically rebuilt on failure

UTM-α: A distributed framework 51

Page 52: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Pub-sub model

I ingestor publishes conflict objects to conflict Kafka topic

– subscribes to and ingests UTM server stream and crudely identifiespotential conflicts by proximity

– formats conflict data as JSON strings

I advisor publishes advisories to advisory Kafka topic

– producers are worker nodes in cluster generating advisories– consumers are UTM operator clients flying drones

UTM-α: A distributed framework 52

Page 53: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Working model

I Spark driver launches workers/executors and broadcasts policy object

I workers receive conflict data in parallel from conflict Kafka topicas RDD stream

I workers publish advisories to advisory Kafka topic for UTMoperator clients

UTM-α: A distributed framework 53

Page 54: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Outline

Introduction

Mathematical formulation

Approach

Numerical experiments

UTM-α: A distributed framework

Conclusion and future work

Conclusion and future work 54

Page 55: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Summary

I three variants of coordination-based conflict resolution algorithm

– 1 centralized/serial and 2 distributed variants

I millisecond solve times for real-time application for multiple aircraft

I robust distributed system for practical conflict avoidance

Conclusion and future work 55

Page 56: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Implementation

I policy generation on Julia scientific programming language

https://github.com/sisl/ConflictAvoidanceDASC

I distributed system with Apache Kafka and Spark Streaming

https://bitbucket.org/sisl/utm-alpha

Conclusion and future work 56

Page 57: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Further research

I tracking aircraft via belief states

– use the UTM client server to track reported aircraft states– generate local set of belief states for all aircraft to better estimate

state uncertainty in real-time

I best action for drone in case of communication loss

– figure out the response state of the aircraft via belief state tracking– where to go in case of communication loss, what flight profile to

take, and what UTM should assume about the drones flight

I dealing with adversarial flights

Conclusion and future work 57

Page 58: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Further software development

I standardize resolution advisory and advisory receipt formats withfocus on minimizing message size

I quantify delay times for sending packets between advisory server andclients in order to model it into the problem

Conclusion and future work 58

Page 59: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

References

I Federico Augugliaro, Angela P Schoellig, and Raffaello D’Andrea.Generation of collision-free trajectories for a quadrocopter fleet: Asequential convex programming approach.In IEEE/RSJ International Conference on Intelligent Robots andSystems (IROS), pages 1917–1922, October 2012.

I J. P. Chryssanthacopoulos and M. J. Kochenderfer.Decomposition methods for optimized collision avoidance withmultiple threats.Journal of Guidance, Control, and Dynamics, 35(2):398–405, 2012.

I International Civil Aviation Organization ICAO.Surveillance, radar and collision avoidance.International Standards and Recommended Practices, 4, 2007.

59

Page 60: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

References

I M.J. Kochenderfer and J.P. Chryssanthacopoulos.Robust airborne collision avoidance through dynamic programming.Project Report ATC-371, MIT Lincoln Laboratory, 2011.

I J. K. Kuchar and L. C. Yang.A review of conflict detection and resolution modeling methods.IEEE Trans. Intell. Transp. Syst., 1(4):179–189, 2000.

I H. Y. Ong and J. C. Gerdes.Cooperative collision avoidance via proximal message passing.In American Control Conference (ACC), July 2015.

I Tom Schouwenaars, Mario Valenti, Eric Feron, and Jonathan How.Implementation and flight test results of MILP-based UAV guidance.In IEEE Aerospace Conference, pages 1–13. IEEE, 2005.

60

Page 61: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Impact of search timeout

conflict decreases with iteration limit but with diminishing returns

2 3 4 5 6

4.8

4.9

5

5.1

5.2

5.3

×10−3

iteration limit

con

flic

tpr

obab

ility

61

Page 62: Short-Term Conflict Resolution for Unmanned Aircraft Traffic Management

Restriction messages for consensus search

2 4 6 8 100.5

1

1.5

2

2.5

3

3.5

×10−3

number of uavs

con

flic

tpr

obab

ility

consensus (maxmin)

restriction (maxmin)

I instead of broadcasting joint action, aircraft broadcast restrictionmessages that indicate what other aircraft shouldn’t do

– e.g., reward straight path when it receives no left and no rightmessages at a decision period

62