pub struct CellGeometry {
pub centroid: Vec<f64>,
pub volume: f64,
}Expand description
Cell geometry used by finite-volume residuals.
Fields§
§centroid: Vec<f64>Cell centroid in physical coordinates.
volume: f64Cell measure (length/area/volume).
Trait Implementations§
Source§impl Clone for CellGeometry
impl Clone for CellGeometry
Source§fn clone(&self) -> CellGeometry
fn clone(&self) -> CellGeometry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CellGeometry
impl Debug for CellGeometry
Source§impl PartialEq for CellGeometry
impl PartialEq for CellGeometry
impl StructuralPartialEq for CellGeometry
Auto Trait Implementations§
impl Freeze for CellGeometry
impl RefUnwindSafe for CellGeometry
impl Send for CellGeometry
impl Sync for CellGeometry
impl Unpin for CellGeometry
impl UnsafeUnpin for CellGeometry
impl UnwindSafe for CellGeometry
Blanket Implementations§
Source§impl<T> AccumulatePathExt for T
impl<T> AccumulatePathExt for T
fn accumulate_path<O, I>(path: I) -> Owhere
O: Orientation,
I: IntoIterator<Item = O>,
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