Skip to main content

CmcMaterial

Struct CmcMaterial 

Source
pub struct CmcMaterial {
    pub designation: String,
    pub matrix_cracking_stress: f64,
    pub uts: f64,
    pub modulus: f64,
    pub thermal_conductivity: f64,
    pub cte: f64,
    pub max_temperature: f64,
    pub k_ic: f64,
}
Expand description

Ceramic matrix composite (SiC/SiC or C/SiC) material properties.

Fields§

§designation: String

Material designation (e.g., “SiC/SiC”).

§matrix_cracking_stress: f64

Matrix-cracking stress σ_mc (MPa).

§uts: f64

Ultimate tensile strength UTS (MPa).

§modulus: f64

Elastic modulus E (GPa).

§thermal_conductivity: f64

Thermal conductivity k (W/m·K).

§cte: f64

Coefficient of thermal expansion CTE (1/K).

§max_temperature: f64

Maximum use temperature (°C).

§k_ic: f64

Fracture toughness KIc (MPa·√m).

Implementations§

Source§

impl CmcMaterial

Source

pub fn sic_sic() -> Self

SiC/SiC composite properties at room temperature.

Source

pub fn c_sic() -> Self

C/SiC composite properties at room temperature.

Source

pub fn critical_crack_length(&self, sigma: f64, y: f64) -> f64

Critical crack length for brittle fracture: ac = (KIc / (Y * σ))² / π.

Source

pub fn thermal_shock_resistance(&self, nu: f64) -> f64

Thermal shock resistance parameter: R = σ * (1 - ν) / (E * CTE).

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.