|
@@ -30,12 +30,9 @@ class Colony:
|
|
|
overallDelay = timedelta(seconds = 0)
|
|
|
|
|
|
# assume that the inbounds are sorted in FCFS order
|
|
|
- print('FCFS-Sequence:')
|
|
|
for inbound in inbounds:
|
|
|
Colony.associateInbound(rwyManager, inbound, earliestArrivalTime, False)
|
|
|
overallDelay += inbound.PlannedArrivalTime - inbound.InitialArrivalTime
|
|
|
- print(' ' + inbound.Callsign + ': ' + inbound.PlannedRunway.Name + ' @ ' + str(inbound.PlannedArrivalTime) +
|
|
|
- ' dt=' + str((inbound.PlannedArrivalTime - inbound.InitialArrivalTime).total_seconds()))
|
|
|
|
|
|
return overallDelay
|
|
|
|