Skip to main content

SinteringModel

Struct SinteringModel 

Source
pub struct SinteringModel {
    pub neck_growth_prefactor: f64,
    pub neck_growth_exponent: f64,
    pub activation_energy_neck: f64,
    pub particle_radius: f64,
    pub densification_prefactor: f64,
    pub densification_grain_exponent: f64,
    pub activation_energy_densification: f64,
    pub initial_density: f64,
}
Expand description

Solid-state sintering kinetics for ceramic powders.

Models neck growth and densification as functions of time and temperature.

Fields§

§neck_growth_prefactor: f64

Pre-exponential constant for neck growth A [m^n / (m^n · s)] – dimensionless form

§neck_growth_exponent: f64

Neck growth exponent n (typically 5–7 for volume diffusion)

§activation_energy_neck: f64

Activation energy for neck growth Q [J/mol]

§particle_radius: f64

Initial powder particle radius r [m]

§densification_prefactor: f64

Densification rate constant K [1/s]

§densification_grain_exponent: f64

Grain-size exponent for densification m (typically 3)

§activation_energy_densification: f64

Activation energy for densification Q_d [J/mol]

§initial_density: f64

Initial relative density ρ₀ [-]

Implementations§

Source§

impl SinteringModel

Source

pub fn new( neck_growth_prefactor: f64, neck_growth_exponent: f64, activation_energy_neck: f64, particle_radius: f64, densification_prefactor: f64, densification_grain_exponent: f64, activation_energy_densification: f64, initial_density: f64, ) -> Self

Creates a new SinteringModel with all parameters.

Source

pub fn neck_ratio(&self, time: f64, temp: f64) -> f64

Returns the neck-radius-to-particle-radius ratio x/r at time t [s] and temperature temp [K].

(x/r)^n = A · t · exp(−Q / (R·T))

Source

pub fn densification_rate(&self, r_grain: f64, temp: f64) -> f64

Returns the densification rate dρ/dt [1/s] at grain radius r_grain [m] and temperature temp [K].

dρ/dt = K · (1/r_grain)^m · exp(−Q_d / (R·T))

Source

pub fn density_at_time( &self, time: f64, r_grain: f64, temp: f64, steps: usize, ) -> f64

Approximate relative density ρ at time t [s] via first-order Euler integration with steps steps.

Trait Implementations§

Source§

impl Clone for SinteringModel

Source§

fn clone(&self) -> SinteringModel

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 SinteringModel

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.