-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathekf_both.toml
More file actions
43 lines (35 loc) · 782 Bytes
/
Copy pathekf_both.toml
File metadata and controls
43 lines (35 loc) · 782 Bytes
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
# EKF with both gravity and magnetic anomaly measurements
input = "data/input"
output = "data/output/ekf/both"
mode = "closed-loop"
seed = 42
parallel = true
[logging]
level = "info"
file = "log/ekf_both.log"
[closed_loop]
filter = "ekf"
[geophysical]
# Gravity anomaly measurements
gravity_resolution = "one_minute"
gravity_bias = 0.0
gravity_noise_std = 100.0
# Magnetic anomaly measurements
magnetic_resolution = "two_minutes"
magnetic_bias = 0.0
magnetic_noise_std = 150.0
# Measurement frequency (seconds)
geo_frequency_s = 1.0
[gnss_degradation]
seed = 42
[gnss_degradation.scheduler]
kind = "fixed_interval"
interval_s = 60.0
phase_s = 0.0
[gnss_degradation.fault]
kind = "degraded"
rho_pos = 0.99
sigma_pos_m = 15.0
rho_vel = 0.95
sigma_vel_mps = 5.0
r_scale = 15.0