Reading — IADS Radar Taxonomy#
By the end of this lesson you should be able to:
Name the radar classes in a layered integrated air-defense system (IADS).
Match each class to its band, PRF regime, and beam type.
Map each class to the kill-chain link it advances.
Predict how low-observable (LO) design changes the IADS’s effective coverage at each layer.
An IADS is not one radar#
It is tempting to picture “the threat radar” as a single dish. A modern IADS is nothing of the sort. It is a cascade of specialized radars, each doing one job and handing the result to the next. A long-range set finds you; a 3D set builds a track; a fire-control set holds you tightly enough to shoot; a missile seeker takes over for the last few kilometers. Knowing which radar is which — from its band, PRF, and beam — is half of electronic warfare, because each class is attacked differently and sits at a different link of the kill chain.
The classes trade range for precision. The early ones see far but coarsely; the late ones see close but exactly. Information is handed off down the chain, and breaking a handoff degrades everything downstream.
Key Concept
The IADS isn’t one radar — it’s a cast of cooperating ones. Each trades range for precision, and each passes its track to the next. Break one handoff and the links downstream starve.
The cast of characters#
Detection layer — Early Warning (EW) radar#
The long-range eyes of the system. EW radars use UHF or L band for low atmospheric loss and good propagation, with large antennas and low PRF (big unambiguous range, poor velocity). The beam is a wide fan on a slow rotation, giving a 2D track only (range and azimuth, no height). Job: detect inbound activity at hundreds of kilometers and alert higher echelons. This is where stealth pays its biggest dividend in absolute kilometers.
Tracking layer — Acquisition (ACQ), Height-Finder (HF), GCI#
ACQ radars produce the 3D tracks that engagements need, typically in S band at long-but-shorter-than-EW range, with low-to-medium PRF. A 2D ACQ can be paired with a height-finder (HF) pencil beam to add elevation, or a modern 3D ACQ does both at once. GCI (ground-controlled intercept) sits at the command-and-control layer, vectoring interceptor aircraft using the 3D picture.
Engagement layer — TTR and TIR#
The target-tracking radar (TTR) is the SAM site’s fire-control sensor: X band, a narrow slewable pencil beam, medium-to-high PRF (often pulse-Doppler), at tens to a low hundred kilometers. The target-illuminating radar (TIR) floods the target with continuous energy so a semi-active missile’s seeker can home on the reflection. Break the TTR-to-missile lock and the engagement is over.
Terminal layer — AI, seekers, fuses#
AI (airborne interceptor) radar is a fighter’s X-band AESA fire control, running search, track, and scan-while-track. The missile’s own active seeker uses Ka or mmW for a compact aperture and very high PRF over the final 5–20 km. The proximity fuse is a very-short-range CW or high-PRF sensor that triggers the warhead at burst radius.
Class |
Band |
Range |
PRF |
Beam |
Job |
|---|---|---|---|---|---|
EW |
UHF / L |
~700 km |
Low |
Wide fan |
Detect, alert |
ACQ / HF |
S |
~400–470 km |
Low–med |
Fan + pencil |
3D track for handoff |
GCI |
S / C |
~350 km |
Med |
Medium |
Vector interceptors |
TTR |
X |
~150 km |
Med–high |
Pencil |
Fire-control track |
TIR |
X |
Illuminator |
CW |
Narrow |
Flood target for SARH |
AI |
X |
~80 km |
High |
Pencil |
Airborne intercept |
Seeker |
Ka |
< 20 km |
Very high |
Narrow |
Terminal homing |
Fuse |
mmW |
Burst radius |
CW / high |
Near |
Trigger warhead |
Mapping to the kill chain#
Each class advances one link of the chain from L1:
Kill-chain link |
Radar class |
Band |
|---|---|---|
Detect |
EW |
UHF / L |
Track |
ACQ + HF, GCI |
S |
Identify |
ACQ multi-mode, ESM |
S |
Engage (cue) |
TTR, AI |
X |
Engage (illuminate) |
TIR |
X |
Engage (terminal) |
Active seeker |
Ka |
Kill |
Proximity fuse |
mmW |
Break one row and you break the chain. EW investments tend to attack the early rows — they are cheaper to defeat and the payoff is higher, because everything downstream depends on them.
What LO does to the coverage#
Recall the fourth-power law: \(R_{\max}\) scales as \(\sigma^{1/4}\). A B-21-class target at roughly \(-30\) dBsm has about \(10^{-3}\) the RCS of a \(0\ \text{dBsm}\) legacy fighter, which collapses detection range to about 17.8% of the legacy value at every layer. Apply that to the notional ranges above:
Layer |
\(R_{\max}\) vs 1 m² |
\(R_{\max}\) vs B-21 (\(-30\) dBsm) |
Absolute shrink |
|---|---|---|---|
EW |
~700 km |
~125 km |
~575 km |
ACQ |
~470 km |
~84 km |
~386 km |
TTR |
~150 km |
~27 km |
~123 km |
AI |
~80 km |
~14 km |
~66 km |
The percentage reduction is the same everywhere — that is what \(\sigma^{1/4}\) guarantees. But the absolute kilometers bought are largest where the rings start largest: at the EW and ACQ layers. LO does not make the bomber invisible; it shrinks every ring proportionally, and the biggest raw payoff is at the long-range surveillance layers. The engagement layers still close in — which is why LO buys time and standoff, not invulnerability, and why the later blocks add active EW on top.
Type-along
Three IADS classes, one range equation, a \(0\) dBsm target. Type this with the instructor — these are the same notional parameters Project 1 hands you at L9.
c = 3e8; names = {'EW','ACQ','TTR'};
Pt = [2e6 1e6 100e3]; % W
G = [25 30 35 ]; % dBi, Gt = Gr
f = [0.5e9 3e9 10e9 ]; % Hz
Smin = [-158 -160 -150 ]; % dBW
lam = c ./ f; Gl = 10.^(G/10); Sw = 10.^(Smin/10);
R = ((Pt .* Gl.^2 .* lam.^2) ./ ((4*pi)^3 * Sw)).^(1/4);
for k = 1:3
fprintf('%-4s R_max = %6.1f km\n', names{k}, R(k)/1e3);
end
fprintf('Detected %.1fx farther out than tracked.\n', R(1)/R(3));
Nobody told the code which radar is “early warning.” The ordering fell out of \(P_t\), \(G\), \(\lambda\), and \(S_{\min}\). Which of those four does the most work in separating the EW ring from the TTR ring — and which one works against it?
Solution
EW R_max = 691.7 km
ACQ R_max = 473.8 km
TTR R_max = 145.9 km
Detected 4.7x farther out than tracked.
\(\lambda\) does the most work and \(G\) opposes it. The TTR transmits less power (100 kW vs 2 MW) at higher gain — that gain is worth \(3.2\times\) to the TTR — but its wavelength is \(20\times\) shorter, and \(\lambda^2\) under a fourth root costs it \(4.5\times\), while its \(S_{\min}\) is 8 dB less sensitive, costing another \(1.6\times\). Long wavelength plus a sensitive receiver buys the outer ring; the TTR trades that range away for the angular precision a fire-control solution needs. Hence the survivability headline: you are detected roughly \(4.7\times\) farther out than you can be tracked — detection is not engagement — and that gap is exactly the number Project 1 asks you to defend.
Discussion — classify the threat
You intercept these signals. Identify the most likely radar class, and be ready to defend the call out loud.
\(f = 1\) GHz, PRF \(= 200\) Hz, large antenna, \(360^\circ\) scan in seconds.
\(f = 10\) GHz, PRF \(= 10\) kHz, narrow pencil beam, locked on you.
\(f = 35\) GHz, very high PRF, range collapsing, under 10 km away.
Continuous-wave illumination at \(f = 10\) GHz, paired with a different pulse radar nearby.
Solution
EW radar — the UHF/L boundary, very low PRF, large rotating antenna: long-range surveillance.
TTR or AI — X band, pencil beam, locked: a fire-control track. Disambiguating the two needs more context (geometry from ES, an ELINT library).
Active missile seeker — Ka band, terminal, range collapsing: the missile is homing.
TIR — a CW illuminator beside a pulse tracker means a semi-active engagement is already underway. Time matters.
Wrap-Up#
An IADS is a cascade of radar classes, each doing one job and handing off to the next. Band, PRF, and beam type together tell you the class and the kill-chain link it serves. LO buys the most absolute kilometers at the EW and ACQ layers, while the engagement layers still close in — so stealth is standoff and time, not invisibility. Next, L8 supplies the missing piece behind every “\(R_{\max}\)”: how detection actually happens, in terms of SNR, \(P_d\), and \(P_{fa}\).