Skip to main content

PuckCriterion

Struct PuckCriterion 

Source
pub struct PuckCriterion {
    pub strength: PlyStrength,
    pub p_plus_12: f64,
    pub p_minus_12: f64,
    pub e1: f64,
    pub nu12: f64,
}
Expand description

Puck action-plane failure criterion for unidirectional composites.

Separates fiber fracture (FF) from inter-fiber fracture (IFF) and identifies the fracture plane orientation.

Fields§

§strength: PlyStrength

Ply strength properties.

§p_plus_12: f64

Inclination parameter p₊₁₂ for IFF Mode A (≈ 0.30 for C/E).

§p_minus_12: f64

Inclination parameter p₋₁₂ for IFF Modes B/C (≈ 0.25 for C/E).

§e1: f64

Fiber modulus parallel E₁ (Pa).

§nu12: f64

Fiber Poisson’s ratio ν₁₂.

Implementations§

Source§

impl PuckCriterion

Source

pub fn new( strength: PlyStrength, p_plus_12: f64, p_minus_12: f64, e1: f64, nu12: f64, ) -> Self

Constructs a PuckCriterion with given material parameters.

Source

pub fn carbon_epoxy_default() -> Self

Returns default Puck parameters for carbon/epoxy T300/914.

Source

pub fn ff_exposure(&self, stress: PlaneStress) -> f64

Computes the fiber fracture (FF) exposure f_E,FF.

f_E,FF < 1 → no FF; f_E,FF ≥ 1 → fiber fracture.

Source

pub fn ff_mode(&self, stress: PlaneStress) -> PuckFfMode

Returns the FF mode.

Source

pub fn iff_exposure_mode_a(&self, stress: PlaneStress) -> f64

Computes the IFF exposure on the action plane at ψ = 0° (simplified).

For Mode A (σ_n > 0): f_E,IFF = √[(τ_nt/F_2A)² + (σ_n/F_2t)²] + p₊₁₂ σ_n / F_2A

Uses simplified 2-D (in-plane) version.

Source

pub fn iff_exposure_mode_bc(&self, stress: PlaneStress) -> f64

Computes the IFF exposure for Mode B/C (σ_n ≤ 0).

f_E,IFF = (1/F_2A) √[τ_nt² + (p₋₁₂ σ_n)²] + p₋₁₂ σ_n / F_2A

Source

pub fn iff_exposure(&self, stress: PlaneStress) -> f64

Returns the maximum IFF exposure considering all modes.

Source

pub fn iff_mode(&self, stress: PlaneStress) -> PuckIffMode

Identifies the IFF mode at the given stress state.

Source

pub fn has_failed(&self, stress: PlaneStress) -> bool

Returns true if either FF or IFF criterion is violated.

Source

pub fn fracture_plane_angle(&self, stress: PlaneStress) -> f64

Estimates the fracture plane angle θ_fp (degrees) for IFF Mode C.

θ_fp ≈ arccos(F₂c / (2·F₂c + p₋₁₂·|σ₂|)) (approximate Puck formula)

Trait Implementations§

Source§

impl Clone for PuckCriterion

Source§

fn clone(&self) -> PuckCriterion

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 PuckCriterion

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.