Integrating Runtime Verification into an
Automated UAS Traffic Management System

Matthew Cauwels, Abigail Hammer, Benjamin Hertz, Phillip H. Jones, Kristin Y. Rozier

This webpage contains supplementary specifications for "Integrating Runtime Verification into an
Automated UAS Traffic Management System"
by M. Cauwels, A. Hammer, B. Hertz, P. H. Jones, and K. Y. Rozier

OR_UTM_13

Specification Description

The altitude (Alt) of any UAS's telemetry data will be bounded between AltLB and AltUB.

Signals Required

Alt

Boolean Conversion of Signals to Atomic Inputs

Alt_leq_AltUB = 1;
for(i = 0; i < NumUAS; i++)
{
    // if UAS i's Alt is greater than the upper bounded
    // and the value is not "nan"
    if((Alt[i] > AltUB) && (Alt[i] == Alt[i])
    { 
        Alt_leq_AltUB = 0;
    }
}                       
Alt_geq_AltLB = 1;
for(i = 0; i < NumUAS; i++)
{
    // if UAS i's Alt is less than the lower bounded
    // and the value is not "nan"
    if((Alt[i] < AltLB) && (Alt[i] == Alt[i])
    { 
        Alt_geq_AltLB = 0;
    }
}                       

MLTL Specification

Original: Alt_leq_AltLB ∧ Alt_geq_AltLB

Updated: ☐[0,3] (Alt_leq_AltLB ∧ Alt_geq_AltLB)

Fault Explanation

Any telemetry point should be within the UTM's airspace

Additional Notes

Figures

Figure 1: All of the altitude (Alt) inputs from each GCS the UTM reads from the telemetry datatable.
Figure 2: The output of R2U2's monitoring of specification OR_UTM_13, confirming that no UAS exceeds its operating range.
Figure 3: Since Fig. 1 had no Alt inputs that exceeded AltUB or AltLB, we manually injected a fault into a single UAS (purple).
Figure 4: The output of R2U2's monitoring of specification OR_UTM_13, showing that R2U2 catches when the injected fault occurs. However, notice that there is bouncing in the initial Boolean specificaiton, which can lead to undesireable false-positive alerts.
Figure 5: The output of R2U2's monitoring of the updated specification OR_UTM_13, showing that R2U2 catches when the injected fault occurs and the "☐[0,3]" temporal operator acts as a sliding filter, debouncing R2U2's output.