forked from Aceinna/gnss-ins-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_aceinna_ins.py
73 lines (65 loc) · 2.75 KB
/
demo_aceinna_ins.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- coding: utf-8 -*-
# Filename: demo_aceinna-ins.py
"""
An inclinometer demo.
Created on 2018-10-31
@author: dongxiaoguang
"""
import os
import platform
import math
import numpy as np
from gnss_ins_sim.sim import imu_model
from gnss_ins_sim.sim import ins_sim
# globals
D2R = math.pi/180.0
motion_def_path = os.path.abspath('.//demo_motion_def_files//')
fs = 100.0 # IMU sample frequency
def test_dmu380_sim():
'''
test Sim with DMU380 algorithm.
'''
#### choose a built-in IMU model, typical for IMU380
imu_err = {'gyro_b': np.array([1.0, -1.0, 0.5]) * 1800.0 * 0.0e0,
'gyro_arw': np.array([0.25, 0.25, 0.25]) * 1.0e0,
'gyro_b_stability': np.array([3.5, 3.5, 3.5]) * 1.0e0,
'gyro_b_corr': np.array([100.0, 100.0, 100.0]),
'accel_b': np.array([5.0e-3, 5.0e-3, 5.0e-3]) * 0.0e1,
'accel_vrw': np.array([0.03119, 0.03009, 0.04779]) * 1.0e0,
'accel_b_stability': np.array([4.29e-5, 5.72e-5, 8.02e-5]) * 1.0e0,
'accel_b_corr': np.array([200.0, 200.0, 200.0]),
'mag_std': np.array([0.2, 0.2, 0.2]) * 1.0
}
gps_err = {'stdp': np.array([5.0, 5.0, 7.0]) * 0.2,
'stdv': np.array([0.05, 0.05, 0.05]) * 1.0}
odo_err = {'scale': 0.999,
'stdv': 0.01}
# generate GPS and magnetometer data
imu = imu_model.IMU(accuracy=imu_err, axis=9, gps=True, gps_opt=gps_err,
odo=True, odo_opt=odo_err)
#### Algorithm
# DMU380 algorithm
from demo_algorithms import aceinna_ins
cfg_file = os.path.abspath('.//demo_algorithms//dmu380_sim_lib//ekfSim_ins.cfg')
algo = aceinna_ins.DMU380Sim(cfg_file)
#### start simulation
sim = ins_sim.Sim([fs, 1, fs],
motion_def_path+"//motion_def-Holland_tunnel.csv",
# ".//demo_saved_data//2019-08-27-10-26-14//",
ref_frame=0,
imu=imu,
mode=None,
env=None,#'[0.01 0.01 0.11]g-random',
algorithm=algo)
sim.run(1)
# generate simulation results, summary, and save data to files
sim.results('.//demo_saved_data//tmp', err_stats_start=210, gen_kml=True, extra_opt='ned')
# plot data
sim.plot(['pos', 'vel', 'wb', 'ab', 'att_euler'], opt={'pos':'error', 'vel':'error', 'att_euler':'error'})
if __name__ == '__main__':
if platform.system() == 'Windows':
test_dmu380_sim()
else:
print("Because the INS algorithm is compiled into a DLL, only Windows are supported.")
print("For other platforms, please use the C source code. To get the C source code, ")
print("please refer to https://openimu.readthedocs.io/en/latest/apps/ins.html")