Skip to main content

SurfaceToVolumeEffects

Struct SurfaceToVolumeEffects 

Source
pub struct SurfaceToVolumeEffects {
    pub k_hp: f64,
    pub sigma_0: f64,
    pub d_breakdown_nm: f64,
    pub surface_energy: f64,
    pub surface_stress: f64,
    pub d_atom_nm: f64,
}
Expand description

Surface-to-volume ratio effects: Hall-Petch breakdown and surface stress.

Fields§

§k_hp: f64

Hall-Petch slope k_HP (MPa·μm^0.5).

§sigma_0: f64

Friction stress σ_0 (MPa).

§d_breakdown_nm: f64

Hall-Petch breakdown grain size d_0 (nm).

§surface_energy: f64

Surface energy γ (J/m²).

§surface_stress: f64

Surface stress τ_s (N/m).

§d_atom_nm: f64

Atom diameter d_atom (nm).

Implementations§

Source§

impl SurfaceToVolumeEffects

Source

pub fn nc_copper() -> Self

Nanocrystalline copper model.

Source

pub fn nc_iron() -> Self

Nanocrystalline iron model.

Source

pub fn yield_strength_mpa(&self, grain_size_nm: f64) -> f64

Hall-Petch yield strength (MPa). Below d_breakdown, returns softening estimate.

Source

pub fn surface_to_volume_ratio(&self, diameter_nm: f64) -> f64

Surface-to-volume ratio for a sphere of diameter d (nm): S/V = 6/d.

Source

pub fn surface_atom_fraction(&self, diameter_nm: f64) -> f64

Fraction of surface atoms in a spherical nanoparticle.

Source

pub fn capillary_pressure_mpa(&self, radius_nm: f64) -> f64

Capillary pressure (MPa) inside a spherical nanoparticle.

Source

pub fn melting_point_depression( &self, t_m_bulk: f64, h_f: f64, rho: f64, d_nm: f64, ) -> f64

Melting point depression ΔTm (K) via Gibbs-Thomson: ΔTm = 4γTm/(ΔHfρd).

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.