pub struct ElementMatrices {
pub stiffness: Vec<f64>,
pub load: Vec<f64>,
}Expand description
Local element matrices and vectors for a scalar Poisson-like operator.
Fields§
§stiffness: Vec<f64>Element stiffness matrix in row-major order.
load: Vec<f64>Element load vector.
Trait Implementations§
Source§impl Clone for ElementMatrices
impl Clone for ElementMatrices
Source§fn clone(&self) -> ElementMatrices
fn clone(&self) -> ElementMatrices
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 ElementMatrices
impl RefUnwindSafe for ElementMatrices
impl Send for ElementMatrices
impl Sync for ElementMatrices
impl Unpin for ElementMatrices
impl UnsafeUnpin for ElementMatrices
impl UnwindSafe for ElementMatrices
Blanket Implementations§
Source§impl<T> AccumulatePathExt for T
impl<T> AccumulatePathExt for T
fn accumulate_path<O, I>(path: I) -> Owhere
O: Orientation,
I: IntoIterator<Item = O>,
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