pub struct Fluid {
pub density: Density,
pub kinematic_viscosity: Diffusivity,
}Expand description
A Newtonian fluid.
Fields§
§density: DensityDensity.
kinematic_viscosity: DiffusivityKinematic viscosity, μ/ρ, in m²/s.
The one that appears in the equations above and in every closed form below. Tables quote the dynamic viscosity as often as this one and the two differ by a factor of a thousand for water, which is the sort of error dimensions cannot catch and a name can.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fluid
impl RefUnwindSafe for Fluid
impl Send for Fluid
impl Sync for Fluid
impl Unpin for Fluid
impl UnsafeUnpin for Fluid
impl UnwindSafe for Fluid
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