Skip to main content

SpaceEnvironmentEffects

Struct SpaceEnvironmentEffects 

Source
pub struct SpaceEnvironmentEffects {
    pub designation: String,
    pub tid_threshold: f64,
    pub d_alpha_per_mrad: f64,
    pub tml_percent: f64,
    pub cvcm_percent: f64,
    pub ao_erosion_yield: f64,
    pub ao_fluence_leo: f64,
    pub alpha_initial: f64,
    pub emissivity: f64,
}
Expand description

Space environment degradation: radiation darkening, outgassing, atomic oxygen.

Fields§

§designation: String

Material designation.

§tid_threshold: f64

Total ionizing dose (TID) threshold for property change (Gy).

§d_alpha_per_mrad: f64

Optical absorptance change per Mrad (1 Mrad = 10 kGy).

§tml_percent: f64

Outgassing total mass loss fraction (TML, %).

§cvcm_percent: f64

Collected volatile condensable material (CVCM, %).

§ao_erosion_yield: f64

Atomic oxygen (AO) erosion yield (cm³/atom).

§ao_fluence_leo: f64

AO fluence at LEO per year (atoms/cm²/year).

§alpha_initial: f64

Material initial absorptance α0.

§emissivity: f64

Material emissivity ε.

Implementations§

Source§

impl SpaceEnvironmentEffects

Source

pub fn kapton_hn() -> Self

Kapton HN polyimide space environment properties.

Source

pub fn solar_black_paint() -> Self

SolarBlack paint (high absorptance thermal control).

Source

pub fn radiation_darkened_absorptance(&self, dose_gy: f64) -> f64

Absorptance after radiation dose dose_gy (Gy).

Source

pub fn ao_erosion_depth_um(&self, t_years: f64, density_g_cm3: f64) -> f64

Atomic oxygen erosion depth (μm) after t_years years in LEO.

Source

pub fn passes_outgassing(&self) -> bool

Check if outgassing meets NASA ASTM E595 requirement (TML < 1%, CVCM < 0.1%).

Source

pub fn alpha_over_epsilon(&self) -> f64

Solar absorptance-to-emissivity ratio α/ε (thermal balance parameter).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.