struct TgvWorkspace {Show 35 fields
chi: Vec<f32>,
chi_: Vec<f32>,
chi_prev: Vec<f32>,
phi: Vec<f32>,
phi_: Vec<f32>,
wx: Vec<f32>,
wy: Vec<f32>,
wz: Vec<f32>,
wx_: Vec<f32>,
wy_: Vec<f32>,
wz_: Vec<f32>,
eta: Vec<f32>,
px: Vec<f32>,
py: Vec<f32>,
pz: Vec<f32>,
qxx: Vec<f32>,
qxy: Vec<f32>,
qxz: Vec<f32>,
qyy: Vec<f32>,
qyz: Vec<f32>,
qzz: Vec<f32>,
temp1: Vec<f32>,
temp2: Vec<f32>,
gx: Vec<f32>,
gy: Vec<f32>,
gz: Vec<f32>,
sxx: Vec<f32>,
sxy: Vec<f32>,
sxz: Vec<f32>,
syy: Vec<f32>,
syz: Vec<f32>,
szz: Vec<f32>,
divqx: Vec<f32>,
divqy: Vec<f32>,
divqz: Vec<f32>,
}Expand description
Pre-allocated workspace for TGV iteration
Fields§
§chi: Vec<f32>§chi_: Vec<f32>§chi_prev: Vec<f32>§phi: Vec<f32>§phi_: Vec<f32>§wx: Vec<f32>§wy: Vec<f32>§wz: Vec<f32>§wx_: Vec<f32>§wy_: Vec<f32>§wz_: Vec<f32>§eta: Vec<f32>§px: Vec<f32>§py: Vec<f32>§pz: Vec<f32>§qxx: Vec<f32>§qxy: Vec<f32>§qxz: Vec<f32>§qyy: Vec<f32>§qyz: Vec<f32>§qzz: Vec<f32>§temp1: Vec<f32>§temp2: Vec<f32>§gx: Vec<f32>§gy: Vec<f32>§gz: Vec<f32>§sxx: Vec<f32>§sxy: Vec<f32>§sxz: Vec<f32>§syy: Vec<f32>§syz: Vec<f32>§szz: Vec<f32>§divqx: Vec<f32>§divqy: Vec<f32>§divqz: Vec<f32>Implementations§
Auto Trait Implementations§
impl Freeze for TgvWorkspace
impl RefUnwindSafe for TgvWorkspace
impl Send for TgvWorkspace
impl Sync for TgvWorkspace
impl Unpin for TgvWorkspace
impl UnsafeUnpin for TgvWorkspace
impl UnwindSafe for TgvWorkspace
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