3 Moving from simulation to acquisition of real signals » History » Version 8

JANVIER, Thibault, 12/15/2015 11:47 AM

1 4 JANVIER, Thibault
h3. 3. Moving from simulation to acquisition of real signals
2 1 MERIOCHAUD, Antoine
3 4 JANVIER, Thibault
Now that the signal analyser that has been implemented works with simulated signals, it is time to move to the acquisition of real satellite signals. To do so, the USRP has to be added as an RF front end in the labview code. This operation will add some modifications in the labview code.
4 4 JANVIER, Thibault
5 4 JANVIER, Thibault
+3.1. Modifications due to the addition of the USRP+
6 4 JANVIER, Thibault
7 6 JANVIER, Thibault
In fact, when we receive signals with the USRP, they are first expected to be down-converted to baseband, then filtered by a low-pass filter of 20 MHz-bandwidth and finally sampled. All these operations are controlled by the tab "USRP Configuration" in the "Analog" thumb index of the user interface. In the "Digital" thumb index, the configuration of the USRP is also available.
8 1 MERIOCHAUD, Antoine
9 6 JANVIER, Thibault
p=. !USRP_Configuration.png!
10 6 JANVIER, Thibault
+Figure 15: USRP Configuration+
11 6 JANVIER, Thibault
12 6 JANVIER, Thibault
In the frequency domain, such operations are illustrated as follows:
13 6 JANVIER, Thibault
14 5 JANVIER, Thibault
p=. !USRP_Frequency_domain_transformations.png!
15 6 JANVIER, Thibault
+Figure 16: Operations carried out by the USRP - Frequency domain illustration+
16 4 JANVIER, Thibault
17 4 JANVIER, Thibault
The block we are using to compute the power spectrum calculates it between 0 and Fs/2. But because of the filtering, it is useless to compute the power spectrum over a range higher than 20 MHz. Thus, the maximum sampling rate will be set to 40 MHz. In order to display the power spectrum of the signal at the input of the USRP, a frequency shift is added to the power spectrum just computed to compensate the down-conversion. The most complicated is to find a signal with a low symbol rate because of this maximum sampling rate.
18 1 MERIOCHAUD, Antoine
19 7 JANVIER, Thibault
+3.2. Modifications in the computation model of the signal-to-noise ratio+
20 7 JANVIER, Thibault
21 8 JANVIER, Thibault
The satellite signals that are received are not as simple signals as sine waves. They might not be cyclostationary and therefore, their powers cannot be computed using their autocorrelation functions. As a consequence, the power of the useful received signal will be approximated by the maximum power that is detected in its frequency band. Likewise, the power of the noise will be measured by the maximum power that is detected in the noise floor of the system. As a result, we need to measure the power of the signal and the power of the noise with two different carrier frequencies of the USRP. The problem is that we can’t do these two computations at the same time. So we first need to launch the program with a carrier frequency corresponding to the noise (being in the tab “Power Spectrum Noise”) and after we launch it again with the carrier frequency of the signal (being in the tab “Power Spectrum Signal”). A step by step method will be more detail in the section [[III - Tests and validation]].