pub struct CubicBasisFunction<S, const DM: usize, const DN: usize> { /* private fields */ }Expand description
cubic basis function
Implementations§
Source§impl<S: IsSingleScalar<DM, DN>, const DM: usize, const DN: usize> CubicBasisFunction<S, DM, DN>
impl<S: IsSingleScalar<DM, DN>, const DM: usize, const DN: usize> CubicBasisFunction<S, DM, DN>
Sourcepub fn c() -> S::SingleMatrix<3, 4>
pub fn c() -> S::SingleMatrix<3, 4>
C matrix
Sourcepub fn b(u: S) -> S::SingleVector<3>
pub fn b(u: S) -> S::SingleVector<3>
B(u) matrix
Sourcepub fn du_b(u: S, delta_t: S) -> S::SingleVector<3>
pub fn du_b(u: S, delta_t: S) -> S::SingleVector<3>
derivative of B(u) matrix with respect to u
Sourcepub fn du2_b(u: S, delta_t: S) -> S::SingleVector<3>
pub fn du2_b(u: S, delta_t: S) -> S::SingleVector<3>
second derivative of B(u) matrix with respect to u
Auto Trait Implementations§
impl<S, const DM: usize, const DN: usize> Freeze for CubicBasisFunction<S, DM, DN>
impl<S, const DM: usize, const DN: usize> RefUnwindSafe for CubicBasisFunction<S, DM, DN>where
S: RefUnwindSafe,
impl<S, const DM: usize, const DN: usize> Send for CubicBasisFunction<S, DM, DN>where
S: Send,
impl<S, const DM: usize, const DN: usize> Sync for CubicBasisFunction<S, DM, DN>where
S: Sync,
impl<S, const DM: usize, const DN: usize> Unpin for CubicBasisFunction<S, DM, DN>where
S: Unpin,
impl<S, const DM: usize, const DN: usize> UnwindSafe for CubicBasisFunction<S, DM, DN>where
S: UnwindSafe,
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
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.