Skip to main content

CartilageModel

Struct CartilageModel 

Source
pub struct CartilageModel {
    pub aggregate_modulus: f64,
    pub e_solid: f64,
    pub nu_solid: f64,
    pub permeability: f64,
    pub thickness: f64,
    pub porosity: f64,
    pub fixed_charge_density: f64,
    pub density: f64,
}
Expand description

Biphasic (solid + fluid) model for articular cartilage.

Based on Mow et al. (1980) biphasic theory:

  • Solid phase: linear elastic with Young’s modulus E_s and Poisson’s ratio nu_s.
  • Fluid phase: interstitial water with hydraulic permeability k.
  • Creep and stress relaxation arise from fluid exudation.

Fields§

§aggregate_modulus: f64

Solid-phase aggregate modulus H_A = E_s*(1-nu_s)/((1+nu_s)(1-2nu_s)) (Pa).

§e_solid: f64

Solid-phase Young’s modulus E_s (Pa). Typical: 0.5–2 MPa.

§nu_solid: f64

Solid-phase Poisson’s ratio ν_s.

§permeability: f64

Fluid-phase hydraulic permeability k (m⁴/N·s). Typical: ~1e-15 m⁴/N·s.

§thickness: f64

Cartilage thickness (m).

§porosity: f64

Fluid volume fraction (porosity, 0–1). Typical: 0.65–0.80.

§fixed_charge_density: f64

Fixed charge density (mEq/mL) — for swelling pressure computations.

§density: f64

Tissue density (kg/m³).

Implementations§

Source§

impl CartilageModel

Source

pub fn articular_cartilage() -> Self

Typical human articular cartilage (femoral condyle).

Alias for Self::human_knee_cartilage.

Source

pub fn human_knee_cartilage() -> Self

Typical human articular cartilage (femoral condyle).

Source

pub fn compute_aggregate_modulus(e: f64, nu: f64) -> f64

Compute the aggregate modulus from E and ν.

Source

pub fn creep_time_constant(&self) -> f64

Characteristic time constant for creep τ = h²/(H_A * k) (s).

h is the cartilage thickness (m).

Source

pub fn creep_compliance(&self, t: f64) -> f64

Biphasic creep compliance at time t (Pa⁻¹).

Approximation using the first-term series solution from Mow et al. (1980).

Source

pub fn donnan_swelling_pressure(&self, c_ext: f64) -> f64

Donnan osmotic swelling pressure (Pa) at a given NaCl concentration.

c_ext is the external NaCl concentration (mEq/mL).

Source

pub fn darcy_fluid_flux(&self, dp_dz: f64) -> f64

Darcy velocity (fluid flux, m/s) under an applied pressure gradient dp_dz (Pa/m).

Source

pub fn strain_dependent_permeability(&self, e: f64) -> f64

Strain-dependent permeability (Holmes–Mow model).

e is the dilatational strain (volumetric, negative in compression).

Trait Implementations§

Source§

impl Clone for CartilageModel

Source§

fn clone(&self) -> CartilageModel

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 CartilageModel

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.