Skip to main content

OrthotropicPly

Struct OrthotropicPly 

Source
pub struct OrthotropicPly {
    pub e11: f64,
    pub e22: f64,
    pub g12: f64,
    pub nu12: f64,
    pub thickness: f64,
}
Expand description

A single orthotropic ply (unidirectional lamina) in plane stress.

Fields§

§e11: f64

Longitudinal Young’s modulus E_11 (fiber direction).

§e22: f64

Transverse Young’s modulus E_22.

§g12: f64

In-plane shear modulus G_12.

§nu12: f64

Major Poisson ratio ν_12.

§thickness: f64

Ply thickness.

Implementations§

Source§

impl OrthotropicPly

Source

pub fn new(e11: f64, e22: f64, g12: f64, nu12: f64, thickness: f64) -> Self

Create a new orthotropic ply.

Source

pub fn nu21(&self) -> f64

Minor Poisson ratio ν_21 = ν_12 · E_22 / E_11.

Source

pub fn q_matrix(&self) -> [[f64; 3]; 3]

Reduced stiffness matrix [Q] in the principal material directions (plane stress).

Q11 = E11 / (1 - nu12*nu21)
Q22 = E22 / (1 - nu12*nu21)
Q12 = nu12*E22 / (1 - nu12*nu21)
Q66 = G12
Source

pub fn q_bar_matrix(&self, angle_deg: f64) -> [[f64; 3]; 3]

Transformed (off-axis) reduced stiffness matrix [Q_bar] for a ply at angle_deg.

Trait Implementations§

Source§

impl Clone for OrthotropicPly

Source§

fn clone(&self) -> OrthotropicPly

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 OrthotropicPly

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for OrthotropicPly

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.