The electromagnetic spectrum is the lifeblood of modern military and civilian operations. For drone formations, which are increasingly becoming the central component in surveillance, communication relays, logistics, and coordinated missions, effective access to this resource is not merely beneficial—it is mission-critical. The traditional paradigm of static spectrum allocation, where specific frequency bands are rigidly assigned to specific users or services, is fundamentally incompatible with the dynamic, agile, and densely populated operational environment of a drone formation. Static allocation leads to severe inefficiency, as large portions of the licensed spectrum remain underutilized for significant periods, while the demand from proliferating drone platforms skyrockets. This mismatch creates a “spectrum scarcity” that is largely artificial. Therefore, the transition from static to dynamic spectrum management (DSM) is an imperative evolution. DSM aims to intelligently and opportunistically share the spectrum by allowing secondary users (e.g., drone formation members) to access temporarily unused licensed bands—termed “spectrum holes” or “white spaces”—without causing harmful interference to primary (licensed) users. This review analyzes the importance, architectural frameworks, key enabling technologies, and future challenges of implementing robust DSM systems for collaborative drone formation operations.

Spectrum Usage Characteristics of Drone Formations
A drone formation is a complex system of systems, each equipped with multiple electronic payloads with distinct spectral requirements. The spectrum usage can be broadly categorized as follows:
- Command, Control, and Communication (C3) Links: This is the most critical and demanding category. It includes uplinks for ground control station (GCS) commands, downlinks for telemetry and sensor data (e.g., high-definition video, radar imagery), and inter-drone communication for coordination. These links require high reliability, low latency, and significant bandwidth, especially for real-time video and data fusion within the drone formation.
- Navigation and Sensing Payloads: Drones rely on signals from Global Navigation Satellite Systems (GNSS), inertial measurement units (IMUs), and terrain databases. Sensing payloads like Synthetic Aperture Radar (SAR), Light Detection and Ranging (LiDAR), and electro-optical/infrared (EO/IR) cameras generate vast amounts of data but may use dedicated, internal frequencies for processing. Their operation must be protected from interference.
- Electronic Warfare (EW) Systems: Drones may carry jamming pods to disrupt adversary communications or radar, or signals intelligence (SIGINT) payloads to monitor the electromagnetic environment. These systems actively transmit or are highly sensitive receivers, making their spectral coexistence with friendly C3 systems a major challenge for drone formation dynamic spectrum management.
The dynamic nature of a drone formation—with changing topology, mission phases (take-off, ingress, loitering, attack, egress), and unpredictable adversarial jamming—necessitates a spectrum management system that is equally dynamic. It must ensure compatibility among the formation’s own systems while adaptively finding and exploiting available spectrum opportunities in a contested environment.
Architectures for Dynamic Spectrum Management Systems
Cross-Layer Design Framework
Traditional layered protocol stacks (e.g., OSI model) are inadequate for DSM due to their rigid isolation between layers. Cross-layer design is essential, creating feedback loops between physical (PHY), medium access control (MAC), network (NET), and transport (TRN) layers to optimize spectrum use holistically. A conceptual cross-layer architecture for a cognitive drone formation node includes:
- Spectrum Sensing (PHY Layer): Detects primary users and identifies spectrum holes. Sends sensing data to the Spectrum Mobility and Spectrum Management modules.
- Spectrum Sharing (MAC Layer): Handles channel access, scheduling, and sharing among secondary users. Provides link-layer metrics to the Spectrum Mobility module.
- Spectrum Decision & Management (Cognitive Engine): A central cognitive module that analyzes information from all layers. It performs spectrum characterization (bandwidth, duration, interference), selects the optimal channel, and decides on parameters like modulation and coding scheme (MCS).
- Spectrum Mobility (Handoff Management): Manages the seamless transition of communication links from one frequency to another when the primary user reclaims the band or channel conditions degrade. It uses inputs from sensing (PHY), queueing delays (MAC), and routing stability (NET).
This integrated approach allows a drone formation member to, for example, sense a deteriorating channel (PHY), anticipate a needed handoff (Mobility), request a new channel from a formation-level allocator (Management), and adjust its routing protocol (NET) accordingly—all in a coordinated manner.
System Topology: Centralized vs. Distributed
The management system’s topology is crucial for a drone formation.
- Centralized: A leader drone or a ground control station acts as a spectrum broker. All drones report their local spectrum observations to the central entity, which computes an optimal allocation map and broadcasts it. This simplifies coordination and can achieve global optimum solutions but creates a single point of failure and may suffer from latency and scalability issues in large, fast-moving formations.
- Distributed: Each drone in the drone formation makes autonomous spectrum decisions based on local sensing and limited information exchange with neighbors. This is more robust, scalable, and responsive, aligning well with the ad-hoc nature of formations. However, it risks converging to sub-optimal solutions due to incomplete information and requires sophisticated algorithms to avoid conflicts.
- Hybrid: A promising approach for drone formation dynamic spectrum management is a cluster-based hybrid model. The formation is divided into clusters, each with a cluster head that manages spectrum locally (semi-centralized). Cluster heads then coordinate amongst themselves in a distributed fashion. This balances efficiency, robustness, and scalability.
Intelligent Management via Multi-Agent Systems (MAS)
Modeling the dynamic spectrum management system as a Multi-Agent System (MAS) offers a powerful framework for distributed intelligence. Each drone, or a logical management entity within a cluster, is modeled as an autonomous agent with properties like autonomy, reactivity, pro-activeness, and social ability. These agents collaborate through negotiation, coordination, and potentially game-theoretic interactions to achieve shared and individual spectrum access goals. An MAS-based architecture for a battlefield DSM system might include agent types for:
- Spectrum Monitoring & Sensing Agent: Collects and pre-processes RF environmental data.
- Spectrum Decision & Allocation Agent: Executes allocation algorithms based on policy and perceived conditions.
- Situation Awareness & Display Agent: Fuses spectrum data with operational context for human operators.
Agents communicate via a shared “blackboard” or direct messaging, enabling a flexible, resilient, and self-organizing management network ideal for a drone formation operating in a dynamic electromagnetic environment.
Key Enabling Technologies
1. Spectrum Sensing
Accurate and rapid detection of primary users is the foundation of safe spectrum sharing. Techniques vary in complexity and required prior knowledge.
Single-Node Sensing:
- Energy Detection: The simplest method. It measures the received signal power in a band and compares it to a threshold. It requires no prior knowledge of the primary signal but is vulnerable to noise uncertainty and cannot distinguish between signal types.
$$H_0: Y[n] = W[n] \quad \text{(Noise only)}$$
$$H_1: Y[n] = X[n] + W[n] \quad \text{(Signal + Noise)}$$
where $Y[n]$ is the received sample, $X[n]$ is the primary signal, and $W[n]$ is noise. The decision is based on the test statistic $T = \sum_{n=1}^{N} |Y[n]|^2$. - Matched Filter Detection: The optimal detector if the primary signal’s waveform (modulation, pulse shape) is known. It correlates the received signal with a known template. It is fast and achieves high probability of detection but is inflexible.
- Cyclostationary Feature Detection: Exploits the inherent periodicity (e.g., in carrier frequency, symbol rate) of man-made signals. By analyzing the spectral correlation function, it can detect signals at very low signal-to-noise ratios (SNR) and discriminate between different signal types, which is highly valuable for a drone formation analyzing a complex environment.
Cooperative Sensing: To combat channel fading (shadowing, multipath) and the hidden node problem, drones in a drone formation can collaborate by sharing sensing data.
| Type | Description | Advantages | Disadvantages |
|---|---|---|---|
| Centralized | Drones send local sensing data (hard or soft decisions) to a fusion center (leader/ground station) for a final decision. | High detection accuracy; coherent decision-making. | Single point of failure; high control channel overhead; latency. |
| Distributed | Drones exchange sensing data with neighbors and make independent local decisions. No central controller. | Robust; scalable; lower overhead; aligns with drone formation ad-hoc nature. | Risk of inconsistent decisions; requires consensus algorithms. |
2. Spectrum Allocation and Sharing
Once spectrum holes are identified, they must be allocated to the members of the drone formation efficiently and fairly. This is a complex optimization problem.
| Algorithm Class | Core Idea | Applicability to Drone Formation |
|---|---|---|
| Graph-Theoretic (Graph Coloring) | Models the network as a conflict graph where nodes (drones) are connected if they interfere. Allocating non-interfering channels is equivalent to coloring the graph. | Good for modeling static interference constraints. Requires known, relatively stable topology. Less suitable for highly dynamic scenarios. |
| Game-Theoretic | Models drones as rational players choosing strategies (channel, power) to maximize their own utility (e.g., throughput, SINR). Seeks a stable Nash Equilibrium. | Excellent for distributed dynamic spectrum management. Can model selfish (non-cooperative) or collaborative (coalitional) behaviors within the drone formation. Utility function design is critical. |
| Optimization-Based | Formulates allocation as a constrained optimization problem (e.g., maximize sum rate subject to interference limits). Solved using convex optimization, Lagrange multipliers, etc. | Suited for centralized or cluster-based control where global information is available. Can provide optimal solutions but is computationally intensive. |
| Heuristic/Metaheuristic | Uses guided search methods like Genetic Algorithms (GA), Particle Swarm Optimization (PSO), or Simulated Annealing (SA) to find near-optimal solutions. | Useful for complex, non-convex problems with multiple constraints. Flexible and can be adapted to various drone formation objectives. Convergence time can be a concern. |
A canonical optimization problem for a centralized allocator could be:
$$\max_{\{a_{i,k}, P_{i,k}\}} \sum_{i=1}^{N} \sum_{k=1}^{K} a_{i,k} \cdot \log_2(1 + \frac{P_{i,k} \cdot |h_{i,k}|^2}{N_0 + I_{i,k}})$$
$$\text{subject to: } \sum_{k} a_{i,k} \leq 1, \quad a_{i,k} \in \{0,1\}, \quad \sum_{k} P_{i,k} \leq P_{max}, \quad I_{i,k} \leq I_{thresh}^{PU}$$
where $a_{i,k}$ is the binary channel assignment, $P_{i,k}$ is the power, $h_{i,k}$ is the channel gain for drone $i$ on channel $k$, $N_0$ is noise, $I_{i,k}$ is interference, and $I_{thresh}^{PU}$ is the interference threshold for primary users.
3. Spectrum Access Models
This defines the fundamental policy for how secondary users (drones) coexist with primary users.
| Model | Principle | Key Technology/Challenge |
|---|---|---|
| Overlay (Opportunistic) | Drones access a channel only when it is sensed to be idle. They must vacate immediately upon primary user detection. | Requires highly reliable spectrum sensing and fast handoff mechanisms. Predominant model for drone formation dynamic spectrum management. |
| Underlay | Drones can transmit simultaneously with primary users, but their transmission power must be so low that the interference at the primary receiver is below the noise floor. | Relies on spread-spectrum techniques like Ultra-Wideband (UWB). Severe power limitation restricts communication range, which may be suitable only for short-range intra-drone formation links. |
| Interweave | A stricter form of overlay where secondary users not only avoid occupied bands but also avoid causing any interference, often requiring precise spatial and temporal awareness. | Demands advanced geolocation and sophisticated environmental modeling. Offers the highest protection to primary users. |
4. Power Control
Even when operating in an overlay mode, controlling transmission power is vital for a drone formation. It minimizes intra-formation interference, extends battery life, and reduces the probability of detection/jamming. It is often combined with spectrum allocation in a joint optimization. A classic distributed approach is based on non-cooperative game theory, where each drone $i$ seeks to maximize its utility $u_i(p_i, \mathbf{p}_{-i})$ which is a function of its own power $p_i$ and the power vector of others $\mathbf{p}_{-i}$. A common utility function that balances achieving good Signal-to-Interference-plus-Noise Ratio (SINR) with power cost is:
$$u_i(p_i, \mathbf{p}_{-i}) = \log(\gamma_i) – \alpha_i p_i$$
where $\gamma_i$ is the SINR for drone $i$ and $\alpha_i$ is a pricing factor. The Nash Equilibrium is found iteratively. For centralized control, the well-known Water-Filling algorithm provides the optimal power allocation across sub-channels for a single user:
$$P_k = \max(0, \frac{1}{\lambda} – \frac{N_0}{|h_k|^2})$$
where $P_k$ is power on sub-channel $k$, $\lambda$ is a Lagrange multiplier chosen to meet the total power constraint, $N_0$ is noise power, and $h_k$ is the channel gain. This principle can be extended to multi-user cases.
Joint Optimization Strategies: The Path Forward
The true potential of dynamic spectrum management for drone formation is unlocked by jointly optimizing multiple parameters across layers. Isolating sensing, allocation, access, and power control leads to sub-optimal performance. Promising joint strategies include:
- Joint Spectrum Sensing and Access: Using Partially Observable Markov Decision Processes (POMDP) to model the uncertain outcome of sensing and decide whether to access a channel, which channel to access, and for how long, maximizing the expected long-term reward (e.g., throughput).
- Joint Spectrum and Power Allocation: Solving optimization problems that assign both channel and transmission power level to each drone, often formulated as a mixed-integer non-linear programming (MINLP) problem, tackled with dual decomposition or matching theory.
- Joint Spectrum Prediction and Handoff: Using Hidden Markov Models (HMM) or machine learning to predict the future state (idle/busy) of channels, enabling proactive and seamless spectrum handoffs before the current channel becomes unusable, which is critical for maintaining C3 link continuity in a mobile drone formation.
Conclusion and Future Research Directions
Dynamic spectrum management is a cornerstone technology for enabling scalable, robust, and spectrally efficient operations of drone formation in congested and contested environments. While significant progress has been made in core technologies like cooperative sensing, game-theoretic allocation, and cross-layer design, considerable challenges remain for practical deployment in tactical drone formation.
Key Open Challenges and Future Directions:
- Real-time, Robust Sensing under Mobility: Developing fast and accurate sensing algorithms that work reliably under high Doppler shifts and rapidly changing propagation conditions characteristic of drone formation flight.
- Security and Resilience: Protecting the DSM system itself from attacks such as Primary User Emulation (PUE) attacks, Byzantine attacks in cooperative sensing, or jamming of control channels. Trust management among drones in a drone formation is crucial.
- Machine Learning-Enabled Cognition: Integrating deep reinforcement learning (DRL) and other ML techniques to allow drones to learn optimal spectrum access policies directly from interaction with the environment, adapting to unknown interference patterns and complex primary user behaviors.
- Standardization and Protocol Design: Developing lightweight, secure, and standardized protocols for information exchange (sensing data, allocation decisions) within a drone formation that are compatible with existing tactical data links.
- Integration with Mission Planning: Coupling dynamic spectrum management with the mission-level trajectory planning of the drone formation. Drones could be routed not only to avoid physical threats but also to navigate towards areas of better spectrum availability.
Addressing these challenges requires a concerted interdisciplinary effort. The goal is to transition DSM from a theoretical concept to an integrated, autonomous, and resilient subsystem that empowers drone formation to achieve spectral dominance and mission success in the complex electromagnetic battlespace of the future.
