pub struct MrtRelaxation {
pub s0: f64,
pub s1: f64,
pub s2: f64,
pub s3: f64,
pub s4: f64,
pub s5: f64,
pub s6: f64,
pub s7: f64,
pub s8: f64,
}Expand description
MRT relaxation rates for D2Q9 (9 rates, one per moment).
Fields§
§s0: f64Relaxation rate for density (s0).
s1: f64Relaxation rate for energy (s1).
s2: f64Relaxation rate for energy squared (s2).
s3: f64Relaxation rate for x-momentum (s3) — usually 1 (skip).
s4: f64Relaxation rate for energy·x (s4).
s5: f64Relaxation rate for y-momentum (s5) — usually 1 (skip).
s6: f64Relaxation rate for energy·y (s6).
s7: f64Relaxation rate for stress-xx (s7 = 1/τ).
s8: f64Relaxation rate for stress-xy (s8 = 1/τ).
Implementations§
Source§impl MrtRelaxation
impl MrtRelaxation
Trait Implementations§
Source§impl Clone for MrtRelaxation
impl Clone for MrtRelaxation
Source§fn clone(&self) -> MrtRelaxation
fn clone(&self) -> MrtRelaxation
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 moreSource§impl Debug for MrtRelaxation
impl Debug for MrtRelaxation
Source§impl Default for MrtRelaxation
impl Default for MrtRelaxation
Source§impl<'de> Deserialize<'de> for MrtRelaxation
impl<'de> Deserialize<'de> for MrtRelaxation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MrtRelaxation
impl RefUnwindSafe for MrtRelaxation
impl Send for MrtRelaxation
impl Sync for MrtRelaxation
impl Unpin for MrtRelaxation
impl UnsafeUnpin for MrtRelaxation
impl UnwindSafe for MrtRelaxation
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.