Legacy automotive radar operates at 24 GHz, while modern systems operate at 77 GHz (Schneider 2005), (Wenger 2005).
Radar cross section
The radar cross-section (RCS), \(\sigma\), of a trihedral corner reflector \[
\sigma = \frac{4 \pi a^4}{3\lambda^2}
\] where \(a\) is the length of one side of the cube, and \(\lambda\) is the wavelength of the radar (Doerry 2008).
Code
from IPython.display import display, Markdownfrom matplotlib import pylab as pltimport numpy as npfrom scipy.constants import speed_of_lightdef db10(x):return10.0*np.log10(np.abs(x))def lin10(x):return10**(x/10.0) def wavelength(freq_hz):return speed_of_light / freq_hz # metersdef rcs_corner(a_mm,freq_hz):# size of corner reflector edge# a = 80 # mm a_mm /=1000# convert to meters wavelen = wavelength(freq_hz) sigma =4* np.pi * a_mm**4/3/ wavelen**2# sq metersreturn sigma# size of corner reflector edgea =80# mmfrequency =77e9# Hzsigma = rcs_corner(a,frequency)reflector_efficiency =0.5sigma_dbsm = db10(sigma) + db10(reflector_efficiency)
At 77 the RCS is 7.5275861 dBsm, assuming an efficiency of 0.5.
Increase in detection distance
The free space path loss in one direction is \[
\frac{P_r}{P_t} = \left(\frac{4\pi d}{\lambda}\right)^2
\] where \(d\) is the detection distance, \(\lambda\) is the wavelength and \(\frac{P_r}{P_t}\) is the ratio of power received to transmitted. For a radar the signal must propagate out and back, so the path loss is twice the one way path loss or \[
\frac{P_r}{P_t} = 2\left(\frac{4\pi d}{\lambda}\right)^2
\]
Increase in detection distance [meters] [78.31563684 24.13887205]
References
Doerry, Armin W. 2008. “Reflectors for SAR Performance Testing - Second Edition.” SAND2014-0882. Sandia National Laboratories. https://www.osti.gov/biblio/1204079.