radareqrng

Maximum theoretical range estimate

Syntax

maxrng = radareqrng(lambda,SNR,Pt,Tau)
maxrng = radareqrng(...,Name,Value)

Description

maxrng = radareqrng(lambda,SNR,Pt,Tau) estimates the theoretical maximum detectable range maxrng for a radar operating with a wavelength of lambda meters with a pulse duration of Tau seconds. The signal-to-noise ratio is SNR decibels, and the peak transmit power is Pt watts.

maxrng = radareqrng(...,Name,Value) estimates the theoretical maximum detectable range with additional options specified by one or more Name,Value pair arguments.

Input Arguments

lambda

Wavelength of radar operating frequency (in meters). The wavelength is the ratio of the wave propagation speed to frequency. For electromagnetic waves, the speed of propagation is the speed of light. Denoting the speed of light by c and the frequency (in hertz) of the wave by f, the equation for wavelength is:

λ=cf

Pt

Transmitter peak power in watts.

SNR

The minimum output signal-to-noise ratio at the receiver in decibels.

Tau

Single pulse duration in seconds.

Name-Value Pair Arguments

'Gain'

Transmitter and receiver gain in decibels (dB). When the transmitter and receiver are colocated (monostatic radar), Gain is a real-valued scalar. The transmit and receive gains are equal. When the transmitter and receiver are not colocated (bistatic radar), Gain is a 1-by-2 row vector with real-valued elements. The first element is the transmitter gain, and the second element is the receiver gain.

Default: 20

'Loss'

System loss in decibels (dB). Loss represents a general loss factor that comprises losses incurred in the system components and in the propagation to and from the target.

Default: 0

'RCS'

Radar cross section in square meters. The target RCS is nonfluctuating.

Default: 1

'Ts'

System noise temperature in Kelvin. The system noise temperature is the product of the system temperature and the noise figure.

Default: 290 Kelvin

'unitstr'

Units of the estimated maximum theoretical range. unitstr takes one of the following values

  • 'km' kilometers

  • 'm' meters

  • 'mi' miles

  • 'nmi' nautical miles (U.S.)

Default: 'm'

Output Arguments

maxrng

The estimated theoretical maximum detectable range. The units of maxrng depends on the value of unitstr. By default maxrng is in meters. For bistatic radars, maxrng is the geometric mean of the range from the transmitter to the target and the receiver to the target.

Examples

collapse all

Estimate the theoretical maximum detectable range for a monostatic radar operating at 10 GHz using a pulse duration of 10 μs. Assume the output SNR of the receiver is 6 dB.

lambda = physconst('LightSpeed')/10e9;
SNR = 6;
tau = 10e-6;
Pt = 1e6;
maxrng = radareqrng(lambda,SNR,Pt,tau)
maxrng = 4.1057e+04

Estimate the theoretical maximum detectable range for a monostatic radar operating at 10 GHz using a pulse duration of 10 μs. The target RCS is 0.1 m². Assume the output SNR of the receiver is 6 dB. The transmitter-receiver gain is 40 dB. Assume a loss factor of 3 dB.

lambda = physconst('LightSpeed')/10e9;
SNR = 6;
tau = 10e-6;
Pt = 1e6;
RCS = 0.1;
Gain = 40;
Loss = 3;
maxrng2 = radareqrng(lambda,SNR,Pt,tau,'Gain',Gain,...
    'RCS',RCS,'Loss',Loss)
maxrng2 = 1.9426e+05

More About

collapse all

Point Target Radar Range Equation

The point target radar range equation estimates the power at the input to the receiver for a target of a given radar cross section at a specified range. The model is deterministic and assumes isotropic radiators. The equation for the power at the input to the receiver is

Pr=PtGtGrλ2σ(4π)3Rt2Rr2L

where the terms in the equation are:

  • Pt — Peak transmit power in watts

  • Gt — Transmitter gain in decibels

  • Gr — Receiver gain in decibels. If the radar is monostatic, the transmitter and receiver gains are identical.

  • λ — Radar operating frequency wavelength in meters

  • σ — Target's nonfluctuating radar cross section in square meters

  • L — General loss factor in decibels that accounts for both system and propagation loss

  • Rt — Range from the transmitter to the target

  • Rr — Range from the receiver to the target. If the radar is monostatic, the transmitter and receiver ranges are identical.

Terms expressed in decibels, such as the loss and gain factors, enter the equation in the form 10x/10 where x denotes the variable. For example, the default loss factor of 0 dB results in a loss term of 100/10=1.

Receiver Output Noise Power

The equation for the power at the input to the receiver represents the signal term in the signal-to-noise ratio. To model the noise term, assume the thermal noise in the receiver has a white noise power spectral density (PSD) given by:

P(f)=kT

where k is the Boltzmann constant and T is the effective noise temperature. The receiver acts as a filter to shape the white noise PSD. Assume that the magnitude squared receiver frequency response approximates a rectangular filter with bandwidth equal to the reciprocal of the pulse duration, 1/τ. The total noise power at the output of the receiver is:

N=kTFnτ

where Fn is the receiver noise factor.

The product of the effective noise temperature and the receiver noise factor is referred to as the system temperature. This value is denoted by Ts, so that Ts=TFn .

Receiver Output SNR

The receiver output SNR is:

PrN=PtτGtGrλ2σ(4π)3kTsRt2Rr2L

You can derive this expression using the following equations:

Theoretical Maximum Detectable Range

For monostatic radars, the range from the target to the transmitter and receiver is identical. Denoting this range by R, you can express this relationship as R4=Rt2Rr2.

Solving for R

R=(NPtτGtGrλ2σPr(4π)3kTsL)1/4

For bistatic radars, the theoretical maximum detectable range is the geometric mean of the ranges from the target to the transmitter and receiver:

RtRr=(NPtτGtGrλ2σPr(4π)3kTsL)1/4

References

[1] Richards, M. A. Fundamentals of Radar Signal Processing. New York: McGraw-Hill, 2005.

[2] Skolnik, M. Introduction to Radar Systems. New York: McGraw-Hill, 1980.

[3] Willis, N. J. Bistatic Radar. Raleigh, NC: SciTech Publishing, 2005.

Extended Capabilities

Introduced in R2011a