rename the member to PlannedArrivalTime for better readability

This commit is contained in:
Sven Czarnian
2021-10-14 14:12:12 +02:00
parent 91b735df2f
commit 217c9ad742
3 changed files with 35 additions and 36 deletions

View File

@@ -32,26 +32,20 @@ class RecedingHorizonControl:
plannedInbound = self.Windows[index].inbound(inbound.Report.aircraft.callsign) plannedInbound = self.Windows[index].inbound(inbound.Report.aircraft.callsign)
plannedInbound.CurrentPosition = inbound.CurrentPosition plannedInbound.CurrentPosition = inbound.CurrentPosition
plannedInbound.MaximumTimeToGain = inbound.MaximumTimeToGain plannedInbound.MaximumTimeToGain = inbound.MaximumTimeToGain
plannedInbound.ArrivalCandidates = inbound.ArrivalCandidates
# get the reference time and update some times in case no replacement is needed # check if we need to update the inbound
if plannedInbound.InitialArrivalTime == plannedInbound.EarliestArrivalTime + plannedInbound.MaximumTimeToGain: if plannedInbound.PlannedArrivalTime < inbound.EarliestArrivalTime:
plannedInbound.InitialArrivalTime = inbound.InitialArrivalTime if inbound.EarliestArrivalTime < self.Windows[index].StartTime or inbound.EarliestArrivalTime >= self.Windows[index].EndTime:
plannedInbound.EarliestArrivalTime = inbound.EarliestArrivalTime
plannedInbound.EstimatedArrivalTime = inbound.EstimatedArrivalTime
reference = inbound.EarliestArrivalTime
else:
plannedInbound.InitialArrivalTime = inbound.InitialArrivalTime
if plannedInbound.EarliestArrivalTime < inbound.EarliestArrivalTime:
plannedInbound.EarliestArrivalTime = inbound.EarliestArrivalTime
if plannedInbound.EstimatedArrivalTime < inbound.EstimatedArrivalTime:
plannedInbound.EstimatedArrivalTime = inbound.EstimatedArrivalTime
reference = plannedInbound.EarliestArrivalTime
# update the windows
if reference < self.Windows[index].StartTime or reference >= self.Windows[index].EndTime:
self.Windows[index].remove(inbound.Report.aircraft.callsign) self.Windows[index].remove(inbound.Report.aircraft.callsign)
self.AssignedWindow.pop(inbound.Report.aircraft.callsign) self.AssignedWindow.pop(inbound.Report.aircraft.callsign)
self.update(inbound) self.update(inbound)
else:
plannedInbound.PlannedStar = inbound.PlannedStar
plannedInbound.PlannedRunway = inbound.PlannedRunway
plannedInbound.InitialArrivalTime = inbound.InitialArrivalTime
plannedInbound.EarliestArrivalTime = inbound.EarliestArrivalTime
plannedInbound.PlannedArrivalTime = inbound.EarliestArrivalTime
else: else:
inserted = False inserted = False
for i in range(0, len(self.Windows)): for i in range(0, len(self.Windows)):
@@ -61,6 +55,7 @@ class RecedingHorizonControl:
if window.StartTime <= inbound.EarliestArrivalTime and window.EndTime > inbound.EarliestArrivalTime: if window.StartTime <= inbound.EarliestArrivalTime and window.EndTime > inbound.EarliestArrivalTime:
if i > self.FreezedIndex: if i > self.FreezedIndex:
self.AssignedWindow[inbound.Report.aircraft.callsign] = [ i, 0 ] self.AssignedWindow[inbound.Report.aircraft.callsign] = [ i, 0 ]
inbound.PlannedArrivalTime = inbound.EarliestArrivalTime
window.insert(inbound) window.insert(inbound)
inserted = True inserted = True
break break
@@ -78,7 +73,8 @@ class RecedingHorizonControl:
if self.Windows[-1].EndTime > inbound.EarliestArrivalTime: if self.Windows[-1].EndTime > inbound.EarliestArrivalTime:
self.AssignedWindow[inbound.Report.aircraft.callsign] = [ len(self.Windows) - 1, 0 ] self.AssignedWindow[inbound.Report.aircraft.callsign] = [ len(self.Windows) - 1, 0 ]
self.Windows[-1].insert(inbound) self.Windows[-1].insert(inbound)
self.Windows[-1].Inbounds.sort(key = lambda x: x.EarliestArrivalTime) inbound.PlannedArrivalTime = max(self.Windows[-1].StartTime, inbound.EarliestArrivalTime)
self.Windows[-1].Inbounds.sort(key = lambda x: x.PlannedArrivalTime)
break break
lastWindowTime = self.Windows[-1].EndTime lastWindowTime = self.Windows[-1].EndTime
@@ -99,20 +95,24 @@ class RecedingHorizonControl:
def optimizationRelevantInbounds(self): def optimizationRelevantInbounds(self):
# no new inbounds # no new inbounds
if len(self.Windows) <= self.FreezedIndex: if len(self.Windows) <= self.FreezedIndex:
return None return None, None
inbounds = [] inbounds = []
earliestArrivalTime = None
# check the overlapping windows # check the overlapping windows
for i in range(self.FreezedIndex + 1, min(len(self.Windows), self.FreezedIndex + 1 + self.Configuration.WindowOverlap)): #for i in range(self.FreezedIndex + 1, min(len(self.Windows), self.FreezedIndex + 1 + self.Configuration.WindowOverlap)):
for i in range(0, len(self.Windows)):
if None == earliestArrivalTime:
earliestArrivalTime = self.Windows[i].StartTime
for inbound in self.Windows[i].Inbounds: for inbound in self.Windows[i].Inbounds:
inbounds.append(inbound) inbounds.append(inbound)
# check if we found relevant inbounds # check if we found relevant inbounds
if 0 != len(inbounds): if 0 != len(inbounds):
return inbounds return inbounds, earliestArrivalTime
else: else:
return None return None, None
def cleanupWindows(self): def cleanupWindows(self):
currentUtc = dt.utcfromtimestamp(int(time.time())).replace(tzinfo = pytz.UTC) currentUtc = dt.utcfromtimestamp(int(time.time())).replace(tzinfo = pytz.UTC)

View File

@@ -105,8 +105,11 @@ class Worker(Thread):
print('FCFS run:') print('FCFS run:')
for window in self.RecedingHorizonControl.Windows: for window in self.RecedingHorizonControl.Windows:
for inbound in window.Inbounds: for inbound in window.Inbounds:
print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.EstimatedArrivalTime) + '; ' + str(inbound.EarliestArrivalTime)) print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.InitialArrivalTime) + '; ' + str(inbound.EarliestArrivalTime))
# search the ACO relevant aircrafts
relevantInbounds, earliestArrivalTime = self.RecedingHorizonControl.optimizationRelevantInbounds()
if None != relevantInbounds:
# get the last landing aircrafts per runway before the RHC stage to check for constraints # get the last landing aircrafts per runway before the RHC stage to check for constraints
# this is required to handle the overlap between windows # this is required to handle the overlap between windows
preceedingInbounds = {} preceedingInbounds = {}
@@ -115,9 +118,6 @@ class Worker(Thread):
if None != inbound: if None != inbound:
preceedingInbounds[runway.Runway.Name] = inbound preceedingInbounds[runway.Runway.Name] = inbound
# search the ACO relevant aircrafts
relevantInbounds = self.RecedingHorizonControl.optimizationRelevantInbounds()
if None != relevantInbounds:
print('Relevant inbounds: ' + str(len(relevantInbounds))) print('Relevant inbounds: ' + str(len(relevantInbounds)))
# configure the ACO run # configure the ACO run

View File

@@ -32,7 +32,7 @@ class Inbound:
self.ReportTime = datetime.strptime(report.reportTime + '+0000', '%Y%m%d%H%M%S%z').replace(tzinfo = pytz.UTC) self.ReportTime = datetime.strptime(report.reportTime + '+0000', '%Y%m%d%H%M%S%z').replace(tzinfo = pytz.UTC)
self.InitialArrivalTime = None self.InitialArrivalTime = None
self.EarliestArrivalTime = None self.EarliestArrivalTime = None
self.EstimatedArrivalTime = None self.PlannedArrivalTime = None
self.EstimatedStarEntryTime = None self.EstimatedStarEntryTime = None
self.PlannedRunway = None self.PlannedRunway = None
self.PlannedStar = None self.PlannedStar = None
@@ -67,9 +67,8 @@ class Inbound:
self.EstimatedStarEntryTime = self.ReportTime + self.ArrivalCandidates[candidate].FlightTimeUntilIaf self.EstimatedStarEntryTime = self.ReportTime + self.ArrivalCandidates[candidate].FlightTimeUntilIaf
self.PlannedStar = self.ArrivalCandidates[candidate].Star self.PlannedStar = self.ArrivalCandidates[candidate].Star
self.EstimatedArrivalTime = self.InitialArrivalTime
if None != self.PlannedStar: if None != self.PlannedStar:
for runway in navData.Runways[self.Report.destination]: for runway in navData.Runways[self.Report.destination.upper()]:
if runway.Name == self.PlannedStar.Runway: if runway.Name == self.PlannedStar.Runway:
self.PlannedRunway = runway self.PlannedRunway = runway
break break