<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AI-enabled UAV route adaptation &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/ai-enabled-uav-route-adaptation/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Thu, 24 Sep 2026 23:26:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>AI-enabled UAV route adaptation &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>AI Learns to Refuel Drones Mid-Mission When Plans Fall Apart</title>
		<link>https://scienmag.com/ai-learns-to-refuel-drones-mid-mission-when-plans-fall-apart/</link>
		
		<dc:creator><![CDATA[Grant Pearson]]></dc:creator>
		<pubDate>Thu, 24 Sep 2026 23:26:58 +0000</pubDate>
				<category><![CDATA[Space]]></category>
		<category><![CDATA[adaptive green vehicle routing problem]]></category>
		<category><![CDATA[AI-enabled UAV route adaptation]]></category>
		<category><![CDATA[attention model]]></category>
		<category><![CDATA[autonomous drone refueling strategies]]></category>
		<category><![CDATA[drone swarm route optimization]]></category>
		<category><![CDATA[dynamic environments]]></category>
		<category><![CDATA[dynamic mission planning with UAVs]]></category>
		<category><![CDATA[fuel constraints]]></category>
		<category><![CDATA[fuel-constrained drone missions]]></category>
		<category><![CDATA[greedy algorithm]]></category>
		<category><![CDATA[handling drone losses during missions]]></category>
		<category><![CDATA[in-flight refueling]]></category>
		<category><![CDATA[KAIST]]></category>
		<category><![CDATA[LSTM]]></category>
		<category><![CDATA[mixed-integer linear programming]]></category>
		<category><![CDATA[operational challenges in drone fleet management]]></category>
		<category><![CDATA[real-time drone route replanning]]></category>
		<category><![CDATA[real-world drone mission complexity]]></category>
		<category><![CDATA[reinforcement learning]]></category>
		<category><![CDATA[rolling-horizon replanning]]></category>
		<category><![CDATA[rolling-horizon replanning framework]]></category>
		<category><![CDATA[UAV]]></category>
		<category><![CDATA[Unmanned aerial vehicle mid-mission refueling]]></category>
		<category><![CDATA[vehicle routing problem]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=213299</guid>

					<description><![CDATA[Researchers at KAIST have developed a reinforcement learning framework that lets fuel-constrained drone teams replan their routes in real time when missions go wrong, using mid-flight refueling depots to keep near-optimal performance within a ten-second computation budget.]]></description>
										<content:encoded><![CDATA[<p>When a drone swarm loses one of its aircraft mid-mission, the surviving vehicles face a brutal arithmetic problem: the remaining fuel in their tanks must now cover the tasks of a missing teammate, and every kilometer of detour to a refueling depot eats into that margin. A new study published in the International Journal of Aeronautical and Space Sciences by Beomjin Gwon, Euihyeon Choi, Jeonghun Lee, and Jaemyung Ahn of the Korea Advanced Institute of Science and Technology, together with Georgia Institute of Technology collaborator Euihyeon Choi, presents a rolling-horizon replanning framework that lets multiple unmanned aerial vehicles adapt their routes in real time while respecting strict fuel constraints. The work addresses one of the most persistent gaps between theoretical route optimization and the messy reality of dynamic missions, where wind gusts, vehicle losses, and pop-up tasks can render a carefully precomputed flight plan useless within minutes.</p>
<p>The core of the framework is a re-optimization subproblem the authors call the adaptive green vehicle routing problem, or AG-VRP. The green vehicle routing problem, originally developed in operations research to model fleets of alternative-fuel vehicles with limited range and mandatory refueling stops, assumes that every vehicle starts and ends at a single depot. That assumption collapses in a replanning scenario: when an agent is lost or a task set changes, the surviving agents are scattered across the mission area with varying amounts of fuel remaining, and they must continue from wherever they happen to be. The AG-VRP therefore allows arbitrary start locations for each agent, heterogeneous initial fuel states, and a single shared destination, while still requiring that every task be visited exactly once and that refueling depots be used as needed to keep each vehicle within its maximum travel range.</p>
<p>To guarantee that this subproblem can be solved to proven optimality when time permits, the researchers formulated it as a mixed-integer linear program. The formulation tracks binary decision variables indicating which arcs each agent traverses, continuous fuel variables that decrease with distance traveled and reset to maximum capacity at depots, and a sequence variable that eliminates subtours, the closed loops disconnected from the start and end nodes that plague vehicle routing formulations. Virtual depots, generated by copying each physical refueling location, allow depots to be visited multiple times by different agents. This mathematical model serves a dual role: it defines the theoretical lower bound against which faster methods are measured, and it provides optimal reference solutions in small problem instances where a commercial solver can exhaust the search space.</p>
<p>Optimality, however, is a luxury that mid-mission replanning cannot afford. The authors set a fixed computation budget of ten seconds per replanning epoch, reflecting the operational reality that a drone hovering with dwindling fuel cannot wait minutes for a solver. Within that budget, exact mixed-integer programming quickly becomes intractable as the number of tasks grows. The team therefore built a hierarchical solution suite. The first layer is a modified sequential greedy algorithm, a fast heuristic that assigns tasks to agents one at a time using a weighted cost that combines the distance to a candidate task with the distance from that task to the destination. The weighting factor discourages agents from picking up tasks near the end node early in their routes, which would otherwise produce inefficient gradual-approach behavior. The greedy algorithm also embeds explicit fuel logic: an agent only accepts a task if its remaining range can cover the trip to the task plus the worst-case distance onward to a depot or the destination, and it falls back to progressively less attractive tasks when the best candidate is fuel-infeasible.</p>
<p>The second and centerpiece layer is a reinforcement learning approach designed to overcome the myopia of greedy assignment. The authors cast the AG-VRP as a Markov decision process in which each decision step selects one agent and one node for it to visit next. The state captures every agent&#8217;s current location, remaining fuel, and partial trajectory, along with the set of unserved tasks. The reward is simply the negative of the total distance traveled by all agents, awarded only at the end of an episode, so maximizing expected return is mathematically equivalent to minimizing total travel distance. Training uses the REINFORCE gradient estimator with a rollout baseline, a technique in which a frozen copy of the policy serves as a comparison standard and is updated only when a paired statistical test confirms that the current policy has genuinely improved.</p>
<p>The neural architecture borrows from the attention models that have transformed combinatorial optimization in recent years. An encoder embeds all nodes of the problem, distinguishing depot nodes from task and start nodes and from the end node, and applies multi-head self-attention layers to capture the relationships among them. On the decoding side, the framework introduces two specialized modules: a vehicle selection decoder that chooses which agent should move next, and a node selection decoder that chooses where that agent should go. Crucially, each agent maintains a hidden state in a long short-term memory network that summarizes its entire partial trajectory, including refueling decisions, so the policy can reason about history rather than just the current snapshot. Remaining fuel is concatenated with the trajectory embedding before a linear layer produces the final vehicle representation, allowing the network to weigh range constraints directly when scoring candidate actions.</p>
<p>In deployment, the system does not gamble on a single method. At each replanning epoch, the mission snapshot, comprising agent positions, fuel levels, and remaining tasks, is converted into an AG-VRP instance, and both the greedy algorithm and the trained reinforcement learning policy run independently. The framework, dubbed RL plus MSGA, then selects whichever solution yields the lower total travel distance. Because the two methods have comparable runtimes, this selection strategy improves solution quality at essentially no additional computational cost. The case study illustrates the framework in action: three agents tasked with thirty tasks and supported by two refueling depots lose one of their number after ten tasks are completed, and the two survivors must absorb the remaining workload. The replanned routes produced by the exact solver, the learned policy, and the greedy heuristic are visually similar, but the reinforcement learning method achieves a smaller optimality gap than the greedy baseline.</p>
<p>The numerical experiments scale this evaluation dramatically, covering one thousand problem instances across six task counts from ten to one hundred and two fleet sizes, for a total of twelve thousand problem geometries. The results reveal a striking divide. As problem size grows, the proportion of instances for which the exact solver can even find a feasible solution within ten seconds falls sharply, whereas the proposed heuristics deliver feasible solutions in under one second with a one hundred percent success rate across all scenarios. On instances where the exact solver proves optimality, the reinforcement learning policy consistently lands closer to the optimum than the greedy method, and the combined strategy achieves the smallest gaps overall. Most remarkably, for the largest instances, where the solver struggles to find any high-quality feasible route, the learned policy sometimes matches or beats the solver&#8217;s output, producing negative optimality gaps.</p>
<p>Beyond raw distance, the study examined mission-oriented metrics that matter to operators. The reinforcement learning policy consistently leaves the largest fuel reserve at mission completion, indicating a more conservative routing style with a bigger safety margin, while the combined strategy minimizes the number of refueling operations without sacrificing route quality. Workload balance, measured by the standard deviation of tasks assigned to each agent, remained comparable across all methods, showing that the quality gains of the learned policy do not come at the price of overburdening individual vehicles. Even for one-hundred-task instances where optimal solutions could still be found, the combined approach kept optimality gaps below ten percent, a level of performance the authors attribute to the complementary strengths of learned global structure and fast greedy feasibility.</p>
<p>The implications extend beyond military surveillance and reconnaissance, the scenarios that motivate much of this line of research. The same mathematics applies to planetary surface exploration, where in-situ resource utilization stations serve as refueling depots for rovers, and to green logistics fleets of electric or alternative-fuel delivery vehicles that must recharge mid-route. The authors note that future work could incorporate kinematic path constraints such as minimum turning radius, which would replace straight-line distances with Dubins paths and make travel cost dependent on vehicle heading, as well as time windows, agent-specific tasks, and inter-agent collaboration. For now, the study demonstrates that a carefully trained attention-based policy, paired with a fuel-aware greedy fallback, can keep a fuel-constrained drone team flying coherently through the kind of mid-mission shocks that would ground a statically planned fleet.</p>
<p><strong>Subject of Research:</strong> Real-time replanning of fuel-constrained multi-UAV missions using reinforcement learning and greedy heuristics</p>
<p><strong>Article Title:</strong> Adaptive Planning for Multiple UAVs with In-Flight Refueling</p>
<p><strong>Article References:</strong> Gwon, B., Choi, E., Lee, J., &amp; Ahn, J. (2026). Adaptive Planning for Multiple UAVs with In-Flight Refueling. <em>International Journal of Aeronautical and Space Sciences</em>. <a href="https://doi.org/10.1007/s42405-026-01249-w" rel="noopener noreferrer">https://doi.org/10.1007/s42405-026-01249-w</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s42405-026-01249-w" rel="noopener noreferrer">10.1007/s42405-026-01249-w</a></p>
<p><strong>Keywords:</strong> UAV, reinforcement learning, vehicle routing problem, in-flight refueling, rolling-horizon replanning, attention model, mixed-integer linear programming, greedy algorithm, LSTM, dynamic environments, fuel constraints, KAIST</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">213299</post-id>	</item>
	</channel>
</rss>
