当前位置:网站首页>PSINS中19维组合导航模块sinsgps详解(滤波部分)
PSINS中19维组合导航模块sinsgps详解(滤波部分)
2022-07-06 19:13:00 【python小白(下阶段小黑)】
PSINS中19维组合导航模块sinsgps详解
滤波部分
for k=1:nn:len-nn+1
k1 = k+nn-1;
wvm = imu(k:k1,1:6); t = imu(k1,end);
ins = insupdate(ins, wvm);
上述代码先进行的是惯导算法更新
2.kf.Phikk_1 = kffk(ins);
为创建卡尔曼滤波的状态转移矩阵
3.kf = kfupdate(kf);
卡尔曼滤波的时间更新
4. [kgps, dt] = imugpssyn(k, k1, 'F');
是计算imu
和gps
对应的时间差值dt
,和gps
数据所在的行数kgps
5. measflag = 0;
量测更新方法标识的初始化
6. ins = inslever(ins);
为进行杆臂补偿
7.
if kgps>0
dtpos=+vn2dpos(ins.eth,ins.vnL,ins.tDelay);
上述代码块表示为,计算ins.tDelay
时间内的位置增量
8.
if gpspos_only==1
measflag = 2;
zk = ins.posL+dtpos-gps(kgps,1:3)';
kf.Hk = [zeros(3,6), eye(3), zeros(3,6), -ins.MpvCnb,-ins.Mpvvn];
else
measflag = 3;
zk = [ins.vnL+ins.tDelay*ins.anbar;ins.posL+dtpos]-gps(kgps,1:6)';
kf.Hk = [zeros(6,3), eye(6), zeros(6,6), [-ins.CW,-ins.anbar;-ins.MpvCnb,-ins.Mpvvn]];
end
上述代码为根据gps
提供的观测量的维度,设计卡尔曼滤波的观测值zk
和系数矩阵Hk
9. kf = kfupdate(kf, zk, 'M');
为进行卡尔曼滤波的量测更新
10. 10.zkrk(kiz,:) = [zk; diag(kf.Rk); t]; kiz = kiz+1;
数据存储
11. [kf, ins] = kffeedback(kf, ins, nts);
卡尔曼滤波的反馈校正
12.
avp(ki,:) = [ins.att; ins.vnL; ins.posL; ins.eb; ins.db; t]';
xkpk(ki,:) = [kf.xk; diag(kf.Pxk); t]';
sk(ki,:) = [measflag, t]; ki = ki+1;
数据存储
·······································································································
理解不足之处,还请赐教!
·······································································································
边栏推荐
- 进程管理基础
- 3 -- Xintang nuc980 kernel supports JFFS2, JFFS2 file system production, kernel mount JFFS2, uboot network port settings, and uboot supports TFTP
- How to write test cases for test coupons?
- [Mori city] random talk on GIS data (II)
- Use of fiddler
- QPushButton-》函数精解
- Statistics of radar data in nuscenes data set
- Django数据库(SQlite)基本入门使用教程
- CSDN 夏令营课程 项目分析
- LeetCode 77:组合
猜你喜欢
Five reasons for clothing enterprises to deploy MES management system
Planning and design of double click hot standby layer 2 network based on ENSP firewall
Compress JS code with terser
MES管理系统的应用和好处有哪些
Kysl Haikang camera 8247 H9 ISAPI test
C#/VB.NET 删除Word文档中的水印
Ali yunyili: how does yunyuansheng solve the problem of reducing costs and improving efficiency?
The 8 element positioning methods of selenium that you have to know are simple and practical
Classify the features of pictures with full connection +softmax
How to write test cases for test coupons?
随机推荐
【软件测试】最全面试问题和回答,全文背熟不拿下offer算我输
Redis入门完整教程:复制原理
Summer Challenge database Xueba notes (Part 2)~
Untiy文本框的代码换行问题
4--新唐nuc980 挂载initramfs nfs文件系统
Gee upgrade can realize one piece of run tasks
Here comes a white paper to uncover the technology behind Clickhouse, a node with 10000 bytes!
Django database (SQLite) basic introductory tutorial
Use of pgpool II and pgpooladmin
leetcode:5. Longest palindrome substring [DP + holding the tail of timeout]
实施MES管理系统时,哪些管理点是需要注意的
Hash table and full comments
写作系列之contribution
【Node学习笔记】chokidar模块实现文件监听
Safety delivery engineer
差异与阵列和阵列结构和链表的区别
MySQL
The 8 element positioning methods of selenium that you have to know are simple and practical
Electrical engineering and automation
MySQL - common functions - string functions