The Radar Principle
The electronic principle on which radar operates is very similar to sound-wave reflection. If you shout toward a rocky canyon, you hear an echo; knowing the speed of sound lets you estimate distance. Radar does the same with electromagnetic energy at the speed of light.
RADAR is an acronym: Radio Detection And Ranging. The term was officially coined in November 1940 by U.S. Navy Lieutenant Commander Samuel M. Tucker and F. R. Furth, and was adopted by the Allied powers by agreement in 1943.
A primary radar set has five functional blocks: Transmitter -> Duplexer -> Receiver <- Antenna <- Indicator. The transmitter produces the short, high-power RF pulses. The duplexer alternately switches the antenna between transmitter and receiver — necessary because the high-power pulse would destroy the receiver if allowed to enter it simultaneously. The receiver amplifies and demodulates the returned echo signal. The antenna both radiates the pulse and captures the echo. The indicator — classically a PPI scope — converts echo timing into a geographical display: range as radial distance from centre, bearing as the sweep angle.
The PPI scope displays echoes as bright blips. The longer the pulse was delayed by travel time, the further from the centre the blip appears. The direction of the deflection matches the direction the antenna is pointing at the moment of reception. This two-dimensional map of azimuth and range is the fundamental radar picture that air traffic control, military surveillance, and weather systems all build on.
Backscatter is the key physics term: it is the fraction of scattered energy that travels back in the direction of the incident ray — back toward the transmitter. A larger, more reflective target produces stronger backscatter and therefore a stronger echo signal.
| Block | Function | Analogy |
|---|---|---|
| Transmitter | Generates the short, high-power RF pulse | The voice that shouts the echo question |
| Duplexer | Switches antenna between TX and RX; protects receiver | The valve that opens for shout, then closes to listen |
| Antenna | Focuses transmitted energy; captures echo energy | The directional megaphone and microphone |
| Receiver | Amplifies and demodulates the returned echo signal | The ear that amplifies the faint echo |
| Indicator / PPI | Displays echoes as range-bearing blips on a rotating sweep | The map drawn from the echo information |
Measuring Range
The fundamental range equation is R = c₀ · t / 2, where c₀ is the speed of light (3 × 10⁸ m/s) and t is the measured round-trip time. The factor of two appears because the pulse must travel to the target and back — twice the range. A round-trip time of 1 µs corresponds to a range of approximately 150 m; 1 ms corresponds to 150 km.
Maximum unambiguous range (Rmax) constrains how far the radar can reliably see. If the next pulse is transmitted before the previous echo returns, the receiver cannot determine which pulse the echo belongs to — a range ambiguity. The boundary is set by the Pulse Repetition Time (PRT): Rmax = c₀ / (2 · fp), where fp is the Pulse Repetition Frequency. A PRF of 1 000 Hz gives PRT = 1 ms and Rmax = 150 km. Raising the PRF shortens Rmax; lowering it extends Rmax but reduces data rate.
Minimum range (Rmin) — sometimes called the blind range — is the closest distance a target can be and still be detected. A monostatic radar uses a single antenna for both transmitting and receiving; during transmission, the receiver is switched off by the duplexer. A target so close that its echo returns while the transmitter is still firing, or while the duplexer is recovering, is eclipsed. The formula is Rmin = c₀ · (τ + t_recovery) / 2, where τ is pulse width and t_recovery is the duplexer recovery time. A 1 µs pulse typically gives Rmin ≈ 150 m — generally acceptable. Pulse-compression radars with long coded waveforms (tens to hundreds of µs) suffer large Rmin values.
| Parameter | Formula | Physical Meaning | Analyst Implication |
|---|---|---|---|
| Slant range R | R = c₀ · t / 2 | Line-of-sight distance derived from round-trip echo delay | Primary range output of any pulse radar |
| Max unambiguous range | Rmax = c₀ / (2 · fp) | Furthest range at which echoes return before next pulse | Sets the instrumented range; increasing PRF shrinks it |
| Min range (blind range) | Rmin = c₀ · (τ + t_rec) / 2 | Closest range where target is not eclipsed by TX or recovery | Short-pulse radars achieve small Rmin; pulse-compression radars do not |
c0 = 3e8 # speed of light, m/s
t_roundtrip = 1e-3 # 1 millisecond
R = c0 * t_roundtrip / 2
print(f"Range: {R / 1000:.1f} km") # 150.0 km
# Max unambiguous range from PRF
prf = 1000 # 1 000 pulses per second
R_max = c0 / (2 * prf)
print(f"Rmax: {R_max / 1000:.1f} km") # 150.0 kmRmax and instrumented range are not the same
The maximum unambiguous range is a physics constraint set by PRF. The instrumented (displayed) range is a design choice — it must be ≤ Rmax. A radar showing 200 km but operating at an Rmax of 150 km will produce ambiguous echoes beyond 150 km that appear as ghost returns at shorter apparent ranges.
Measuring Direction & Height
The angular determination of a target is governed by antenna directivity — the ability of the antenna to concentrate transmitted energy in a particular direction. A highly directive antenna produces a narrow beam; the target bearing is simply the direction the antenna is pointing when the echo signal strength peaks.
True bearing is the angle between true north and the line pointing directly at the target, measured clockwise in the horizontal plane. Relative bearing is the same angle measured from the vessel's or aircraft's own heading line. Most tactical displays work in true bearing after a GPS or gyro north-reference is applied. Older radar sets required an expensive compass or trigonometric survey; modern sets resolve north automatically from GPS.
Azimuth accuracy depends on antenna beamwidth: a narrower beam means greater pointing precision. The peak echo method — finding the antenna angle that maximises return signal — is used by search radars. Weapons-control and guidance radars use automatic tracking circuits that lock onto the pointing angle of maximum return.
Elevation angle (ε) is the angle between the horizontal plane and the line of sight, measured in the vertical plane. It is positive above the horizon and negative below. Knowing both slant range R and elevation angle ε, target height h is computed: h ≈ R · sin(ε) (for short ranges where Earth's curvature can be ignored).
Height-finding radars use a very narrow fan beam scanned in elevation. A 3D radar combines azimuth rotation with electronic elevation scanning to provide range, bearing, and height in a single system. Search radars that do not scan in elevation are 2D sensors — they give range and bearing but not height, requiring a separate height-finder to build a full 3D track.
| Term | Plane | Definition |
|---|---|---|
| True bearing | Horizontal | Clockwise angle from true north to the target line of sight |
| Relative bearing | Horizontal | Clockwise angle from own-ship/aircraft heading to the target |
| Azimuth | Horizontal | Same concept as bearing; common in military and air-traffic contexts |
| Elevation angle ε | Vertical | Angle above or below the horizon toward the target |
| Height h | Vertical | Derived from R · sin(ε); requires a 3D radar or height-finder |
| Type | Outputs | Limitation |
|---|---|---|
| 2D search radar | Range + azimuth | No elevation; cannot compute height without a separate height-finder |
| Height-finder radar | Elevation angle for a given target | Typically cued by a 2D radar; limited search capability |
| 3D radar | Range + azimuth + elevation | More complex; phased-array or mechanically-scanned fan beam in elevation |
2D radar range is slant range, not ground range
Slant range is the line-of-sight distance from the antenna to the target. Ground range — the horizontal distance — is shorter and requires knowledge of the target's elevation angle. Confusing slant and ground range is a common source of positional error in track fusion.
Resolution & Accuracy
Resolution is the ability to distinguish two separate targets. Accuracy is how closely the measured position of a single target matches its true position. A radar can have excellent accuracy — placing a lone aircraft within metres of its true position — while having poor resolution that merges two nearby aircraft into one blip. These properties improve through different engineering levers.
Range resolution (ΔR) is the minimum separation in range between two targets on the same bearing for them to appear as two distinct returns. The theoretical limit is half the pulse width expressed as a distance: ΔR = c₀ · τ / 2. A 1 µs pulse gives ΔR = 150 m. Two aircraft separated by less than this distance in range will merge into a single elongated blip. Pulse-compression systems decouple range resolution from pulse width: a long coded pulse achieves the resolution of a short pulse after compression, determined by transmitter bandwidth rather than pulse width.
Angular (azimuth) resolution is the minimum angular separation at which two targets at the same range appear as distinct returns. It is set by the antenna's −3 dB beamwidth Θ: two targets must be separated by more than Θ to be resolved. At slant range R, this corresponds to a linear separation SA ≈ R · Θ (with Θ in radians). Narrower beamwidths — achieved with larger antennas — produce better angular resolution. At 100 km range with a 1° beam, SA ≈ 1.75 km.
The accuracy vs resolution distinction matters for EW and intelligence work. A signal intercept may accurately geolocate an emitter while being unable to resolve two co-located emitters into separate tracks. Conversely, high resolution enables discrimination of closely spaced contacts that accuracy alone cannot separate.
| Type | Formula | What Drives It | Practical Implication |
|---|---|---|---|
| Range resolution ΔR | c₀ · τ / 2 | Pulse width τ (or transmitter bandwidth for pulse-compression) | Short pulses or pulse-compression required for fine range separation |
| Angular resolution SA | R · Θ (Θ in radians) | Antenna beamwidth Θ | Large antenna aperture needed for fine angular separation at long range |
| Range accuracy | Depends on timing precision and SNR | Receiver bandwidth, signal-to-noise ratio | Can be much better than ΔR/2 with centroiding |
| Angular accuracy | Depends on SNR and beam shape | Signal-to-noise ratio, monopulse or beam-splitting technique | Tracking radars achieve accuracy << beamwidth |
Resolution ≠ accuracy
Analysts sometimes equate "the radar shows two contacts" with "the radar is accurate." They measure different things. A weather radar might accurately place a storm cell but be unable to resolve two aircraft flying in close formation inside it.
Radar Timing
A pulsed radar transmits a short burst of RF energy, then listens for echoes, then transmits again. This cycle repeats at the Pulse Repetition Frequency (PRF) — the number of pulses emitted per second. The reciprocal is the Pulse Repetition Time (PRT), also called the interpulse period: PRT = 1/PRF.
Within each PRT, time is divided between the transmit phase (pulse width τ) and the listen/receive phase. The receive phase starts after the duplexer switches from TX to RX, which takes a short recovery time. The receive window closes just before the next transmit pulse to prevent interference.
Pulse width (τ) determines both energy per pulse (longer pulse = more energy) and the minimum range and range resolution. Narrow pulses are preferred for resolution and short Rmin but deliver less energy per pulse, reducing maximum detection range.
Duty cycle (D) is the fraction of time the transmitter is active: D = τ / PRT = τ × PRF. A transmitter running for 1 µs in a 1 ms period has D = 1/1000 = 0.001, or 0.1%. Duty cycle links peak power to average power: P_avg = P_peak × D. Average power matters more than peak power for energy-on-target and thermal limits. Modern pulse-compression radars maximise duty cycle with coded long pulses, achieving high average power while maintaining fine resolution after compression.
The core timing trade-off is: higher PRF -> shorter PRT -> shorter Rmax -> higher duty cycle -> more average power. Radar designers choose PRF based on the required unambiguous range; everything else follows.
| Parameter | Symbol | Relationship | Typical Values |
|---|---|---|---|
| Pulse Repetition Frequency | PRF | Number of pulses per second | 250 Hz – 100 kHz |
| Pulse Repetition Time | PRT | PRT = 1 / PRF | 10 µs – 4 ms |
| Pulse width | τ | Sets energy, Rmin, and ΔR | 0.1 µs – several ms (coded) |
| Duty cycle | D | D = τ / PRT = τ × PRF | 0.001 (0.1%) to 0.5 (50%) |
| Average power | P_avg | P_avg = P_peak × D | Typically 1 W – 50 kW |
| Increasing PRF… | Effect on Rmax | Effect on Duty Cycle | Net Consequence |
|---|---|---|---|
| Search radar (low PRF) | Large Rmax | Low duty cycle, low average power | Good for long-range surveillance, less energy per unit time |
| Tracking radar (medium PRF) | Moderate Rmax | Moderate duty cycle | Balance between range and data rate |
| Airborne intercept (high PRF) | Short Rmax — range ambiguities managed | High duty cycle, more average power | Good velocity measurement; range must be resolved separately |
Average power drives detection, not peak power alone
A system with very high peak power but extremely low duty cycle may deliver less energy-on-target than a lower-peak-power system with a higher duty cycle. After the introduction of pulse compression, peak power and maximum range are no longer directly proportional — average power and duty cycle matter more.
The Radar Equation & Detection
The radar range equation describes how received echo power depends on transmit power, antenna characteristics, range, and the target's reflectivity. The simplified monostatic form is:
Pe = (PS · G² · λ² · σ) / [(4π)³ · R⁴]
where Pe is received echo power, PS is transmit power, G is antenna gain, λ is wavelength, σ is the radar cross section of the target, and R is slant range. Because R appears in the denominator to the fourth power, doubling range reduces received power by a factor of 16. This is the fundamental reason long-range radar requires very high transmit power or large antenna apertures.
Rearranging for the maximum range at which Pe equals the minimum detectable signal:
Rmax = ⁴√[(PS · G² · λ² · σ) / ((4π)³ · Smin)]
Increasing any of PS, G², or σ improves range; improving receiver sensitivity (lower Smin) does the same.
Radar Cross Section (RCS, σ) is the target-specific quantity that quantifies how much electromagnetic energy is backscattered toward the radar. It is expressed in square metres and depends on: the physical geometry and exterior features of the target, the direction of illumination (aspect angle), the radar's operating frequency, and the electrical properties of the target surface. RCS is not the physical cross-sectional area — a corner reflector far smaller than 1 m² can have an RCS of 1 000 m². A large transport aircraft has RCS of order 10–100 m² broadside; a fighter aircraft 1–5 m²; a stealth aircraft < 0.01 m². Measures to reduce RCS — shaping, radar-absorbing material, internal weapon carriage — constitute stealth technology.
For analytics work, the practical implication is: the same radar will detect a high-RCS tanker at much longer range than a low-RCS drone. Range assessments must account for the target's RCS, which is often uncertain and aspect-dependent, not a fixed number.
| Symbol | Name | Units | Effect on Rmax if Doubled |
|---|---|---|---|
| PS | Transmit power | W | ×2 PS → Rmax increases by ⁴√2 ≈ 19% |
| G | Antenna gain | dimensionless | ×2 G → Rmax increases by ⁴√4 ≈ 41% (G² term) |
| λ | Wavelength | m | ×2 λ (lower freq) → Rmax increases 41%; but beam broadens |
| σ | Radar cross section | m² | ×2 σ → Rmax increases 19% |
| Smin | Minimum detectable signal | W | ÷2 Smin (better receiver) → Rmax increases 19% |
| R | Range | m | R⁴ in denominator — doubling range requires 16× more received power |
| Target Type | Typical RCS (m²) | Analytic Implication |
|---|---|---|
| Large cargo ship | 10 000 – 100 000 | Detectable at extreme range even by low-power radars |
| Large transport aircraft (broadside) | 10 – 100 | Reliably tracked by long-range air-defence radars |
| Fighter aircraft | 1 – 5 | Standard air-defence target; well-characterised in libraries |
| Cruise missile | 0.1 – 1 | Requires good radar geometry and signal processing to track |
| Stealth aircraft | < 0.01 | Requires very favourable geometry or bistatic collection |
| Bird / large drone | 0.001 – 0.01 | Often at or below radar detection threshold; clutter problem |
import math
P_s = 1e6 # transmit power: 1 MW
G = 1000 # antenna gain (30 dB)
lam = 0.03 # wavelength: 3 cm (X-band)
sigma = 1.0 # RCS: 1 m² (fighter-sized target)
S_min = 1e-13 # min detectable signal: -100 dBW
numerator = P_s * G**2 * lam**2 * sigma
denominator = (4 * math.pi)**3 * S_min
R_max = (numerator / denominator) ** 0.25
print(f"Rmax: {R_max / 1000:.1f} km") # example outputRCS is aspect-dependent — a single value is an oversimplification
An aircraft's RCS can vary by several orders of magnitude depending on which face is illuminated. A head-on stealth aircraft may have RCS < 0.01 m², while the same aircraft viewed from the side may present > 1 m². Range assessments based on a single RCS value without accounting for geometry will be wrong at angles outside the assumed aspect.
Decision Trees
Which radar measurement answers my question?
What does my operational question require?
Knowledge Check
Test your understanding with 3 questions. You need 2/3 to pass.