Skip to main content

stress_from_youngs_modulus

Function stress_from_youngs_modulus 

Source
pub fn stress_from_youngs_modulus(
    youngs_modulus: f64,
    strain: f64,
) -> Option<f64>
Expand description

Computes stress from Young’s modulus and axial strain.

Formula: σ = Eε.

Returns None when youngs_modulus is negative or when any input or result is not finite.