Function simply_supported_point_load_reactions
pub fn simply_supported_point_load_reactions(
span: f64,
load: f64,
load_position_from_left: f64,
) -> Option<(f64, f64)>Expand description
Computes support reactions for a simply supported beam with one point load.
Formulae:
R_left = P * (L - a) / LR_right = P * a / L
ยงExamples
use use_statics::simply_supported_point_load_reactions;
assert_eq!(
simply_supported_point_load_reactions(10.0, 100.0, 5.0),
Some((50.0, 50.0))
);