2011-11-22 17:21:54 +00:00
|
|
|
/*!
|
|
|
|
* \file CN_estimators.cc
|
2011-12-28 21:36:45 +00:00
|
|
|
* \brief Implementation of a library with a set of Carrier to Noise
|
2012-09-12 15:03:38 +00:00
|
|
|
* estimators and lock detectors.
|
|
|
|
*
|
|
|
|
* SNV_CN0 is a Carrier-to-Noise (CN0) estimator
|
2011-12-28 21:36:45 +00:00
|
|
|
* based on the Signal-to-Noise Variance (SNV) estimator [1].
|
2011-11-22 17:21:54 +00:00
|
|
|
* Carrier lock detector using normalised estimate of the cosine
|
|
|
|
* of twice the carrier phase error [2].
|
2012-09-12 15:03:38 +00:00
|
|
|
*
|
2011-11-22 17:21:54 +00:00
|
|
|
* [1] Marco Pini, Emanuela Falletti and Maurizio Fantino, "Performance
|
|
|
|
* Evaluation of C/N0 Estimators using a Real Time GNSS Software Receiver,"
|
|
|
|
* IEEE 10th International Symposium on Spread Spectrum Techniques and
|
|
|
|
* Applications, pp.28-30, August 2008.
|
2012-09-12 15:03:38 +00:00
|
|
|
*
|
2011-11-22 17:21:54 +00:00
|
|
|
* [2] Van Dierendonck, A.J. (1996), Global Positioning System: Theory and
|
|
|
|
* Applications,
|
|
|
|
* Volume I, Chapter 8: GPS Receivers, AJ Systems, Los Altos, CA 94024.
|
|
|
|
* Inc.: 329-407.
|
2012-09-12 15:03:38 +00:00
|
|
|
* \authors <ul>
|
|
|
|
* <li> Javier Arribas, 2011. jarribas(at)cttc.es
|
|
|
|
* <li> Luis Esteve, 2012. luis(at)epsilon-formacion.com
|
|
|
|
* </ul>
|
2011-11-22 17:21:54 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2012-01-31 00:31:07 +00:00
|
|
|
* Copyright (C) 2010-2012 (see AUTHORS file for a list of contributors)
|
2011-11-22 17:21:54 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* at your option) any later version.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include "CN_estimators.h"
|
|
|
|
#include "GPS_L1_CA.h"
|
2012-08-28 13:38:33 +00:00
|
|
|
#include "Galileo_E1.h"
|
2011-11-22 17:21:54 +00:00
|
|
|
#include <gnuradio/gr_complex.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
2011-12-28 21:36:45 +00:00
|
|
|
/*
|
2011-11-22 17:21:54 +00:00
|
|
|
* Signal-to-Noise (SNR) (\f$\rho\f$) estimator using the Signal-to-Noise Variance (SNV) estimator:
|
|
|
|
* \f{equation}
|
|
|
|
* \hat{\rho}=\frac{\hat{P}_s}{\hat{P}_n}=\frac{\hat{P}_s}{\hat{P}_{tot}-\hat{P}_s},
|
|
|
|
* \f}
|
|
|
|
* where \f$\hat{P}_s=\left(\frac{1}{N}\sum^{N-1}_{i=0}|Re(Pc(i))|\right)^2\f$ is the estimation of the signal power,
|
|
|
|
* \f$\hat{P}_{tot}=\frac{1}{N}\sum^{N-1}_{i=0}|Pc(i)|^2\f$ is the estimator of the total power, \f$|\cdot|\f$ is the absolute value,
|
|
|
|
* \f$Re(\cdot)\f$ stands for the real part of the value, and \f$Pc(i)\f$ is the prompt correlator output for the sample index i.
|
|
|
|
*
|
|
|
|
* The SNR value is converted to CN0 [dB-Hz], taking to account the receiver bandwidth and the PRN code gain, using the following formula:
|
|
|
|
* \f{equation}
|
|
|
|
* CN0_{dB}=10*log(\hat{\rho})+10*log(\frac{f_s}{2})-10*log(L_{PRN}),
|
|
|
|
* \f}
|
|
|
|
* where \f$f_s\f$ is the sampling frequency and \f$L_{PRN}\f$ is the PRN sequence length.
|
2011-12-28 21:36:45 +00:00
|
|
|
*
|
2011-11-22 17:21:54 +00:00
|
|
|
*/
|
|
|
|
float gps_l1_ca_CN0_SNV(gr_complex* Prompt_buffer, int length, long fs_in)
|
|
|
|
{
|
2011-12-28 21:36:45 +00:00
|
|
|
// estimate CN0 using buffered values
|
|
|
|
// MATLAB CODE
|
2012-01-23 00:52:05 +00:00
|
|
|
// SNR_SNV(count)=Psig/(Ptot-Psig);
|
|
|
|
// CN0_SNV_dB=10*log10(SNR_SNV)+10*log10(BW)-10*log10(PRN_length);
|
2011-12-28 21:36:45 +00:00
|
|
|
float SNR, SNR_dB_Hz;
|
2012-10-18 10:24:41 +00:00
|
|
|
float tmp_abs_real;
|
2012-01-11 09:01:24 +00:00
|
|
|
float Psig, Ptot;
|
|
|
|
Psig = 0;
|
|
|
|
Ptot = 0;
|
|
|
|
for (int i=0; i<length; i++)
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2012-10-18 10:24:41 +00:00
|
|
|
tmp_abs_real = std::abs(Prompt_buffer[i].real());
|
|
|
|
Psig += tmp_abs_real;
|
2012-01-23 00:52:05 +00:00
|
|
|
Ptot += Prompt_buffer[i].imag() * Prompt_buffer[i].imag() + Prompt_buffer[i].real() * Prompt_buffer[i].real();
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2012-01-11 09:01:24 +00:00
|
|
|
Psig = Psig / (float)length;
|
2012-01-23 00:52:05 +00:00
|
|
|
Psig = Psig * Psig;
|
2012-01-11 09:01:24 +00:00
|
|
|
SNR = Psig / (Ptot / (float)length - Psig);
|
2012-01-23 00:52:05 +00:00
|
|
|
SNR_dB_Hz = 10 * log10(SNR) + 10 * log10(fs_in/2) - 10 * log10(GPS_L1_CA_CODE_LENGTH_CHIPS);
|
2011-12-28 21:36:45 +00:00
|
|
|
return SNR_dB_Hz;
|
2011-11-22 17:21:54 +00:00
|
|
|
}
|
|
|
|
|
2012-08-28 13:38:33 +00:00
|
|
|
/*
|
|
|
|
* Signal-to-Noise (SNR) (\f$\rho\f$) estimator using the Signal-to-Noise Variance (SNV) estimator:
|
|
|
|
* \f{equation}
|
|
|
|
* \hat{\rho}=\frac{\hat{P}_s}{\hat{P}_n}=\frac{\hat{P}_s}{\hat{P}_{tot}-\hat{P}_s},
|
|
|
|
* \f}
|
|
|
|
* where \f$\hat{P}_s=\left(\frac{1}{N}\sum^{N-1}_{i=0}|Re(Pc(i))|\right)^2\f$ is the estimation of the signal power,
|
|
|
|
* \f$\hat{P}_{tot}=\frac{1}{N}\sum^{N-1}_{i=0}|Pc(i)|^2\f$ is the estimator of the total power, \f$|\cdot|\f$ is the absolute value,
|
|
|
|
* \f$Re(\cdot)\f$ stands for the real part of the value, and \f$Pc(i)\f$ is the prompt correlator output for the sample index i.
|
|
|
|
*
|
|
|
|
* The SNR value is converted to CN0 [dB-Hz], taking to account the receiver bandwidth and the PRN code gain, using the following formula:
|
|
|
|
* \f{equation}
|
|
|
|
* CN0_{dB}=10*log(\hat{\rho})+10*log(\frac{f_s}{2})-10*log(L_{PRN}),
|
|
|
|
* \f}
|
|
|
|
* where \f$f_s\f$ is the sampling frequency and \f$L_{PRN}\f$ is the PRN sequence length.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
float galileo_e1_CN0_SNV(gr_complex* Prompt_buffer, int length, long fs_in)
|
|
|
|
{
|
|
|
|
// estimate CN0 using buffered values
|
|
|
|
// MATLAB CODE
|
|
|
|
// SNR_SNV(count)=Psig/(Ptot-Psig);
|
|
|
|
// CN0_SNV_dB=10*log10(SNR_SNV)+10*log10(BW)-10*log10(PRN_length);
|
|
|
|
float SNR, SNR_dB_Hz;
|
2012-10-18 10:24:41 +00:00
|
|
|
float tmp_abs_real;
|
2012-08-28 13:38:33 +00:00
|
|
|
float Psig, Ptot;
|
|
|
|
Psig = 0;
|
|
|
|
Ptot = 0;
|
|
|
|
for (int i=0; i<length; i++)
|
|
|
|
{
|
2012-10-18 10:24:41 +00:00
|
|
|
tmp_abs_real= std::abs(Prompt_buffer[i].real());
|
|
|
|
Psig += tmp_abs_real;
|
2012-08-28 13:38:33 +00:00
|
|
|
Ptot += Prompt_buffer[i].imag() * Prompt_buffer[i].imag() + Prompt_buffer[i].real() * Prompt_buffer[i].real();
|
|
|
|
}
|
|
|
|
Psig = Psig / (float)length;
|
|
|
|
Psig = Psig * Psig;
|
|
|
|
SNR = Psig / (Ptot / (float)length - Psig);
|
|
|
|
SNR_dB_Hz = 10 * log10(SNR) + 10 * log10(fs_in/2) - 10 * log10(Galileo_E1_B_CODE_LENGTH_CHIPS);
|
|
|
|
return SNR_dB_Hz;
|
|
|
|
}
|
2012-10-20 16:11:31 +00:00
|
|
|
|
|
|
|
|
2011-12-28 21:36:45 +00:00
|
|
|
/*
|
2011-11-22 17:21:54 +00:00
|
|
|
* The Carrier Phase Lock Detector block uses the normalised estimate of the cosine of twice the carrier phase error is given by
|
|
|
|
* \f{equation}
|
2012-10-20 16:11:31 +00:00
|
|
|
* \cos(2\phi)=\frac{NBD}{NBP},
|
2011-11-22 17:21:54 +00:00
|
|
|
* \f}
|
2012-10-20 16:11:31 +00:00
|
|
|
* where \f$NBD=(\sum^{N-1}_{i=0}Im(Pc(i)))^2-(\sum^{N-1}_{i=0}Re(Pc(i)))^2\f$,
|
|
|
|
* \f$NBP=(\sum^{N-1}_{i=0}Im(Pc(i)))^2+(\sum^{N-1}_{i=0}Re(Pc(i)))^2\f$, and
|
2011-11-22 17:21:54 +00:00
|
|
|
* \f$Pc(i)\f$ is the prompt correlator output for the sample index i.
|
|
|
|
*/
|
|
|
|
float carrier_lock_detector(gr_complex* Prompt_buffer, int length)
|
|
|
|
{
|
2012-01-23 00:52:05 +00:00
|
|
|
/*
|
2012-10-20 16:11:31 +00:00
|
|
|
* carrier lock detector
|
2011-12-28 21:36:45 +00:00
|
|
|
*/
|
|
|
|
// estimate using buffered values
|
2012-10-20 16:11:31 +00:00
|
|
|
|
|
|
|
float tmp_sum_I, tmp_sum_Q;
|
|
|
|
tmp_sum_I = 0;
|
|
|
|
tmp_sum_Q = 0;
|
2011-12-28 21:36:45 +00:00
|
|
|
float NBD,NBP;
|
2012-01-11 09:01:24 +00:00
|
|
|
for (int i=0; i<length; i++)
|
2011-12-28 21:36:45 +00:00
|
|
|
{
|
2012-10-20 16:11:31 +00:00
|
|
|
tmp_sum_I += Prompt_buffer[i].real();
|
|
|
|
tmp_sum_Q += Prompt_buffer[i].imag();
|
2011-12-28 21:36:45 +00:00
|
|
|
}
|
2012-10-20 16:11:31 +00:00
|
|
|
NBP = tmp_sum_I*tmp_sum_I + tmp_sum_Q*tmp_sum_Q;
|
|
|
|
NBD = tmp_sum_I*tmp_sum_I - tmp_sum_Q*tmp_sum_Q;
|
2011-12-28 21:36:45 +00:00
|
|
|
return NBD/NBP;
|
2011-11-22 17:21:54 +00:00
|
|
|
}
|
|
|
|
|