Skip to main content

ReentryVehicle

Struct ReentryVehicle 

Source
pub struct ReentryVehicle {
    pub nose_radius_m: f64,
    pub entry_velocity_m_s: f64,
    pub freestream_density_kg_m3: f64,
    pub tps_material: String,
    pub tps_thickness_mm: f64,
}
Expand description

Aerodynamic heating model for a blunt-nosed reentry vehicle.

Uses the Fay–Riddell stagnation-point heat flux correlation and a one-dimensional heat conduction model for TPS sizing.

Fields§

§nose_radius_m: f64

Nose radius (m).

§entry_velocity_m_s: f64

Entry velocity (m/s).

§freestream_density_kg_m3: f64

Freestream density (kg/m³).

§tps_material: String

TPS material type label (informational).

§tps_thickness_mm: f64

TPS thickness (mm).

Implementations§

Source§

impl ReentryVehicle

Source

pub fn new( nose_radius_m: f64, entry_velocity_m_s: f64, freestream_density_kg_m3: f64, tps_material: &str, tps_thickness_mm: f64, ) -> Self

Construct a reentry vehicle TPS descriptor.

Source

pub fn stagnation_heat_flux_w_m2(&self) -> f64

Stagnation-point cold-wall heat flux (W/m²) using the Sutton–Graves correlation:

q’’ = k_sg · √(ρ/R_N) · V³

where k_sg = 1.742×10⁻⁴ (SI units; ρ in kg/m³, R_N in m, V in m/s).

Source

pub fn radiative_equilibrium_temperature_k(&self, emissivity: f64) -> f64

Peak surface temperature at the stagnation point (K) estimated from a radiation equilibrium condition:

q’’ = ε · σ · T⁴ → T = (q’’ / (ε·σ))^(1/4)

Source

pub fn integrated_heat_load_mj_m2(&self, entry_duration_s: f64) -> f64

Integrated heat load (MJ/m²) for a given entry duration (s).

Uses the parabolic profile q(t) = q_peak · 4t(t_entry-t)/t_entry².

Source

pub fn required_tps_thickness_mm( &self, tps_thermal_diffusivity_m2_s: f64, entry_duration_s: f64, ) -> f64

Required TPS thickness (mm) to limit bondline temperature below max_bondline_c (°C), using a 1-D semi-infinite slab approximation.

δ ≈ 2 · √(α · t_entry) · erfinv(1 − ΔT_allowed / ΔT_surface) (simplified as δ ≈ 1.5 · √(α · t_entry) for ΔT_allowed = 50 °C).

Source

pub fn ballistic_coefficient_kg_m2(&self, mass_kg: f64, cd: f64) -> f64

Vehicle ballistic coefficient (kg/m²): β = m / (C_D · A_ref).

Higher β → deeper penetration before deceleration.

Trait Implementations§

Source§

impl Clone for ReentryVehicle

Source§

fn clone(&self) -> ReentryVehicle

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ReentryVehicle

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.