starfall/astronomy/distant_binary_star/constants/
mod.rs

1/// The minimum average separation of "distant" binary stars, in AU.
2pub const MINIMUM_AVERAGE_SEPARATION: f64 = 120.0;
3
4/// The maximum average separation of "distant" binary stars, in AU.
5pub const MAXIMUM_AVERAGE_SEPARATION: f64 = 600.0;
6
7/// The minimum orbital eccentricity of "distant" binary stars (unitless).
8pub const MINIMUM_ORBITAL_ECCENTRICITY: f64 = 0.4;
9
10/// The maximum orbital eccentricity of "distant" binary stars (unitless).
11pub const MAXIMUM_ORBITAL_ECCENTRICITY: f64 = 0.7;