Navigation

MakeRadar School - Radar Theory

0. Introduction

Radar (RAdio Detecting And Ranging) - Sensors are sensors which use electromagnetic radio waves to determine presence, distance,  position or speed of objects.

This tutorial will explain the physical details behind radar to help you understand what is going on, when using radar sensors.

  1. Electromagnetic Waves: What are EM waves?
  2. Radar Equation: The fundamental equation behind radar
  3. Doppler Effect: Frequency shift of a moving object
  4. IQ Signals: Common data transmission
  5. Fourier Transformation: Essential data processing technique

1. Electromagnetic waves

As with other waves, electromagnetic (EM) waves exhibit reflection, refraction, diffraction, and polarization. EM waves can be experienced and utilized differently based on their frequency or wavelength. EM waves with wavelengths in the Kilometer range are used for very long distance communications, EM waves with wavelengths in the micrometer range create our visible light spectrum, and EM waves with wavelengths in the picometer range are used for medical investigations and are referred to as Xrays.

For mm-wave radar the wavelengths are in the millimeter range, a 24 GHz radar system has a wavelength λ of :

Antennas in a radar system are used to convert voltages and currents to EM-waves at the sender side and convert EM-waves to voltages and currents on the receiver side.

2. Radar equation

In a radar system, the EM waves are transmitted from the transmit (TX) antenna then propagate in space until hitting a target. The transmitted EM waves then got reflected and head back to be received by the receive (RX) antenna.
To detect this reflected signal, it has to be higher than the smallest detectable signal of a radar system. This minimum signal is usually compared to the noise level and this ratio is referred to by the minimum signal to noise ratio (SNRmin).

The amount of signal power received is quite critical to the radar’s operation as it defines the difference between detectable and undetectable targets. This value is governed by the famous radar equation:

 You can experience the effect of each parameter of the radar equation using our application. Start experimenting!

 

(For the radar equation we recommend you to use Chrome or Opera)

The radar equation shows how the received power is governed by multiple variables. As expected, the power drops very rapidly with the distance which is governed by the term 1/R4, where R is the distance between the radar and the target.
The power is also governed determined by the gain of the transmit and the receive antennas Gtx and Grx​  .This gain is a measure of efficiency of the antennas plus how much the antennas focus the energy in the direction of the target.
Clearly the received power will also increase by the transmitted power level Ptx.
Also, diverse targets reflect EM-waves differently. A big metal object will reflect much more energy than a small tennis ball. This is accounted in the equation with the radar cross section term σ.
Last but not least,  λshows the dependency of the received power on the wavelength and frequency. Considering the equation, this means the higher the frequency the lower the power received.

3. Doppler effect

Most of us have experienced the doppler effect in one way or another, the most common is the sudden change in the pitch when an ambulance crosses you.

The doppler effect happens when the distance between the peaks of the waves get closer to each other (frequency shifts up), this happens if the source of the waves is traveling in the direction of the observer, or if the peaks move further apart (frequency shifts down) if the source is traveling away.

This frequency shift f for em waves can be directly derived from the original wave frequency f0 and the velocity v of the wave source relative to the observer:

A doppler radar operates by sending a frequency via the transmit antenna which is reflected back by the target to be captured by the receive antenna. If the target is moving this received signal frequency will be shifted based on the speed of target. The receiver of a doppler radar uses a specific block (mixer) that produces an output signal based on the transmitted and received signals. The output of this block has a frequency which is equivalent to the absolute difference in the frequency between the transmitted signal and the reflected one, also known as the doppler shift.

4. IQ signals

IQ signals in the realm of radar and electrical engineering are signals that have the same amplitude and frequency but are shifted 90° or a quarter cycle relative to each other.

Radar systems will have either real receive stages or complex ones. A real stage would only have one component of the received signal while a complex stage will generate both the I & Q components. There are several advantages of generating the IQ signals and using them for further analyses, however, in the case of doppler radar the IQ signals serve a more basic purpose.

Since a real mixer used in a doppler radar receiver will give the absolute frequency shift without a direction or sign, it becomes impossible to determine the direction of travel of the target. Using an IQ mixer, which generates both the I & Q signals, and by checking which of the signals is leading in phase the direction of travel can be determined.

5. Fourier transformation

5.1 Discrete Fourier Transform (DFT)

Electrical signals can be visualized in various ways: If you connect a 24 GHz signal from an Infineon chip to a high-speed oscilloscope you will see a sine wave which is a time-domain-signal. If you decide to connect the signal to a spectrum analyzer, what you will see is a line at 24 GHz.

DFT is a mathematical transformation that is used to transform finite discrete signals from the time domain into the frequency domain. Inversely the inverse fourier transform converts finite discrete signals from the frequency domain to the time domain.

For a discrete time-domain signal of length T and sample time of  Δt the DFT representation will have a maximum frequency F (Nyquist frequency)and a frequency resolution (also known as bin spacing)  deltaf

The DFT generates a series of complex numbers, which convey information on the frequency magnitude and phase.

5.2 Fast Fourier Transform (FFT)

FFT is an algorithm that transforms a time-domain-sampled signal into its frequency components. In comparison to the dft, which has a computing complexity given by O(n2)  , where n is the length of the series, the computing complexity of the fft algorithm is given by    O(nlog(n)).

The transformation if applied to real data (non IQ) generates a symmetric data set with positive and negative frequencies where only the positive regions are of interest for radar signal analyses. on the other hand, if complex input data is used (IQ where the complex structure is as follows I+iQ). The transformation will generate a positive frequency series extending up to a maximum frequency f (1) , which is the double of that in a real FFT. This is however in agreement with the nyquist frequency theorem since applying the FFT to the IQ signals is equivalent to sampling the real part only at doubling the sampling rate.

Done

Now that you know all the basics about radar you can start to implement your own applications!

References