资源简介
GNSS/INS组合导航例程,包括组合模式,实验结果。

代码片段和文件信息
%===========================================================%
% gnss_ins_filter_config.m %
% %
% This m-file contains all the conifiguraiton switches %
% for the GNSS/INS filter. %
% %
% Programmer: Demoz Gebre-Egziabher %
% Created: March 26 2009 %
% Last Modified: March 26 2009 %
% %
% Copywrite 2009 Demoz Gebre-Egziabher %
% License: BSD see bsd.txt for details %
%===========================================================%
% Define start and stop time in MINUTES for playback. The
% data provided is from a flighttest of 14 minutes duration.
% The variables t_start and t_end must define a time interval
% between 0 and 14 minutes.
t_start = 7;
t_end = 13.5;
% Configure the Extended Kalman Filter (EKF)
CLOSED_LOOP = 1; % If set to 1 a GNSS-aided
% inertial navigator is simulated.
% If set to 0 the simulation will
% be that of an unaided INS.
NO_CORIOLIS = 1; % If set to 1 coriolis acceleraitons
% are ignored in the time upadate
% equations. Should be set to 0 when
% using high grade inertial sensors and
% GNSS updates come at a slow rate.
SMALL_PROP_TIME = 1; % If set to 1 it means that the time
% between GNSS updates is small and
% thus Schuler dynamics can be
% ignored without much consequence.
% That is the approximation given by
% Equation (6.17) is used for the
% velocity propagation instead of
% Equation (6.13)
gnss_update_rate = 1; % GNSS measurement update rate in Hz.
% GPS measurement noise standard deviation
gps_pos_sigma = 3; % m (North East Down)
gps_vel_sigma = 0.2; % m/s (North East Donw)
% IMU output error covariance (Table 1 Chapter 6)
sigma_g_d = 0.3*d2r; % Standard deviation of correlated gyro bias
tau_g = 300; % Correlation time or time constant of b_{gd}
sigma_g_w = 0.95*d2r; % Standard deviation of gyro output noise
sigma_a_d = (0.5e-3)*g; % Standard deviation of Accelerometer Markov Bias
tau_a = 300; % Correlation time or time constant of b_{ad}
sigma_a_w = 0.12*g;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-08-19 08:48 GNSS_INS\
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_1\
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\
文件 1446 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\bsd.txt
文件 1506894 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\flight_data.mat
文件 3075 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\gnss_ins_EKF_config.m
文件 1263 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\gnss_ins_EKF_constants.m
文件 2101 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\gnss_ins_EKF_data_loader.m
文件 17188 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\gnss_ins_EKF_loose_integration.m
文件 4212 2014-08-19 08:48 GNSS_INS\Case_Study_1\MATLAB\plot_EKF_output.m
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\
文件 1446 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\bsd.txt
文件 1506894 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\flight_data.mat
文件 3075 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\gnss_ins_EKF_config.m
文件 1263 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\gnss_ins_EKF_constants.m
文件 2262 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\gnss_ins_EKF_data_loader.m
文件 17038 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\gnss_ins_EKF_loose_integration.m
文件 4212 2014-08-19 08:48 GNSS_INS\Case_Study_1\Octave\plot_EKF_output.m
文件 12401 2014-08-19 08:48 GNSS_INS\Case_Study_1\readme_case_1.pdf
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_2\
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\
目录 0 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\New_Data\
文件 223080 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\New_Data\TRAJECTORY_A.mat
文件 74636 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\New_Data\TRAJECTORY_A_FILTER_ARCHITECTURE_P.mat
文件 285562 2014-08-21 17:47 GNSS_INS\Case_Study_2\MATLAB\New_Data\TRAJECTORY_B.mat
文件 76434 2014-08-21 17:47 GNSS_INS\Case_Study_2\MATLAB\New_Data\TRAJECTORY_B_FILTER_ARCHITECTURE_P.mat
文件 1446 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\bsd.txt
文件 3114 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\case_study_2_wrapper.m
文件 13522 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\gen_traj_sensor_data.m
文件 11803 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\gnss_ins_EKF_2D.m
文件 5257 2014-08-19 08:48 GNSS_INS\Case_Study_2\MATLAB\plot_EKF_results.m
............此处省略35个文件信息
- 上一篇:PN532读写CUID
- 下一篇:进程间消息通知方式通信
相关资源
- CCSv9链接及安装流程详解
- CAD中插入带坐标的正射影像——Inse
- Uninstall_Cortana_WINCLIENT.CN.rar
- VisualStudioUninstaller vs卸载工具
- 微软的可以删除系统卸不干净的软件
- 毕业设计:网络围棋对弈
- Source Insight 3.5 配置文件
- 采用WINSOCK2 编写的TCP/UDP通信程序
- winsock win10 注册表备份文件
- Anti-biofilm Activity of Resveratrol and Ursol
- In vitro screening of lactobacilli with antago
- System Design Interview - An Insider’s Guide
- 西门子授权工具Sim_EKB_Install_2016_05_0
- 一种有效的InSAR相位干涉图滤波方法
- NetApp NetCache助HypoVereinsbank实现安全快
- 在s = 7 $$ \\ sqrt {s} = 7 $$ TeV的pp碰撞中
- 广义Einstein-Cartan-Kibble-Sciama引力和引力
- q广义Bose-Einstein和Fermi-Dirac系统的热力
- Rindler空间中的Bose-Einstein凝聚
- 具有Λ项的Einstein–Gauss&ndash
- Weyl和Einstein–Gauss–Bonnet引力中
- Einstein-Gauss-Bonnet引力的大D膜范例
- Einstein-Maxwell-Dilaton-Axion模型中的剪切
- Novel fluorescent proteins generated by de nov
- 3PAR INSERVE S400~S800产品手册
- 3PAR INSERVE E200产品手册
- Investigation of the Absorption Mechanism of G
- putty-64bit-0.70-installer
- Installation OpenMeetings 5.0.0-M2 on Centos 7
- 重轨InSAR测量中的大气校正方法综述
评论
共有 条评论