ARCHER
DRONE DEFENSE
ARCHER — VEHICLE DATA
The Observer Problem
In Ukraine, artillery batteries that are spotted by observation drones are destroyed within minutes by counter-battery fire. the artillery system's 30-second scoot means it leaves the firing position fast — but if a drone is watching the battery from 1-2 km altitude, it sees the entire area including the roads the FH77 uses to relocate. The next position is compromised before arrival. The critical defense is not protecting against the FPV that dives at Archer — it is blinding or destroying the observation drone that enables the artillery response. Every minute the observer drone operates is a minute closer to counter-battery fire landing on the battery.
Directed Jammer — Protecting Battery Frontage
the artillery system uses FSG-J1 directed jammer (€4,200) instead of the omnidirectional FSG-J2 used on tanks. The reason: omnidirectional jamming at 200m radius protects only the single the FH77 vehicle. A directed jammer with a 60° beam at 400m range protects the entire battery frontage — all three Archer vehicles in a typical firing position share one jammer's protection cone. The jammer is aimed toward the expected enemy observation direction (typically forward/east). Lisa 26 L2 recommends jammer orientation based on known drone activity patterns from the brigade threat picture.
Why Archer Gets the Premium Package
the artillery system costs €50M+ per battery. One Archer round costs €50,000. The entire 5-year CUAV cost for one Archer system (€15,250 initial + maintenance) equals the price of one-third of a single round. Losing an Archer to a €300 observation drone that called counter-battery fire is the most cost-asymmetric loss possible. The premium package — radar, directed jammer, dual interceptors — is justified because the thing being protected is irreplaceable in wartime. Sweden has 48 Archer systems. Each one lost reduces national artillery capability by 2%.
The directed jammer FSG-J1 creates a focused electromagnetic cone that disrupts drone control links across a 60-degree beam at 400 meters range. Unlike omnidirectional jammers that protect only the single vehicle, a directed unit positioned correctly covers the entire battery firing position. The jammer operator aims toward the expected enemy observation direction based on intelligence from the brigade threat picture.
The battery protection concept addresses a fundamental vulnerability that traditional counter-battery radar cannot solve. Counter-battery radar detects incoming artillery shells and computes the firing position — but this takes the full flight time of the shell plus processing, typically 30 to 90 seconds. A hovering observation drone reports the firing position instantly. The artillery response using drone-provided coordinates arrives faster than counter-battery radar can process — making the observation drone a more dangerous threat than the shells it directs.
Counter-Battery Timeline Analysis
Ukrainian counter-battery data from 2023-2025 establishes the threat timeline that drives Archer CUAV requirements. Observation drone spots firing position: T+0. Drone transmits coordinates to enemy artillery fire direction center: T+30 seconds. Fire mission calculated and transmitted to firing battery: T+1 minute. Enemy guns fire: T+2 minutes. Rounds in flight (15 km range at 152mm): T+2.5 minutes. Impact on Archer firing position: T+3 minutes. Archer shoot-and-scoot time: 30 seconds after last round fired.
The critical window: Archer must complete firing AND relocate before the counter-battery rounds arrive at T+3 minutes. If the observation drone is watching continuously, the drone sees Archer relocate and calls adjustment fire on the new position — extending the engagement indefinitely until Archer runs out of road or the observer drone is neutralized. This is why the CUAV package prioritizes blinding the observer over protecting against FPV attack: the FPV can destroy one Archer, but the persistent observer enables destruction of the entire battery through repeated fire adjustments.
← Part of C-UAS Vehicle Overview
External source: Archersystemet – Wikipedia
Implementation
# Archer Battery CUAV — Directed Jammer Coverage
import math
def jammer_coverage(beam_width_deg, range_m, n_archers=3, spacing_m=200):
"""Calculate if one directed jammer covers entire battery frontage."""
# Beam footprint at range
half_angle = math.radians(beam_width_deg / 2)
footprint_m = 2 * range_m * math.tan(half_angle)
# Battery frontage (3 Archers in line)
battery_front_m = (n_archers - 1) * spacing_m
covers = footprint_m >= battery_front_m
return {
"footprint_m": footprint_m,
"battery_front_m": battery_front_m,
"covers_battery": covers,
"margin_m": footprint_m - battery_front_m
}
# FSG-J1 directed jammer: 60° beam, 400m range
result = jammer_coverage(60, 400, n_archers=3, spacing_m=200)
print(f"Jammer footprint: {result['footprint_m']:.0f}m")
print(f"Battery frontage: {result['battery_front_m']}m")
print(f"Covers battery: {result['covers_battery']}")
# Output: 462m footprint > 400m frontage → YES covers all 3 Archers
Swedish Supply Chain
SUPPLY CHAIN & SECURITY RISK
Related Chapters
Sources
BAE Systems Archer FH77 BW L52 specifications. Ukrainian counter-battery response times (RUSI, 2024). Swedish artillery doctrine (public). Archer acquisition costs (Riksdagen budget proposition).