pub struct HpAdaptiveSpectral {
pub num_elements: usize,
pub degrees: Vec<usize>,
pub breakpoints: Vec<f64>,
pub local_solutions: Vec<Vec<f64>>,
}Expand description
hp-adaptive spectral element method data.
Fields§
§num_elements: usizeNumber of elements.
degrees: Vec<usize>Polynomial degree for each element.
breakpoints: Vec<f64>Element endpoints.
local_solutions: Vec<Vec<f64>>Local solutions: one coefficient vector per element.
Implementations§
Auto Trait Implementations§
impl Freeze for HpAdaptiveSpectral
impl RefUnwindSafe for HpAdaptiveSpectral
impl Send for HpAdaptiveSpectral
impl Sync for HpAdaptiveSpectral
impl Unpin for HpAdaptiveSpectral
impl UnsafeUnpin for HpAdaptiveSpectral
impl UnwindSafe for HpAdaptiveSpectral
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