pub struct MatrixProperties {
pub modulus: f64,
pub poisson_ratio: f64,
pub yield_stress: f64,
pub fracture_toughness: f64,
}Expand description
Matrix material properties.
Fields§
§modulus: f64Young’s modulus [Pa].
poisson_ratio: f64Poisson’s ratio.
yield_stress: f64Tensile yield stress [Pa].
fracture_toughness: f64Fracture toughness K_Ic [Pa·√m].
Implementations§
Trait Implementations§
Source§impl Clone for MatrixProperties
impl Clone for MatrixProperties
Source§fn clone(&self) -> MatrixProperties
fn clone(&self) -> MatrixProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MatrixProperties
impl RefUnwindSafe for MatrixProperties
impl Send for MatrixProperties
impl Sync for MatrixProperties
impl Unpin for MatrixProperties
impl UnsafeUnpin for MatrixProperties
impl UnwindSafe for MatrixProperties
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