pub struct Ply {
pub angle: f64,
pub thickness: f64,
pub e11: f64,
pub e22: f64,
pub g12: f64,
pub nu12: f64,
}Expand description
A single ply in a composite laminate.
Fields§
§angle: f64Ply angle measured from the laminate reference axis [radians].
thickness: f64Ply thickness [m].
e11: f64Longitudinal modulus E11 [Pa].
e22: f64Transverse modulus E22 [Pa].
g12: f64In-plane shear modulus G12 [Pa].
nu12: f64Major Poisson’s ratio ν12 (dimensionless).
Implementations§
Trait Implementations§
impl StructuralPartialEq for Ply
Auto Trait Implementations§
impl Freeze for Ply
impl RefUnwindSafe for Ply
impl Send for Ply
impl Sync for Ply
impl Unpin for Ply
impl UnsafeUnpin for Ply
impl UnwindSafe for Ply
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more