pub struct HeatEquation3D;Expand description
3D Heat (diffusion) equation: u_t = alpha * (u_xx + u_yy + u_zz).
Implementations§
Source§impl HeatEquation3D
impl HeatEquation3D
Sourcepub fn build<S: SparseScalar>(
grid: Grid3D<S>,
alpha: S,
bc: &BoundaryConditions3D<S>,
) -> MOLSystem3D<S>
pub fn build<S: SparseScalar>( grid: Grid3D<S>, alpha: S, bc: &BoundaryConditions3D<S>, ) -> MOLSystem3D<S>
Build a 3D heat equation MOL system.
Auto Trait Implementations§
impl Freeze for HeatEquation3D
impl RefUnwindSafe for HeatEquation3D
impl Send for HeatEquation3D
impl Sync for HeatEquation3D
impl Unpin for HeatEquation3D
impl UnsafeUnpin for HeatEquation3D
impl UnwindSafe for HeatEquation3D
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more