Project

Radar System Requirements

System Requirements defines the design of a Radar. The sensor fusion design for different driving scenarios requires different system configurations from a Radar. In this project, you will designing a Radar based on the given system requirements (above).

Max Range and Range Resolution will be considered here for waveform design.

Initial Range and velocity of the Target

You will provide the initial range and velocity of the target. Range cannot exceed the max value of 200m and velocity can be any value in the range of -70 to + 70 m/s.

Target Generation and Detection

FFT Operation

The 1st FFT output for the target located at 110 meters

The 2nd FFT is already implemented in the code. It will generate a Range Doppler Map as seen in the image below and it will be given by variable ‘RDM’. Next task is to implement the CFAR on this Range Doppler Map.

2D FFT output - Range Doppler Map

2D CFAR

The process above will generate a thresholded block, which is smaller than the Range Doppler Map as the CUTs cannot be located at the edges of the matrix due to the presence of Target and Guard cells. Hence, those cells will not be thresholded.

The output of the 2D CFAR process

Once you have completed this, you are done. Congratulations on doing a great job on this final project!