2018-03-30 08:33:11 +00:00
|
|
|
% Reads GNSS-SDR Acquisition dump binary file using the provided
|
|
|
|
% function and plot acquisition grid of acquisition statistic of PRN sat.
|
|
|
|
% CAF input must be 0 or 1 depending if the user desires to read the file
|
|
|
|
% that resolves doppler ambiguity or not.
|
2014-06-17 17:13:24 +00:00
|
|
|
%
|
2018-03-30 08:33:11 +00:00
|
|
|
% This function analyzes a experiment performed by Marc Sales in the framework
|
|
|
|
% of the Google Summer of Code (GSoC) 2014, with the collaboration of Luis Esteve, Javier Arribas
|
|
|
|
% and Carles Fernandez, related to the extension of GNSS-SDR to Galileo.
|
|
|
|
%
|
2020-12-30 12:35:06 +00:00
|
|
|
% Marc Sales marcsales92(at)gmail.com,
|
2018-03-30 08:33:11 +00:00
|
|
|
% Luis Esteve, 2014. luis(at)epsilon-formacion.com
|
|
|
|
% -------------------------------------------------------------------------
|
|
|
|
%
|
2020-12-30 12:35:06 +00:00
|
|
|
% GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2018-03-30 08:33:11 +00:00
|
|
|
% This file is part of GNSS-SDR.
|
2020-12-30 12:35:06 +00:00
|
|
|
%
|
|
|
|
% Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
2020-02-08 00:20:02 +00:00
|
|
|
% SPDX-License-Identifier: GPL-3.0-or-later
|
2018-03-30 08:33:11 +00:00
|
|
|
%
|
|
|
|
% -------------------------------------------------------------------------
|
2014-06-17 17:13:24 +00:00
|
|
|
%
|
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
function plot_acq_grid_gsoc_e5(sat,CAF)
|
2014-06-17 17:13:24 +00:00
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
path='/home/marc/git/gnss-sdr/data/';
|
|
|
|
file=[path 'test_statistics_E5a_sat_' num2str(sat) '_doppler_0.dat'];
|
2014-06-17 17:13:24 +00:00
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
sampling_freq_Hz=32E6
|
|
|
|
%Doppler_max_Hz = 14875
|
|
|
|
%Doppler_min_Hz = -15000
|
|
|
|
%Doppler_step_Hz = 125
|
|
|
|
Doppler_max_Hz = 10000
|
2014-06-17 17:13:24 +00:00
|
|
|
Doppler_min_Hz = -10000
|
2014-08-05 00:01:37 +00:00
|
|
|
Doppler_step_Hz = 250
|
|
|
|
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
% read files
|
|
|
|
|
|
|
|
%x=read_complex_binary (file);
|
2014-08-05 00:01:37 +00:00
|
|
|
%x=load_complex_data(file); % complex
|
|
|
|
%l_y=length(x);
|
|
|
|
myFile = java.io.File(file);
|
|
|
|
flen = length(myFile);
|
|
|
|
l_y=flen/4;% float
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
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;
|
2014-08-05 00:01:37 +00:00
|
|
|
filename=[path 'test_statistics_E5a_sat_' num2str(sat) '_doppler_' num2str(k) '.dat'];
|
|
|
|
fid=fopen(filename,'r');
|
|
|
|
xx=fread(fid,'float');%floats from squared correlation
|
|
|
|
%xx=load_complex_data (filename); %complex
|
|
|
|
acq_grid(index,:)=abs(xx);
|
|
|
|
end
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
[fila,col]=find(acq_grid==max(max(acq_grid)));
|
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
if (CAF > 0)
|
|
|
|
filename=[path 'test_statistics_E5a_sat_' num2str(sat) '_CAF.dat'];
|
|
|
|
fid=fopen(filename,'r');
|
|
|
|
xx=fread(fid,'float');%floats from squared correlation
|
2014-08-20 08:59:47 +00:00
|
|
|
acq_grid(:,col(1))=abs(xx);
|
2014-08-05 00:01:37 +00:00
|
|
|
Doppler_error_Hz = Doppler_axes(xx==max(xx))
|
|
|
|
maximum_correlation_peak = max(xx)
|
|
|
|
else
|
|
|
|
Doppler_error_Hz = Doppler_axes(fila)
|
|
|
|
maximum_correlation_peak = max(max(acq_grid))
|
|
|
|
end
|
|
|
|
|
2014-06-17 17:13:24 +00:00
|
|
|
delay_error_sps = col -1
|
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
noise_grid=acq_grid;
|
2014-08-05 00:01:37 +00:00
|
|
|
delay_span=floor(3*sampling_freq_Hz/(1.023e7));
|
2014-06-17 17:13:24 +00:00
|
|
|
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');
|
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
xlabel('Doppler(Hz)');ylabel('Code Delay(samples)');title(['GLRT statistic of Galileo Parallel Code Phase Search Acquisition. PRN ' num2str(sat)]);
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function x=load_complex_data(file)
|
2014-08-05 00:01:37 +00:00
|
|
|
fid = fopen(file,'r');
|
|
|
|
%fid = fopen('signal_source.dat','r');
|
|
|
|
|
|
|
|
myFile = java.io.File(file);
|
|
|
|
flen = length(myFile);
|
|
|
|
num_samples=flen/8; % 8 bytes (2 single floats) per complex sample
|
|
|
|
|
2018-03-30 08:33:11 +00:00
|
|
|
for k=1:num_samples
|
2014-08-05 00:01:37 +00:00
|
|
|
a(1:2) = fread(fid, 2, 'float');
|
|
|
|
x(k) = a(1) + a(2)*1i;
|
2014-06-17 17:13:24 +00:00
|
|
|
k=k+1;
|
|
|
|
end
|
|
|
|
|
2014-08-05 00:01:37 +00:00
|
|
|
end
|