pub struct SpectralElementMethod {
pub num_elements: usize,
pub poly_degree: usize,
}Expand description
Spectral element method (SEM) on a 1-D mesh.
Fields§
§num_elements: usizeNumber of non-overlapping elements.
poly_degree: usizePolynomial degree within each element.
Implementations§
Source§impl SpectralElementMethod
impl SpectralElementMethod
Auto Trait Implementations§
impl Freeze for SpectralElementMethod
impl RefUnwindSafe for SpectralElementMethod
impl Send for SpectralElementMethod
impl Sync for SpectralElementMethod
impl Unpin for SpectralElementMethod
impl UnsafeUnpin for SpectralElementMethod
impl UnwindSafe for SpectralElementMethod
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