nyx_space/od/process/conf.rs
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
/*
Nyx, blazing fast astrodynamics
Copyright (C) 2018-onwards Christopher Rabotin <christopher.rabotin@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use crate::time::{Duration, Epoch};
use crate::NyxError;
use std::convert::TryFrom;
use std::default::Default;
use std::fmt;
use typed_builder::TypedBuilder;
/// Defines the stopping condition for the smoother
#[derive(Clone, Copy, Debug)]
pub enum SmoothingArc {
/// Stop smoothing when the gap between estimate is the provided floating point number in seconds
TimeGap(Duration),
/// Stop smoothing at the provided Epoch.
Epoch(Epoch),
/// Stop smoothing at the first prediction
Prediction,
/// Only stop once all estimates have been processed
All,
}
impl fmt::Display for SmoothingArc {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
SmoothingArc::All => write!(f, "all estimates"),
SmoothingArc::Epoch(e) => write!(f, "{e}"),
SmoothingArc::TimeGap(g) => write!(f, "time gap of {g}"),
SmoothingArc::Prediction => write!(f, "first prediction"),
}
}
}
impl Default for SmoothingArc {
fn default() -> Self {
Self::All
}
}
/// Defines a filter iteration configuration. Allows iterating on an OD solution until convergence criteria is met.
/// The root mean squared of the prefit residuals ratios is used to assess convergence between iterations.
#[derive(Clone, Copy, Debug, TypedBuilder)]
pub struct IterationConf {
/// The number of measurements to account for in the iteration
#[builder(default)]
pub smoother: SmoothingArc,
/// The absolute tolerance of the RMS prefit residual ratios
#[builder(default = 1e-1)]
pub absolute_tol: f64,
/// The relative tolerance between the latest RMS prefit residual ratios and the best RMS prefit residual ratios so far
#[builder(default = 1e-2)]
pub relative_tol: f64,
/// The maximum number of iterations to allow (will raise an error if the filter has not converged after this many iterations)
#[builder(default = 15)]
pub max_iterations: usize,
/// The maximum number of subsequent divergences in RMS.
#[builder(default = 3)]
pub max_divergences: usize,
/// Set to true to force an ODP failure when the convergence criteria is not met
#[builder(default = false)]
pub force_failure: bool,
}
impl IterationConf {
/// Iterate and smooth only once
pub fn once() -> Self {
Self {
max_iterations: 1,
..Default::default()
}
}
}
impl Default for IterationConf {
/// The default absolute tolerance is 1e-2 (calibrated on an EKF with error).
fn default() -> Self {
Self {
smoother: SmoothingArc::All,
absolute_tol: 1e-1,
relative_tol: 1e-2,
max_iterations: 15,
max_divergences: 3,
force_failure: false,
}
}
}
impl fmt::Display for IterationConf {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Iterate until abs = {:.2e}, or rel = {:.2e}, or {} iterations, or {} subsequent divergences with smoothing condition of {}",
self.absolute_tol,
self.relative_tol,
self.max_iterations,
self.max_divergences,
self.smoother)
}
}
impl TryFrom<SmoothingArc> for IterationConf {
type Error = NyxError;
/// Converts a smoother into an interation configuration to iterate just once without failing
fn try_from(smoother: SmoothingArc) -> Result<Self, Self::Error> {
Ok(Self {
smoother,
force_failure: false,
..Default::default()
})
}
}