Skip to main content

cantilever_end_point_load_reaction

Function cantilever_end_point_load_reaction 

pub fn cantilever_end_point_load_reaction(
    span: f64,
    load: f64,
) -> Option<CantileverReaction>
Expand description

Computes the fixed-end reaction for a cantilever with a downward load at the free end.

ยงExamples

use use_statics::{CantileverReaction, cantilever_end_point_load_reaction};

assert_eq!(
    cantilever_end_point_load_reaction(10.0, 100.0),
    Some(CantileverReaction {
        vertical_reaction: 100.0,
        fixed_end_moment: 1000.0,
    })
);