Skip to main content

DelamCriterion

Struct DelamCriterion 

Source
pub struct DelamCriterion {
    pub z_t: f64,
    pub s_xz: f64,
    pub s_yz: f64,
    pub g1c: f64,
    pub g2c: f64,
    pub g3c: f64,
    pub bk_eta: f64,
}
Expand description

Delamination fracture criterion for composite laminates.

Implements:

  1. Quadratic stress criterion (interlaminar stresses).
  2. Linear fracture mechanics criterion (G vs G_c).
  3. Benzeggagh-Kenane (B-K) mixed-mode criterion.

Fields§

§z_t: f64

Interlaminar tensile strength Z_t (Pa).

§s_xz: f64

Interlaminar shear strength S_xz (Pa).

§s_yz: f64

Interlaminar shear strength S_yz (Pa).

§g1c: f64

Mode I critical ERR G_Ic (J/m²).

§g2c: f64

Mode II critical ERR G_IIc (J/m²).

§g3c: f64

Mode III critical ERR G_IIIc (J/m²).

§bk_eta: f64

Benzeggagh-Kenane exponent η (C/E: ≈ 1.75).

Implementations§

Source§

impl DelamCriterion

Source

pub fn new( z_t: f64, s_xz: f64, s_yz: f64, g1c: f64, g2c: f64, g3c: f64, bk_eta: f64, ) -> Self

Constructs a DelamCriterion.

Source

pub fn carbon_epoxy_default() -> Self

Returns default values for carbon/epoxy (T300/914).

Source

pub fn quadratic_stress_index(&self, stress: InterlaminaStress) -> f64

Computes the quadratic interlaminar stress criterion.

(⟨σ_z⟩/Z_t)² + (τ_xz/S_xz)² + (τ_yz/S_yz)² ≥ 1 → delamination

where ⟨·⟩ is the Macaulay bracket (only tensile σ_z contributes).

Source

pub fn stress_delamination(&self, stress: InterlaminaStress) -> bool

Returns true if the quadratic stress criterion is violated.

Source

pub fn linear_err_index(&self, err: EnergyReleaseRate) -> f64

Computes the linear ERR criterion.

G_I/G_Ic + G_II/G_IIc + G_III/G_IIIc ≥ 1 → delamination

Source

pub fn err_delamination(&self, err: EnergyReleaseRate) -> bool

Returns true if the linear ERR criterion is violated.

Source

pub fn bk_criterion(&self, err: EnergyReleaseRate) -> f64

Computes the mixed-mode B-K criterion (Benzeggagh–Kenane 1996).

G_Ic + (G_IIc − G_Ic) * (G_shear/G_total)^η = G_c(mm) Delamination when G_total ≥ G_c(mm).

Source

pub fn bk_delamination(&self, err: EnergyReleaseRate) -> bool

Returns true if B-K criterion is violated.

Source

pub fn stress_intensity_mode1(&self, sigma_z: f64, half_crack: f64) -> f64

Computes the mode I stress intensity factor K_I from σ_z and half-crack a (m).

K_I = σ_z √(π a)

Source

pub fn g1c_from_k1c(k1c: f64, ez: f64) -> f64

Returns the critical G_I from mode I fracture toughness K_Ic using G = K²/E.

G_Ic = K_Ic² / E_z where E_z is the through-thickness modulus (Pa).

Source

pub fn j_integral_proxy(&self, err: EnergyReleaseRate) -> f64

Computes the crack driving force (J-integral proxy) from ERR (J/m²).

Source

pub fn paris_growth_rate( &self, delta_g1: f64, delta_g2: f64, paris_c: f64, paris_m: f64, ) -> f64

Estimates the delamination growth rate da/dN (m/cycle) using a Paris law.

da/dN = C (ΔG_equiv)^m

where ΔG_equiv = ΔG_I + ΔG_II * (G_IIc/G_Ic)^α (approximate).

Trait Implementations§

Source§

impl Clone for DelamCriterion

Source§

fn clone(&self) -> DelamCriterion

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 DelamCriterion

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.