70. Assignment 8 doppler solution#
70.1. Q1#
The attached color Doppler image shows a velocity pattern measured by Doppler radar with a wavelength of λ = 10 cm and a PRF of 2200 Hz. Using the space below the figure, plot the wind direction (with wind from the east at 90 degrees and wind from the west at 270 degrees) and the wind speed as functions of height, Assume that the outer range ring is at vertical elevation of 24 km and that the radar is at sea level, and pretend that the wind speed is in m/s, not knots. (so the blue colors start at -51 m/s and go in steps of 7 m/s towards zero then on to speeds of +51 m/s in the yellow).
70.1.1. Q1 Answer#
This is similar to Stull Figure 8.38a, with the wind blowing into the radar (minus, blue/green) from the west/left and away from the radar (positive, yellow/read) on the right (east). There is a maximum in the windspeed at an altitude of about 12 km with a spped of 51 m/s, falling to zero at the surface and about 24 m/s at 24 km.
Fig. 70.1 Doppler velocity plot#
70.2. Question 2#
Now assume that the the PRF is reduced to 1100 Hz. Describe qualitatively what the radar image would look like if it was not corrected for aliasing. You can draw contour lines on the map and verbally describe the color patterns inside the ring
70.2.1. Question 2 answer#
From the equation sheet we know that:
So with the PRF at 2200 Hz, the maximum unambiguous velocity is 55 m/s. Once the PRF is reduced to 1100 Hz, you would get aliasing for speeds above 27.5 m/s. On the left, shades above green on the pallette would switch to orange/yellow and on the right the reverse would happen.
0.1*2200/4.
55.0
70.3. Question 3#
Find the smallest phase angle (magnitude and direction) between two pulses when the radial wind speed is 30 m/s and the PRF is at i) 1100 Hz and ii) 2200 Hz
70.3.1. Question 3 answer#
From the equation sheet we know that
Note that if
the (70.1) reduces to
That is, the maximum velocity is just enough to rotate the phasor through an angle of 180 degrees.
i) At 1100 Hz using (70.1) gives a phase difference of -196 degrees away from the radar. That angle would not be reported however, because of aliasing due to the fact that the phasor has rotated through more than 180 degrees. The radar would incorrectly report the smaller postive phase difference of 360 - 196 = 164 degrees. This would be interpreted as a speed of (164/180)*27.5 = 25 m/s towards the radar.
ii) At 2200 Hz (70.1) gives a phase difference of -98 degrees away from the radar. This is a smaller magnitude than 180 degrees so this would be intrepreted correctly as (98.5/180)*55 = 30 m/s away from the radar.
import numpy as np
Tr = 1/1100
Mr = 30
the_lambda = 0.1
del_phi = -4*np.pi*Tr*Mr/the_lambda
del_phi_deg = np.rad2deg(del_phi)
print(f"for 1100 Hz: {del_phi_deg=:0.1f} degrees")
del_phi_wrong = 360 + del_phi_deg
print(f"incorrect angle: {del_phi_wrong=:.1f}")
print(f"incorrect velocity {(del_phi_wrong/180)*27.5=:.1f} m/s towards the radar\n\n")
Tr = 1/2200
del_phi = -4*np.pi*Tr*Mr/the_lambda
del_phi_deg = np.rad2deg(del_phi)
print(f"correct angle for 2200 Hz: {del_phi_deg=:.1f} degrees")
print(f"correct velocity {(-del_phi_deg/180)*55=:.1f} m/s away from the radar")
for 1100 Hz: del_phi_deg=-196.4 degrees
incorrect angle: del_phi_wrong=163.6
incorrect velocity (del_phi_wrong/180)*27.5=25.0 m/s towards the radar
correct angle for 2200 Hz: del_phi_deg=-98.2 degrees
correct velocity (-del_phi_deg/180)*55=30.0 m/s away from the radar
70.4. Question 4#
Find the maximum unambiguous range for this radar when the PRF is at i) 1100 Hz and ii) 2200 Hz
The equation:
See cell below
c=3e8 #m/s
prf = 1100
mur = c/(2*prf*1.e3)
print(f"at {prf} Hz the {mur=:.3g} km")
prf = 2200
mur = c/(2*prf*1.e3)
print(f"at {prf} Hz the {mur=:.3g} km")
at 1100 Hz the mur=136 km
at 2200 Hz the mur=68.2 km