nyx_space/od/filter/kalman/
initializers.rs1pub use crate::errors::NyxError;
20use crate::linalg::allocator::Allocator;
21use crate::linalg::{DefaultAllocator, DimName, U3};
22pub use crate::od::estimate::{Estimate, KfEstimate, Residual};
23pub use crate::od::snc::ProcessNoise;
24use crate::od::State;
25pub use crate::time::{Epoch, Unit};
26
27use super::KF;
28
29impl<T, A> KF<T, A>
30where
31 A: DimName,
32 T: State,
33 DefaultAllocator: Allocator<<T as State>::Size>
34 + Allocator<<T as State>::VecLength>
35 + Allocator<A>
36 + Allocator<<T as State>::Size, <T as State>::Size>
37 + Allocator<A, A>
38 + Allocator<<T as State>::Size, A>
39 + Allocator<A, <T as State>::Size>,
40 <DefaultAllocator as Allocator<<T as State>::Size>>::Buffer<f64>: Copy,
41 <DefaultAllocator as Allocator<<T as State>::Size, <T as State>::Size>>::Buffer<f64>: Copy,
42{
43 pub fn new(initial_estimate: KfEstimate<T>, process_noise: ProcessNoise<A>) -> Self {
45 assert_eq!(
46 A::dim() % 3,
47 0,
48 "SNC can only be applied to accelerations multiple of 3"
49 );
50
51 let mut process_noise = process_noise;
53 process_noise.init_epoch = Some(initial_estimate.epoch());
54
55 Self {
56 prev_estimate: initial_estimate,
57 process_noise: vec![process_noise],
58 ekf: false,
59 prev_used_snc: 0,
60 }
61 }
62
63 pub fn with_sncs(
67 initial_estimate: KfEstimate<T>,
68 process_noises: Vec<ProcessNoise<A>>,
69 ) -> Self {
70 assert_eq!(
71 A::dim() % 3,
72 0,
73 "SNC can only be applied to accelerations multiple of 3"
74 );
75 let mut process_noises = process_noises;
76 for snc in &mut process_noises {
78 snc.init_epoch = Some(initial_estimate.epoch());
79 }
80
81 Self {
82 prev_estimate: initial_estimate,
83 process_noise: process_noises,
84 ekf: false,
85 prev_used_snc: 0,
86 }
87 }
88}
89
90impl<T> KF<T, U3>
91where
92 T: State,
93 DefaultAllocator: Allocator<<T as State>::Size>
94 + Allocator<<T as State>::VecLength>
95 + Allocator<<T as State>::Size, <T as State>::Size>
96 + Allocator<U3, U3>
97 + Allocator<<T as State>::Size, U3>
98 + Allocator<U3, <T as State>::Size>,
99 <DefaultAllocator as Allocator<<T as State>::Size>>::Buffer<f64>: Copy,
100 <DefaultAllocator as Allocator<<T as State>::Size, <T as State>::Size>>::Buffer<f64>: Copy,
101{
102 pub fn no_snc(initial_estimate: KfEstimate<T>) -> Self {
104 Self {
105 prev_estimate: initial_estimate,
106 process_noise: Vec::new(),
107 ekf: false,
108 prev_used_snc: 0,
109 }
110 }
111}