2018-03-30 08:33:11 +00:00
|
|
|
% Reads GNSS-SDR Acquisition dump binary file using the provided
|
|
|
|
% function and plots acquisition grid of acquisition statistic of PRN sat
|
2017-07-18 21:26:57 +00:00
|
|
|
%
|
2018-03-30 08:33:11 +00:00
|
|
|
% This function analyzes a experiment performed by Luis Esteve in the framework
|
2017-07-18 21:26:57 +00:00
|
|
|
% of the Google Summer of Code (GSoC) 2012, with the collaboration of Javier Arribas
|
2018-03-30 08:33:11 +00:00
|
|
|
% and Carles Fernandez, related to the extension of GNSS-SDR to Galileo.
|
|
|
|
%
|
|
|
|
% -------------------------------------------------------------------------
|
|
|
|
%
|
2019-07-26 10:38:20 +00:00
|
|
|
% Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
2018-03-30 08:33:11 +00:00
|
|
|
%
|
|
|
|
% GNSS-SDR is a software defined Global Navigation
|
|
|
|
% Satellite Systems receiver
|
|
|
|
%
|
|
|
|
% This file is part of GNSS-SDR.
|
|
|
|
%
|
2020-02-08 00:20:02 +00:00
|
|
|
% SPDX-License-Identifier: GPL-3.0-or-later
|
2018-03-30 08:33:11 +00:00
|
|
|
%
|
|
|
|
% -------------------------------------------------------------------------
|
2017-07-18 21:26:57 +00:00
|
|
|
%
|
|
|
|
|
|
|
|
function plot_acq_grid_gsoc_glonass(sat)
|
|
|
|
|
2017-11-03 22:26:03 +00:00
|
|
|
file=['/archive/acquisition_R_1G_sat_' num2str(sat) '_doppler_0.dat'];
|
2017-07-18 21:26:57 +00:00
|
|
|
|
2017-07-20 21:43:45 +00:00
|
|
|
% sampling_freq_Hz=62316000
|
2017-11-03 22:26:03 +00:00
|
|
|
sampling_freq_Hz=6.625e6
|
2017-07-18 21:26:57 +00:00
|
|
|
Doppler_max_Hz = 10000
|
|
|
|
Doppler_min_Hz = -10000
|
2017-11-03 22:26:03 +00:00
|
|
|
Doppler_step_Hz = 250
|
2017-07-18 21:26:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
% read files
|
|
|
|
|
|
|
|
x=read_complex_binary (file);
|
|
|
|
|
|
|
|
l_y=length(x);
|
|
|
|
|
|
|
|
Doppler_axes=Doppler_min_Hz:Doppler_step_Hz:Doppler_max_Hz;
|
|
|
|
|
|
|
|
l_x=length(Doppler_axes);
|
|
|
|
|
|
|
|
acq_grid = zeros(l_x,l_y);
|
|
|
|
|
|
|
|
index=0;
|
|
|
|
|
|
|
|
for k=Doppler_min_Hz:Doppler_step_Hz:Doppler_max_Hz
|
|
|
|
index=index+1;
|
|
|
|
filename=['acquisition_R_1G_sat_' num2str(sat) '_doppler_' num2str(k) '.dat'];
|
|
|
|
acq_grid(index,:)=abs(read_complex_binary (filename));
|
2018-03-30 08:33:11 +00:00
|
|
|
end
|
2017-07-18 21:26:57 +00:00
|
|
|
|
2018-03-30 08:33:11 +00:00
|
|
|
acq_grid = acq_grid.^2;
|
2017-07-18 21:26:57 +00:00
|
|
|
|
|
|
|
maximum_correlation_peak = max(max(acq_grid))
|
|
|
|
|
|
|
|
[fila,col]=find(acq_grid==max(max(acq_grid)));
|
|
|
|
|
|
|
|
delay_error_sps = col -1
|
|
|
|
|
|
|
|
Doppler_error_Hz = Doppler_axes(fila)
|
|
|
|
|
|
|
|
noise_grid=acq_grid;
|
|
|
|
delay_span=floor(3*sampling_freq_Hz/(0.511e6));
|
|
|
|
Doppler_span=floor(500/Doppler_step_Hz);
|
|
|
|
noise_grid(fila-Doppler_span:fila+Doppler_span,col-delay_span:col+delay_span)=0;
|
|
|
|
|
|
|
|
n=numel(noise_grid)-(2*delay_span+1)*(2*Doppler_span+1);
|
|
|
|
|
|
|
|
noise_floor= sum(sum(noise_grid))/n
|
|
|
|
|
|
|
|
Gain_dbs = 10*log10(maximum_correlation_peak/noise_floor)
|
|
|
|
|
|
|
|
|
|
|
|
%% Plot 3D FULL RESOLUTION
|
|
|
|
|
|
|
|
|
|
|
|
[X,Y] = meshgrid(Doppler_axes,1:1:l_y);
|
|
|
|
figure;
|
|
|
|
surf(X,Y,acq_grid');
|
|
|
|
|
|
|
|
xlabel('Doppler(Hz)');ylabel('Code Delay(samples)');title(['GLRT statistic of Glonass Parallel Code Phase Search Acquisition. Local replica: L1 cboc PRN ' num2str(sat)]);
|
|
|
|
|
|
|
|
|
|
|
|
end
|