pub struct MultiTruingReport {Show 17 fields
pub fitted_mv_fps: f64,
pub fitted_bc: f64,
pub bc_input: f64,
pub bc_fitted: bool,
pub observations: Vec<TruingObservation>,
pub predicted: Vec<f64>,
pub residuals: Vec<f64>,
pub rms: f64,
pub iterations: usize,
pub converged: bool,
pub sensitivity_ratio: f64,
pub condition_number: f64,
pub quality: String,
pub reason: String,
pub mach_1_2_distance_m: Option<f64>,
pub window_solved_range_m: f64,
pub muzzle_mach: f64,
}Expand description
Final report produced by a multi-observation truing fit.
Fields§
§fitted_mv_fps: f64§fitted_bc: f64§bc_input: f64§bc_fitted: bool§observations: Vec<TruingObservation>§predicted: Vec<f64>§residuals: Vec<f64>§rms: f64§iterations: usize§converged: bool§sensitivity_ratio: f64§condition_number: f64§quality: String§reason: String§mach_1_2_distance_m: Option<f64>Downward Mach-1.2 crossing distance (meters) for the finally fitted
(fitted_mv_fps, fitted_bc) load, re-solved out to a fixed 3000 yd
envelope independent of the observation set (the window describes the
load, not wherever the caller happened to shoot). Feeds
mv_calibration_window for the MV-calibration window report line
(MBA-1405 Task 2). None when the trajectory never crosses within that
envelope.
window_solved_range_m: f64The downrange distance (meters) the fixed-envelope re-solve actually
reached — names the range checked in the “no MV window” report note
when mach_1_2_distance_m is None (MBA-1405 Task 2).
muzzle_mach: f64Mach number at the first trajectory point of the fixed-envelope re-solve
(points[0].velocity_magnitude / station_speed_of_sound_mps, the same
convention apply_dsf/truing_dsf use for per-point Mach). Distinguishes,
when mach_1_2_distance_m is None, a load that is still supersonic at
the end of the window envelope (muzzle Mach >= 1.2) from one that launches
below Mach 1.2 and never crosses downward at all (muzzle Mach < 1.2) — the
two have opposite report text (MBA-1405 Task 2 fix pass).
Trait Implementations§
Source§impl Clone for MultiTruingReport
impl Clone for MultiTruingReport
Source§fn clone(&self) -> MultiTruingReport
fn clone(&self) -> MultiTruingReport
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for MultiTruingReport
impl RefUnwindSafe for MultiTruingReport
impl Send for MultiTruingReport
impl Sync for MultiTruingReport
impl Unpin for MultiTruingReport
impl UnsafeUnpin for MultiTruingReport
impl UnwindSafe for MultiTruingReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.