Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
0
1.03k
# Sets
flights: List[str] = Field(description="[List[str]] Set of flights. F.")
time_periods: List[int] = Field(description="[List[int]] Set of discrete time periods. T = {0, ..., T_max}.")
flight_pairs: List[Tuple[str, str]] = Field(description="[List[Tuple[str, str]]] Set of ordered flight pairs (f, f') with f ≠ f'. P = {(f,f') ∈ F×F : f ≠ f'}.")
# Parameters
release_time: Dict[str, int] = Field(description="[Dict[str, int]] Release time of flight f. r_f.")
target_departure_time: Dict[str, int] = Field(description="[Dict[str, int]] Target departure time of flight f. t_f^tar.")
penalty_per_tardiness: Dict[str, float] = Field(description="[Dict[str, float]] Penalty per unit time of tardiness for flight f. p_f.")
min_separation: int = Field(description="[int] Minimum required time separation between any two flights. Δ.")
max_time: int = Field(description="[int] Maximum time index used as a large constant M, e.g. M = T_max.")
cost_if_depart_at: Dict[str, Dict[int, float]] = Field(description="[Dict[str, Dict[int, float]]] Cost incurred if flight f departs at time t, computed as c_{f,t} = max{t - t_f^tar, 0} * p_f.")
Optimizing Single-Runway Flight Departure Scheduling
With increasing air traffic demand and limited airport infrastructure, managing departures on a single runway efficiently is essential to minimize delays, ensure safety, and reduce operational costs. The single-runway flight departure scheduling problem focuses on determining precise takeoff times for flights using one...
Core Challenge
Airports with a single runway face unique constraints that limit throughput, causing potential delays and increased costs. The challenge lies in sequencing flight departures such that:
Minimum safety separation times between consecutive takeoffs are strictly enforced.
Flights cannot depart before their earliest ready times (release times).
Delay costs are minimized, with penalties applied to flights departing later than their target times.
Only one flight can depart at any discrete time period, ensuring runway exclusivity.
Unlike broader Air Traffic Flow Management problems which handle multiple airports, sectors, and routing complexities, this problem is confined to scheduling departures on a single runway, focusing on temporal sequencing and separation.
Operational Components
Flight Release Times: Each flight can only depart after its release time, reflecting readiness constraints.
Target Departure Times: Desired departure times to minimize passenger inconvenience and operational disruptions.
Minimum Separation: A mandatory buffer time between consecutive takeoffs to ensure safety.
Tardiness Penalties: Costs incurred proportional to how late a flight departs compared to its target time.
Key Constraints
Single Departure per Time Slot: At most one flight can depart at any given discrete time period.
Flight Sequencing: Flights must be ordered such that minimum separation is maintained between any two departures.
Release Time Compliance: Flights cannot depart before their specified release times.
Objective Function
Minimize the total tardiness cost, calculated as the sum over all flights of their individual delay beyond target departure times, weighted by flight-specific penalty rates.
The Chaos of Takeoff Times
Every morning, hundreds of planes line up on the tarmac, engines humming with impatience. Each pilot has a schedule to keep, passengers to deliver, and a slot in the sky that's rapidly closing. But there's only one runway, and the rules are unforgiving: planes must wait their turn, maintain safe distances, and somehow ...
Air traffic controllers face a daily puzzle that would make a chess master sweat. They must sequence takeoffs like a conductor orchestrating a symphony, except the musicians are 200-ton metal birds carrying hundreds of lives, and the penalty for a wrong note isn't just a sour sound—it's millions in lost revenue, angry ...
The challenge is deceptively simple: when should each plane take off? But the variables multiply like runway lights in the fog. Some flights are more valuable than others, some passengers have tighter connections, and some delays cost more than others. Meanwhile, safety regulations demand minimum spacing between takeof...
This is the high-stakes game of single-runway optimization, where every second counts, every decision matters, and the difference between efficiency and chaos lies in the precise timing of takeoff sequences.
# Sets
dc_locations: List[str] = Field(description="[List[str]] List of candidate distribution center (DC) locations.")
hospitals: List[str] = Field(description="[List[str]] List of hospital locations.")
# Parameters
n_dcs: int = Field(description="[int] Total number of DCs that should be in use (selected from candidate locations).")
travel_times: Dict[str, Dict[str, float]] = Field(description="[Dict[str, Dict[str, float]]] Travel time between each DC location and each hospital. Access as travel_times[dc][hospital] = time.")
travel_time_limit: float = Field(description="[float] Maximum allowable travel time from a DC to a hospital for an allocation to be feasible.")
feasibility_indicator: Dict[str, Dict[str, int]] = Field(description="[Dict[str, Dict[str, int]]] Binary indicator for feasibility of allocation. 1 if travel_times[dc][hospital] <= travel_time_limit, 0 otherwise. Access as feasibility_indicator[dc][hospital].")
#
Sanquin, the Dutch blood bank, aims to optimize the distribution of blood products to hospitals across the Netherlands. To ensure timely and efficient delivery, Sanquin plans to establish a network of blood distribution centers (DCs) at select hospitals. The goal is to minimize the average drive time between hospitals ...
Key Components of the Problem
Facilities Involved:
Hospitals (Demand Points): All hospitals in the Netherlands require regular blood deliveries.
Candidate Distributoion Center (DC) Locations: A subset of hospitals has been pre-identified as potential sites for DCs. Only these candidate hospitals can host a DC.
Decisions to Make:
Sanquin needs to know which hospitals should serve as DCs such that the average drive time to other hospitals is minimized.
Critical Constraints:
Travel Time Limit: A hospital can only be assigned to a specific DC if the travel time between them does not exceed T minutes. This ensures blood products reach hospitals within a safe timeframe.
DC Activation Requirement: A hospital can only be assigned to a DC if that DC is operational (i.e., selected as one of the n DCs).
Objective:
Minimize the average drive time between hospitals and their assigned DCs. This is equivalent to minimizing the total drive time across all hospital-DC pairs, as the number of hospitals is fixed.
Operational Details
Drive Time vs. Cost: The drive time between a DC and a hospital directly translates to a transportation cost. Minimizing total cost in the model corresponds to minimizing total drive time.
Travel Time Limit (T): Assignments violating the T-minute threshold are strictly prohibited. For instance, if T = 60, no hospital can be paired with a DC more than 60 minutes away.
Why This Matters
Blood products have limited shelf lives, and emergencies require rapid delivery. By optimizing DC locations and assignments, Sanquin ensures:
Faster emergency response via minimized average drive times.
Compliance with time-sensitive delivery requirements through the T-minute constraint.
Cost-effective operations by avoiding unnecessary infrastructure (only n DCs are activated).
Sanquin, the Dutch blood bank, wants to locate blood distribution centers for hospitals
at some of the hospitals in the Netherlands. They wish to minimize the average drive time between the hospitals and its
nearest blood distribution center.
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
112