Skip to main content

SeabedSedimentModel

Struct SeabedSedimentModel 

Source
pub struct SeabedSedimentModel {
    pub su0: f64,
    pub k_su: f64,
    pub compression_index_cc: f64,
    pub recompression_index_cr: f64,
    pub cv: f64,
    pub e0: f64,
    pub gamma_sat: f64,
}
Expand description

Seabed sediment model for offshore geotechnical applications.

Includes undrained shear strength profiles and consolidation characteristics.

Fields§

§su0: f64

Undrained shear strength at mudline (z=0) [Pa].

§k_su: f64

Strength gradient with depth [Pa/m].

§compression_index_cc: f64

Compression index Cc [-].

§recompression_index_cr: f64

Recompression index Cr [-].

§cv: f64

Coefficient of consolidation Cv [m^2/s].

§e0: f64

Initial void ratio e0 [-].

§gamma_sat: f64

Saturated unit weight γ_sat [kN/m^3].

Implementations§

Source§

impl SeabedSedimentModel

Source

pub fn new( su0: f64, k_su: f64, compression_index_cc: f64, recompression_index_cr: f64, cv: f64, e0: f64, gamma_sat: f64, ) -> Self

Create a new seabed sediment model.

Source

pub fn gulf_of_mexico_clay() -> Self

Typical soft marine clay (Gulf of Mexico).

Source

pub fn undrained_shear_strength(&self, depth_m: f64) -> f64

Undrained shear strength Su at depth z [m] [Pa].

Su(z) = su0 + k_su * z

Source

pub fn settlement_primary( &self, sigma_v0: f64, sigma_vf: f64, h: f64, e0: f64, ) -> f64

Primary consolidation settlement ΔS [m].

ΔS = (Cc / (1 + e0)) * H * log10(σ_vf / σ_v0)

Source

pub fn time_to_consolidation(&self, cv: f64, h_dr: f64, u: f64) -> f64

Time to reach a given degree of consolidation U (Terzaghi 1-D).

T_v = Cv * t / H_dr^2, solved for t: t = T_v * H_dr^2 / Cv

Source

pub fn ocr(&self, sigma_v: f64, sigma_p: f64) -> f64

Overconsolidation ratio OCR at depth z given preconsolidation pressure.

Source

pub fn pore_pressure_ratio(&self, u_excess: f64, sigma_v_eff: f64) -> f64

Pore pressure ratio ru = u / σ’v.

Trait Implementations§

Source§

impl Clone for SeabedSedimentModel

Source§

fn clone(&self) -> SeabedSedimentModel

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SeabedSedimentModel

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.