pub enum Walls {
None,
Sliding {
low: f64,
high: f64,
},
}Expand description
What the y faces of the box are.
Variants§
None
Periodic in every direction. What Taylor–Green lives in.
Sliding
No-slip walls at y = 0 and y = h, moving at the given speeds along x.
Both zero is a channel; one moving is Couette flow.
Trait Implementations§
impl Copy for Walls
impl StructuralPartialEq for Walls
Auto Trait Implementations§
impl Freeze for Walls
impl RefUnwindSafe for Walls
impl Send for Walls
impl Sync for Walls
impl Unpin for Walls
impl UnsafeUnpin for Walls
impl UnwindSafe for Walls
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