Skip to main content

ZrO2Transformation

Struct ZrO2Transformation 

Source
pub struct ZrO2Transformation {
    pub transformation_strain: f64,
    pub volume_fraction: f64,
    pub shear_modulus: f64,
    pub base_toughness: f64,
    pub zone_height: f64,
}
Expand description

Tetragonal-to-monoclinic transformation toughening in ZrO₂ ceramics.

Estimates the transformation zone size and toughening increment ΔK_IC.

Fields§

§transformation_strain: f64

Transformation dilatational strain ε_T [-] (~0.04 for t→m)

§volume_fraction: f64

Volume fraction of transformable particles f_v [-]

§shear_modulus: f64

Shear modulus G [Pa]

§base_toughness: f64

Intrinsic fracture toughness K_IC0 [Pa·√m]

§zone_height: f64

Transformation zone half-height h [m] (determined externally or fitted)

Implementations§

Source§

impl ZrO2Transformation

Source

pub fn new( transformation_strain: f64, volume_fraction: f64, shear_modulus: f64, base_toughness: f64, zone_height: f64, ) -> Self

Creates a new ZrO2Transformation model.

Source

pub fn toughening_increment(&self) -> f64

Toughening increment ΔK_IC [Pa·√m] due to transformation.

ΔK_IC ≈ 0.22 · E_eff · ε_T · f_v · √h (Budiansky-Hutchinson-Lambropoulos) where E_eff = 2·G (for plane strain approximation).

Source

pub fn effective_toughness(&self) -> f64

Total effective fracture toughness K_IC_eff [Pa·√m].

Source

pub fn zone_size_estimate(&self) -> f64

Approximate transformation zone size (Irwin-type estimate) [m].

h ≈ (1/3π) · (K_IC / σ_t)² where σ_t is the transformation stress: σ_t = G · ε_T / (1 − f_v).

Trait Implementations§

Source§

impl Clone for ZrO2Transformation

Source§

fn clone(&self) -> ZrO2Transformation

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 ZrO2Transformation

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.