Skip to main content

MaterialMixture

Struct MaterialMixture 

Source
pub struct MaterialMixture;
Expand description

Material mixing rules for composite and alloy properties.

Implementations§

Source§

impl MaterialMixture

Source

pub fn voigt_modulus(e1: f64, e2: f64, phi: f64) -> f64

Linear (isostrain / Voigt) rule for Young’s modulus.

E_V = φ·E₂ + (1-φ)·E₁

Source

pub fn reuss_modulus(e1: f64, e2: f64, phi: f64) -> f64

Isostress (Reuss) rule for Young’s modulus.

1/E_R = φ/E₂ + (1-φ)/E₁

Source

pub fn hill_modulus(e1: f64, e2: f64, phi: f64) -> f64

Hill average: E_H = (E_V + E_R) / 2.

Source

pub fn voigt_conductivity(k1: f64, k2: f64, phi: f64) -> f64

Voigt (linear) rule for thermal conductivity.

Source

pub fn hashin_shtrikman_upper_bulk( k1: f64, k2: f64, g1: f64, _g2: f64, phi: f64, ) -> f64

Hashin-Shtrikman upper bound for bulk modulus.

§Arguments
  • k1, k2 — bulk moduli of phases 1 and 2 [Pa]
  • g1, g2 — shear moduli of phases 1 and 2 [Pa]
  • phi — volume fraction of phase 2
Source

pub fn hashin_shtrikman_lower_bulk( k1: f64, k2: f64, g1: f64, g2: f64, phi: f64, ) -> f64

Hashin-Shtrikman lower bound for bulk modulus.

Source

pub fn mixture_density(rho1: f64, rho2: f64, phi: f64) -> f64

Mixture density: ρ = φ·ρ₂ + (1-φ)·ρ₁ [kg/m³].

Source

pub fn turner_thermal_expansion( alpha1: f64, k1: f64, alpha2: f64, k2: f64, phi: f64, ) -> f64

Effective thermal expansion coefficient (Turner model):

α_eff = (φ·α₂·K₂ + (1-φ)·α₁·K₁) / (φ·K₂ + (1-φ)·K₁)

where K_i are bulk moduli of the individual phases.

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.