pub struct Lamina {
pub q: [f64; 9],
pub theta: f64,
pub thickness: f64,
}Expand description
A single lamina (ply) in a laminate.
Fields§
§q: [f64; 9]Reduced stiffness matrix Q (3x3 row-major).
theta: f64Ply orientation angle (radians).
thickness: f64Ply thickness (m).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lamina
impl RefUnwindSafe for Lamina
impl Send for Lamina
impl Sync for Lamina
impl Unpin for Lamina
impl UnsafeUnpin for Lamina
impl UnwindSafe for Lamina
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