pub struct HighDynamicsSettings {
pub lorentz: LorentzFactor,
pub w_min_corrected: u32,
pub rho_corrected: f32,
pub doppler_hz: f32,
pub relativistic_residual_hz: f32,
pub correction_significant: bool,
}Expand description
High-dynamics platform settings for DSFB-RF engine configuration.
At high radial velocity the received waveform’s coherence time contracts by 1/γ. The DSFB observation window W and calibration ρ must be scaled accordingly to prevent spurious stationarity failures.
Fields§
§lorentz: LorentzFactorLorentz factor for this platform velocity.
w_min_corrected: u32Corrected minimum observation window W_min (samples). W_min_corrected = W_min_nominal × γ (window must be longer to sample the same number of coherence-length intervals).
rho_corrected: f32Corrected ρ (admissibility envelope width), scaled by 1/γ. Faster platform → shorter decorrelation → narrower effective ρ.
doppler_hz: f32Doppler-induced frequency shift (Hz) at the carrier frequency.
relativistic_residual_hz: f32Relativistic correction residual (Hz) above classical Doppler.
correction_significant: boolWhether relativistic correction is physically significant.
true when β > 3e-5 (≈ Mach 26 at sea level).
Trait Implementations§
Source§impl Clone for HighDynamicsSettings
impl Clone for HighDynamicsSettings
Source§fn clone(&self) -> HighDynamicsSettings
fn clone(&self) -> HighDynamicsSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more