pub struct PyLbm3dSimulation { /* private fields */ }Expand description
A 3-D D3Q19 Lattice-Boltzmann simulation.
Supports BGK collision, periodic streaming, and bounce-back walls.
Implementations§
Source§impl PyLbm3dSimulation
impl PyLbm3dSimulation
Sourcepub fn new(config: &PyLbm3dConfig) -> Self
pub fn new(config: &PyLbm3dConfig) -> Self
Create a new 3-D LBM simulation.
Sourcepub fn dimensions(&self) -> (usize, usize, usize)
pub fn dimensions(&self) -> (usize, usize, usize)
Grid dimensions (nx, ny, nz).
Sourcepub fn step_count(&self) -> u64
pub fn step_count(&self) -> u64
Step count.
Sourcepub fn set_boundary(&mut self, x: usize, y: usize, z: usize, btype: LbmBoundary)
pub fn set_boundary(&mut self, x: usize, y: usize, z: usize, btype: LbmBoundary)
Set boundary at cell (x, y, z).
Sourcepub fn get_boundary(&self, x: usize, y: usize, z: usize) -> Option<LbmBoundary>
pub fn get_boundary(&self, x: usize, y: usize, z: usize) -> Option<LbmBoundary>
Get boundary at cell (x, y, z).
Sourcepub fn density_at(&self, x: usize, y: usize, z: usize) -> f64
pub fn density_at(&self, x: usize, y: usize, z: usize) -> f64
Macroscopic density at cell (x, y, z).
Sourcepub fn velocity_at(&self, x: usize, y: usize, z: usize) -> [f64; 3]
pub fn velocity_at(&self, x: usize, y: usize, z: usize) -> [f64; 3]
Macroscopic velocity [ux, uy, uz] at cell (x, y, z).
Sourcepub fn step(&mut self)
pub fn step(&mut self)
Advance the simulation by one D3Q19 step (BGK + streaming + bounce-back).
Sourcepub fn density_field(&self) -> Vec<f64>
pub fn density_field(&self) -> Vec<f64>
Flat density field (length = nx * ny * nz).
Trait Implementations§
Source§impl Clone for PyLbm3dSimulation
impl Clone for PyLbm3dSimulation
Source§fn clone(&self) -> PyLbm3dSimulation
fn clone(&self) -> PyLbm3dSimulation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PyLbm3dSimulation
impl RefUnwindSafe for PyLbm3dSimulation
impl Send for PyLbm3dSimulation
impl Sync for PyLbm3dSimulation
impl Unpin for PyLbm3dSimulation
impl UnsafeUnpin for PyLbm3dSimulation
impl UnwindSafe for PyLbm3dSimulation
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.