Scanning strategy overview¶
Due to the current transition from fossil fuel-based power plants to renewable sources, wind has become one of the main energy sources. However, to identify the places where wind harvest is suitable for power production, an understanding of how the wind blows in the possible places is needed. Wind Doppler lidars are often used to survey the winds in those places and to estimate turbulence.
Wind Doppler lidars work by transmitting laser pulses and measuring the shift in frequency of the backscattered signal, the Doppler effect. If the scatterers are moving towards the lidar, the backscattered signal’s frequency is higher than that of the transmitted signal and the other way around.
There are different scanning strategies for estimating wind profiles using Wind Doppler lidars, but two are used more often: the 6-beam and the DBS.
6-beam:¶
Reynolds stress tensor calculation¶
The 6-beam is a scanning strategy that is idealised for retrieving turbulence. This method measures the radial velocity at five azimuths (0, 72, 144, 216, 288º) with a certain elevation angle and one additional observation at 90º elevation. The cartoon below illustrates the geometry of this strategy.
Sathe et al.,2015 suggested that the variance of each radial observation can be expressed in terms of variances and co-variances of u (zonal wind), v (meridional wind), and w (vertical wind), as indicated below.
and
are the azimuth and elevation angles, respectively.

Combining all the equations for each one of the six observations makes it possible to solve this equation system for the variances and co-variances of u, v, and W, which are the Reynolds stress tensor components.

The calculation is made by solving the following equation:
, and it is implemented in SixBeamMethod class.
Wind speed and direction estimation¶
Even though the 6-beam strategy makes it possible to calculate the Reynolds stress tensor directly, the horizontal wind speed and direction estimation is not straightforward. One of the possible ways to estimate the wind speed and direction is using the Fast Fourier Wind Vector Algorithm (FFWVA) developed by Ishwardat, 2017.
The FFWVA uses Fast Fourier Transform (FFT) digital signal-processing algorithms to decompose the radial Doppler observations in terms of amplitude and phase of their harmonic frequencies. The wind speed
and direction
can be calculated using the amplitude and phase from the first harmonic, as indicated below.



a and b are the real and imaginary parts from the first harmonic.
is the radial velocity from each azimuth. N is the number of data points used to calculate the FFT decomposition. Note: the arctan2 function returns the correct quadrant. This method is implemented in the class RetriveWindFFT.
The DBS:¶
DBS stands for Doppler beam swing. This scanning strategy consists in measuring the radial velocity at four particular azimuths using a slanted beam swinging from North to South and from East to West. The carton below illustrates how those observations are collected.
As the measurements are taken using beams with a specific elevation angle
, all four observed radial velocities contain information from the vertical and horizontal wind, as indicated by the equations listed below. The indexes N, S, E, and W, stand for North, South, East and West
and
are the zonal and meridional wind components.

For estimating the meridional (south-north) and zonal (west-est) wind components, it is assumed that the meridional and zonal wind components remain constant during the entire scanning cycle, which implies that
and
. Applying this assumption to the set of equations listed above and then subtracting the South from the North component and the West from the East component, it is possible to estimate the mean zonal and meridional wind.

From those components, it is also possible to estimate the magnitude of the horizontal
wind and its direction
. Note: the arctan2 function returns the correct quadrant.

This method is also implemented in this package and is available in class GetWindProperties5Beam.