pub struct SlopeStabilityParams {
pub cohesion: f64,
pub friction_angle: f64,
pub soil_density: f64,
pub water_density: f64,
pub depth: f64,
pub saturation: f64,
}Expand description
Parameters for the infinite-slope stability model.
Fields§
§cohesion: f64Soil cohesion (Pa).
friction_angle: f64Internal friction angle (radians).
soil_density: f64Soil bulk density (kg/m³).
water_density: f64Water density (kg/m³).
depth: f64Depth of failure plane (m).
saturation: f64Degree of saturation (0–1).
Trait Implementations§
Source§impl Clone for SlopeStabilityParams
impl Clone for SlopeStabilityParams
Source§fn clone(&self) -> SlopeStabilityParams
fn clone(&self) -> SlopeStabilityParams
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 SlopeStabilityParams
impl Debug for SlopeStabilityParams
Source§impl Default for SlopeStabilityParams
impl Default for SlopeStabilityParams
impl Copy for SlopeStabilityParams
Auto Trait Implementations§
impl Freeze for SlopeStabilityParams
impl RefUnwindSafe for SlopeStabilityParams
impl Send for SlopeStabilityParams
impl Sync for SlopeStabilityParams
impl Unpin for SlopeStabilityParams
impl UnsafeUnpin for SlopeStabilityParams
impl UnwindSafe for SlopeStabilityParams
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.