mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-16 06:44:57 +00:00
ADD: matlab VTL models with d_clk_drift
This commit is contained in:
parent
33bd8d4937
commit
24c23f6c17
238
src/utils/matlab/vtl/kf_prototype_clk_d.m
Normal file
238
src/utils/matlab/vtl/kf_prototype_clk_d.m
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
%% vtl KF
|
||||||
|
%%
|
||||||
|
sat_number=5;
|
||||||
|
%% ################## Kalman filter initialization ######################################
|
||||||
|
st_nmbr=9;
|
||||||
|
% covariances (static)
|
||||||
|
kf_P_x = eye(st_nmbr); %TODO: use a real value.
|
||||||
|
kf_x = zeros(st_nmbr, 1);
|
||||||
|
kf_R = zeros(2*sat_number, 2*sat_number);
|
||||||
|
kf_dt=0.1;
|
||||||
|
% kf_F = eye(st_nmbr, st_nmbr);
|
||||||
|
% kf_F(1, 4) = kf_dt;
|
||||||
|
% kf_F(2, 5) = kf_dt;
|
||||||
|
% kf_F(3, 6) = kf_dt;
|
||||||
|
% kf_F(7, 8) = kf_dt;
|
||||||
|
|
||||||
|
kf_F=[ 1 0 0 kf_dt 0 0 0 0 0
|
||||||
|
0 1 0 0 kf_dt 0 0 0 0
|
||||||
|
0 0 1 0 0 kf_dt 0 0 0
|
||||||
|
0 0 0 1 0 0 0 0 0
|
||||||
|
0 0 0 0 1 0 0 0 0
|
||||||
|
0 0 0 0 0 1 0 0 0
|
||||||
|
0 0 0 0 0 0 1 kf_dt kf_dt^2/2
|
||||||
|
0 0 0 0 0 0 0 1 kf_dt
|
||||||
|
0 0 0 0 0 0 0 0 1];
|
||||||
|
|
||||||
|
% kf_F=[ 1 0 0 kf_dt 0 0 0 0
|
||||||
|
% 0 1 0 0 kf_dt 0 0 0
|
||||||
|
% 0 0 1 0 0 kf_dt 0 0
|
||||||
|
% 0 0 0 1 0 0 0 0
|
||||||
|
% 0 0 0 0 1 0 0 0
|
||||||
|
% 0 0 0 0 0 1 0 0
|
||||||
|
% 0 0 0 0 0 0 1 kf_dt
|
||||||
|
% 0 0 0 0 0 0 0 1];
|
||||||
|
|
||||||
|
kf_H = zeros(2*sat_number,st_nmbr);
|
||||||
|
kf_y = zeros(2*sat_number, 1);
|
||||||
|
kf_yerr = zeros(2*sat_number, 1);
|
||||||
|
% kf_xerr = zeros(8, 1);
|
||||||
|
kf_S = zeros(2*sat_number, 2*sat_number); % kf_P_y innovation covariance matrix
|
||||||
|
|
||||||
|
%% pre-allocate for speed
|
||||||
|
d = zeros(sat_number, 1);
|
||||||
|
rho_pri = zeros(sat_number, 1);
|
||||||
|
rhoDot_pri = zeros(sat_number, 1);
|
||||||
|
a_x = zeros(sat_number, 1);
|
||||||
|
a_y = zeros(sat_number, 1);
|
||||||
|
a_z = zeros(sat_number, 1);
|
||||||
|
c_pr_m=zeros(sat_number,length(navSolution.RX_time));
|
||||||
|
|
||||||
|
pr_m_filt=zeros(sat_number,length(navSolution.RX_time));
|
||||||
|
rhoDot_pri_filt=zeros(sat_number,length(navSolution.RX_time));
|
||||||
|
sat_dopp_hz_filt=zeros(sat_number,length(navSolution.RX_time));
|
||||||
|
|
||||||
|
%% ################## Kalman Tracking ######################################
|
||||||
|
% receiver solution from rtklib_solver
|
||||||
|
for t=2:length(navSolution.RX_time)
|
||||||
|
|
||||||
|
%% State error Covariance Matrix Q (PVT) and R (MEASUREMENTS)
|
||||||
|
if (t<3)
|
||||||
|
%% State error Covariance Matrix Q (PVT)
|
||||||
|
kf_Q = eye(st_nmbr);%new_data.rx_pvt_var(i); %careful, values for V and T could not be adecuate.
|
||||||
|
%%
|
||||||
|
|
||||||
|
% Measurement error Covariance Matrix R assembling
|
||||||
|
kf_R = blkdiag(eye(sat_number)*40,eye(sat_number)*10);
|
||||||
|
|
||||||
|
else
|
||||||
|
kf_Q = blkdiag(eye(3)*pos_var,eye(3)*vel_var,clk_bias_var,clk_drift_var,clk_d_drift_var);
|
||||||
|
kf_R = blkdiag(eye(sat_number)*pr_var,eye(sat_number)*pr_dot_var);
|
||||||
|
end
|
||||||
|
|
||||||
|
clear x_u y_u z_u xDot_u yDot_u zDot_u cdeltatDot_u cdeltatDot_u_g cdeltat_u_g
|
||||||
|
if (t<3)
|
||||||
|
kf_x(1,t) = navSolution.X(t);
|
||||||
|
kf_x(2,t) = navSolution.Y(t);
|
||||||
|
kf_x(3,t) = navSolution.Z(t);
|
||||||
|
kf_x(4,t) = navSolution.vX(t);
|
||||||
|
kf_x(5,t) = navSolution.vY(t);
|
||||||
|
kf_x(6,t) = navSolution.vZ(t);
|
||||||
|
kf_x(7,t) = clk_bias_s(t)*SPEED_OF_LIGHT_M_S;
|
||||||
|
kf_x(8,t) = clk_drift(t)*SPEED_OF_LIGHT_M_S;%new_data.rx_dts(1);
|
||||||
|
kf_x(9,t) = 0;%new_data.rx_dts(1);
|
||||||
|
|
||||||
|
x_u=kf_x(1,t);
|
||||||
|
y_u=kf_x(2,t);
|
||||||
|
z_u=kf_x(3,t);
|
||||||
|
xDot_u=kf_x(4,t);
|
||||||
|
yDot_u=kf_x(5,t);
|
||||||
|
zDot_u=kf_x(6,t);
|
||||||
|
cdeltat_u(t)=kf_x(7,t);
|
||||||
|
cdeltatDot_u(t)=kf_x(8,t);
|
||||||
|
d_cdeltatDot_u(t)=kf_x(9,t);
|
||||||
|
|
||||||
|
% Kalman state prediction (time update)
|
||||||
|
kf_P_x = eye(st_nmbr)*100; %TODO: use a real value.
|
||||||
|
kf_xpri(:,t) = kf_F * (kf_x(:,t)-kf_x(:,t-1));% state prediction
|
||||||
|
kf_P_x= kf_F * kf_P_x * kf_F' + kf_Q;% state error covariance prediction
|
||||||
|
else
|
||||||
|
x_u=corr_kf_state(1,t-1);
|
||||||
|
y_u=corr_kf_state(2,t-1);
|
||||||
|
z_u=corr_kf_state(3,t-1);
|
||||||
|
xDot_u=corr_kf_state(4,t-1);
|
||||||
|
yDot_u=corr_kf_state(5,t-1);
|
||||||
|
zDot_u=corr_kf_state(6,t-1);
|
||||||
|
cdeltat_u(t)=corr_kf_state(7,t-1);
|
||||||
|
cdeltatDot_u(t)=corr_kf_state(8,t-1);
|
||||||
|
d_cdeltatDot_u(t)=corr_kf_state(9,t-1);
|
||||||
|
|
||||||
|
% Kalman state prediction (time update)
|
||||||
|
kf_P_x= kf_F * kf_P_x * kf_F' + kf_Q;% state error covariance prediction
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
for chan=1:5 %neccesary quantities
|
||||||
|
d(chan)=(sat_posX_m(chan,t)-x_u)^2;
|
||||||
|
d(chan)=d(chan)+(sat_posY_m(chan,t)-y_u)^2;
|
||||||
|
d(chan)=d(chan)+(sat_posZ_m(chan,t)-z_u)^2;
|
||||||
|
d(chan)=sqrt(d(chan));
|
||||||
|
|
||||||
|
c_pr_m(chan,t)=d(chan)+cdeltat_u(t);
|
||||||
|
|
||||||
|
a_x(chan,t)=-(sat_posX_m(chan,t)-x_u)/d(chan);
|
||||||
|
a_y(chan,t)=-(sat_posY_m(chan,t)-y_u)/d(chan);
|
||||||
|
a_z(chan,t)=-(sat_posZ_m(chan,t)-z_u)/d(chan);
|
||||||
|
|
||||||
|
rhoDot_pri(chan,t)=(sat_velX(chan,t)-xDot_u)*a_x(chan,t)...
|
||||||
|
+(sat_velY(chan,t)-yDot_u)*a_y(chan,t)...
|
||||||
|
+(sat_velZ(chan,t)-zDot_u)*a_z(chan,t);
|
||||||
|
end
|
||||||
|
|
||||||
|
for chan=1:5 % Measurement matrix H assembling
|
||||||
|
% It has st_nmbr columns (st_nmbr states) and 2*NSat rows (NSat psudorange error;NSat pseudo range rate error)
|
||||||
|
kf_H(chan, 1) = a_x(chan,t); kf_H(chan, 2) = a_y(chan,t); kf_H(chan, 3) = a_z(chan,t); kf_H(chan, 7) = 1.0;
|
||||||
|
kf_H(chan+sat_number, 4) = a_x(chan,t); kf_H(chan+sat_number, 5) = a_y(chan,t); kf_H(chan+sat_number, 6) = a_z(chan,t); kf_H(chan+sat_number, 8) = 1.0;
|
||||||
|
kf_H(chan+sat_number, 9) = kf_dt;
|
||||||
|
end
|
||||||
|
|
||||||
|
% unobsv(t) = length(kf_F) - rank(obsv(kf_F,kf_H));
|
||||||
|
% !!!! Limitaciones
|
||||||
|
% obsv no se recomienda para el diseño de control, ya que calcular el rango de la matriz de observabilidad
|
||||||
|
% no se recomienda para las pruebas de observabilidad. Ob será numéricamente singular para la mayoría de los
|
||||||
|
% sistemas con más de unos cuantos estados. Este hecho está bien documentado en la sección III de [1].
|
||||||
|
|
||||||
|
% Kalman estimation (measurement update)
|
||||||
|
for chan=1:5 % Measurement matrix H assembling
|
||||||
|
kf_yerr(chan,t)=c_pr_m(chan,t)-sat_prg_m(chan,t);
|
||||||
|
kf_yerr(chan+sat_number,t)=(sat_dopp_hz(chan,t)*Lambda_GPS_L1+cdeltatDot_u(t)+kf_dt*d_cdeltatDot_u(t))-rhoDot_pri(chan,t);
|
||||||
|
end
|
||||||
|
|
||||||
|
% DOUBLES DIFFERENCES
|
||||||
|
% kf_yerr = zeros(2*sat_number, 1);
|
||||||
|
% for (int32_t i = 1; i < sat_number; i++) % Measurement vector
|
||||||
|
% {
|
||||||
|
% kf_y(i)=new_data.pr_m(i)-new_data.pr_m(i-1);
|
||||||
|
% kf_yerr(i)=kf_y(i)-(rho_pri(i)+rho_pri(i-1));
|
||||||
|
% kf_y(i+sat_number)=(rhoDot_pri(i)-rhoDot_pri(i-1))/Lambda_GPS_L1;
|
||||||
|
% kf_yerr(i+sat_number)=kf_y(i+sat_number)-(new_data.doppler_hz(i)-new_data.doppler_hz(i-1));
|
||||||
|
% }
|
||||||
|
% kf_yerr.print("DOUBLES DIFFERENCES");
|
||||||
|
|
||||||
|
% Kalman filter update step
|
||||||
|
kf_S = kf_H * kf_P_x* kf_H' + kf_R; % innovation covariance matrix (S)
|
||||||
|
kf_K = (kf_P_x * kf_H') * inv(kf_S); % Kalman gain
|
||||||
|
kf_xerr(:,t) = kf_K * (kf_yerr(:,t)); % Error state estimation
|
||||||
|
kf_P_x = (eye(length(kf_P_x)) - kf_K * kf_H) * kf_P_x; % update state estimation error covariance matrix
|
||||||
|
|
||||||
|
if (t<3)
|
||||||
|
% kf_xerr(9,t)=15;
|
||||||
|
corr_kf_state(:,t)=kf_xpri(:,t)-kf_xerr(:,t)+kf_x(:,t); %updated state estimation
|
||||||
|
else
|
||||||
|
corr_kf_state(:,t)=corr_kf_state(:,t-1)-kf_xerr(:,t); %updated state estimation
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ################## Geometric Transformation ######################################
|
||||||
|
|
||||||
|
x_u=corr_kf_state(1,t);
|
||||||
|
y_u=corr_kf_state(2,t);
|
||||||
|
z_u=corr_kf_state(3,t);
|
||||||
|
xDot_u=corr_kf_state(4,t);
|
||||||
|
yDot_u=corr_kf_state(5,t);
|
||||||
|
zDot_u=corr_kf_state(6,t);
|
||||||
|
cdeltat_u_g=corr_kf_state(7,t);
|
||||||
|
cdeltatDot_u_g=corr_kf_state(8,t);
|
||||||
|
d_cdeltatDot_u_g=corr_kf_state(9,t);
|
||||||
|
|
||||||
|
% for chan=1:5 %neccesary quantities
|
||||||
|
% d(chan)=(sat_posX_m(chan,t)-x_u)^2;
|
||||||
|
% d(chan)=d(chan)+(sat_posY_m(chan,t)-y_u)^2;
|
||||||
|
% d(chan)=d(chan)+(sat_posZ_m(chan,t)-z_u)^2;
|
||||||
|
% d(chan)=sqrt(d(chan));
|
||||||
|
%
|
||||||
|
% c_pr_m(chan,t)=d(chan)+cdeltat_u_g;
|
||||||
|
%
|
||||||
|
% a_x(chan,t)=-(sat_posX_m(chan,t)-x_u)/d(chan);
|
||||||
|
% a_y(chan,t)=-(sat_posY_m(chan,t)-y_u)/d(chan);
|
||||||
|
% a_z(chan,t)=-(sat_posZ_m(chan,t)-z_u)/d(chan);
|
||||||
|
%
|
||||||
|
% rhoDot_pri(chan,t)=(sat_velX(chan,t)-xDot_u)*a_x(chan,t)...
|
||||||
|
% +(sat_velY(chan,t)-yDot_u)*a_y(chan,t)...
|
||||||
|
% +(sat_velZ(chan,t)-zDot_u)*a_z(chan,t);
|
||||||
|
% end
|
||||||
|
|
||||||
|
kf_H = zeros(2*sat_number,st_nmbr);
|
||||||
|
|
||||||
|
for chan=1:5 % Measurement matrix H assembling
|
||||||
|
% It has st_nmbr columns (st_nmbr states) and 2*NSat rows (NSat psudorange error;NSat pseudo range rate error)
|
||||||
|
kf_H(chan, 1) = a_x(chan,t); kf_H(chan, 2) = a_y(chan,t); kf_H(chan, 3) = a_z(chan,t); kf_H(chan, 7) = 1.0;
|
||||||
|
kf_H(chan+sat_number, 4) = a_x(chan,t); kf_H(chan+sat_number, 5) = a_y(chan,t); kf_H(chan+sat_number, 6) = a_z(chan,t); kf_H(chan+sat_number, 8) = 1.0;
|
||||||
|
kf_H(chan+sat_number, 9) = kf_dt;
|
||||||
|
end
|
||||||
|
|
||||||
|
% Re-calculate error measurement vector with the most recent data available: kf_delta_y=kf_H*kf_delta_x
|
||||||
|
kf_yerr_g=kf_H*kf_xerr;
|
||||||
|
% Filtered pseudorange error measurement (in m) AND Filtered Doppler shift measurements (in Hz):
|
||||||
|
for chan=1:5 % Measurement vector
|
||||||
|
pr_m_filt(chan,t)=sat_prg_m(chan,t)+kf_yerr_g(chan,t);% now filtered
|
||||||
|
rhoDot_pri_filt(chan,t)=(sat_dopp_hz(chan,t)*Lambda_GPS_L1+corr_kf_state(8,t)+kf_dt*corr_kf_state(9,t))-kf_yerr_g(chan+sat_number,t);
|
||||||
|
%convert rhoDot_pri to doppler shift!
|
||||||
|
% d_dt_clk_drift=(corr_kf_state(8,t)-corr_kf_state(8,t-1));
|
||||||
|
|
||||||
|
if (t<3)
|
||||||
|
sat_dopp_hz_filt(chan,t)=(rhoDot_pri_filt(chan,t)-corr_kf_state(8,t)-corr_kf_state(9,t)*kf_dt)/Lambda_GPS_L1;
|
||||||
|
else
|
||||||
|
sat_dopp_hz_filt(chan,t)=(rhoDot_pri_filt(chan,t)-corr_kf_state(8,t)-corr_kf_state(9,t)*kf_dt)/Lambda_GPS_L1;
|
||||||
|
end
|
||||||
|
|
||||||
|
% carrier_phase_rads = 0;
|
||||||
|
carrier_freq_hz =GPS_L1_freq_hz+sat_dopp_hz_filt(chan,t);
|
||||||
|
% carrier_freq_rate_hz_s = 0;
|
||||||
|
% code_phase_chips = 0;
|
||||||
|
end
|
||||||
|
|
||||||
|
% carrier_phase_rads = 0;
|
||||||
|
% carrier_freq_hz = 0;
|
||||||
|
% carrier_freq_rate_hz_s = 0;
|
||||||
|
% code_phase_chips = 0;
|
||||||
|
end
|
102
src/utils/matlab/vtl/vtl_prototype_clk_d_drift.m
Normal file
102
src/utils/matlab/vtl/vtl_prototype_clk_d_drift.m
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
% VTL prototype
|
||||||
|
% -------------------------------------------------------------------------
|
||||||
|
%
|
||||||
|
% GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
||||||
|
% This file is part of GNSS-SDR.
|
||||||
|
%
|
||||||
|
% Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
||||||
|
% SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
%
|
||||||
|
% -------------------------------------------------------------------------
|
||||||
|
%
|
||||||
|
%%
|
||||||
|
clc
|
||||||
|
close all
|
||||||
|
clearvars
|
||||||
|
|
||||||
|
% if ~exist('gps_l1_ca_read_pvt_raw_dump.m', 'file')
|
||||||
|
% addpath('./libs')
|
||||||
|
% end
|
||||||
|
%
|
||||||
|
% if ~exist('cat2geo.m', 'file')
|
||||||
|
% addpath('./libs/geoFunctions')
|
||||||
|
% end
|
||||||
|
SPEED_OF_LIGHT_M_S=299792458.0;
|
||||||
|
Lambda_GPS_L1=0.1902937;
|
||||||
|
GPS_L1_freq_hz=1575.42e6;
|
||||||
|
% point_of_closure=4118;%4060;
|
||||||
|
|
||||||
|
%% ==================== VARIANCES =============================
|
||||||
|
pos_var=100;%m^2
|
||||||
|
vel_var=10;%m^2/s^2
|
||||||
|
clk_bias_var=100;%m^2
|
||||||
|
clk_drift_var=40;%m^2/s^2
|
||||||
|
clk_d_drift_var=1;
|
||||||
|
|
||||||
|
pr_var=20;%m^2
|
||||||
|
pr_dot_var=2;%m^2/s^2
|
||||||
|
% CARLES PAPER LTE GNSS VTL
|
||||||
|
% pos_var=2;%m^2
|
||||||
|
% vel_var=0.2;%m^2/s^2
|
||||||
|
% clk_bias_var=1e-7;%m^2
|
||||||
|
% clk_drift_var=1e-4;%m^2/s^2
|
||||||
|
% pr_var=20;%m^2
|
||||||
|
% pr_dot_var=3;%m^2/s^2
|
||||||
|
%% ============================================================
|
||||||
|
samplingFreq=5000000;
|
||||||
|
channels=6;
|
||||||
|
TTFF_sec=41.48;
|
||||||
|
spirent_index_TTFF=416;
|
||||||
|
|
||||||
|
plot_skyplot=0;
|
||||||
|
plot_reference=1;
|
||||||
|
load_observables=1;
|
||||||
|
|
||||||
|
%% ============================ PARSER TO STRUCT ============================
|
||||||
|
|
||||||
|
navSolution = GnssSDR2struct('PVT_raw.mat');
|
||||||
|
refSolution = SpirentMotion2struct('..\log_spirent\motion_V1_SPF_LD_05.csv');
|
||||||
|
%
|
||||||
|
load observables\observables_raw.mat
|
||||||
|
% refSatData = SpirentSatData2struct('..\log_spirent\sat_data_V1A1_SPF_LD_05.csv');
|
||||||
|
rx_PRN=[28 4 17 15 27 9]; % for SPF_LD_05.
|
||||||
|
load('PVT_raw.mat','sat_posX_m','sat_posY_m','sat_posZ_m','sat_velX','sat_velY'...
|
||||||
|
,'sat_velZ','sat_prg_m','clk_bias_s','clk_drift','sat_dopp_hz','user_clk_offset')
|
||||||
|
|
||||||
|
if(load_observables)
|
||||||
|
load observables\observables_raw.mat
|
||||||
|
refSatData = SpirentSatData2struct('..\log_spirent\sat_data_V1A1_SPF_LD_05.csv');
|
||||||
|
end
|
||||||
|
%%
|
||||||
|
% vtlSolution = Vtl2struct('dump_vtl_file.csv');
|
||||||
|
%%
|
||||||
|
|
||||||
|
kf_prototype_clk_d
|
||||||
|
|
||||||
|
%% ====== FILTERING =======================================================
|
||||||
|
% moving_avg_factor= 500;
|
||||||
|
% LAT_FILT = movmean(navSolution.latitude,moving_avg_factor);
|
||||||
|
% LON_FILT = movmean(navSolution.longitude,moving_avg_factor);
|
||||||
|
% HEIGH_FILT = movmean(navSolution.height,moving_avg_factor);
|
||||||
|
%
|
||||||
|
% X_FILT = movmean(navSolution.X,moving_avg_factor);
|
||||||
|
% Y_FILT = movmean(navSolution.Y,moving_avg_factor);
|
||||||
|
% Z_FILT = movmean(navSolution.Z,moving_avg_factor);
|
||||||
|
%
|
||||||
|
% vX_FILT = movmean(navSolution.vX,moving_avg_factor);
|
||||||
|
% vY_FILT = movmean(navSolution.vY,moving_avg_factor);
|
||||||
|
% vZ_FILT = movmean(navSolution.vZ,moving_avg_factor);
|
||||||
|
%
|
||||||
|
%%
|
||||||
|
%general_raw_plot
|
||||||
|
vtl_general_plot
|
||||||
|
|
||||||
|
%% ============================================== ==============================================
|
||||||
|
%%
|
||||||
|
figure;plot(navSolution.RX_time-navSolution.RX_time(1),kf_yerr(1:5,:)');title('c pr m-error');xlabel('t U.A');ylabel('pr m [m]');grid minor
|
||||||
|
legend('PRN 28','PRN 4','PRN 17','PRN 15','PRN 27','Location','eastoutside')
|
||||||
|
figure;plot(navSolution.RX_time-navSolution.RX_time(1),kf_yerr(6:10,:)');title('c pr m DOT-error');xlabel('t U.A');ylabel('pr m dot [m/s]');grid minor
|
||||||
|
legend('PRN 28','PRN 4','PRN 17','PRN 15','PRN 27','Location','eastoutside')
|
||||||
|
|
||||||
|
%%
|
||||||
|
figure;plot(navSolution.RX_time-navSolution.RX_time(1),kf_xerr(9,:)');title('kf 9 xerr');xlabel('t U.A');ylabel('kf 9 xerr');grid minor
|
Loading…
Reference in New Issue
Block a user