[][src]Trait civil::structural::beams::BeamProperties

pub trait BeamProperties {
    fn area(&self) -> f32;
fn moment_of_inertia(&self) -> f32;
fn section_modulus(&self) -> f32;
fn radius_of_gyration(&self) -> f32; }

This trait gives us a common interface to the formulas used for determining the properties of beams which vary with a particular beam cross section.

Required methods

fn area(&self) -> f32

fn moment_of_inertia(&self) -> f32

fn section_modulus(&self) -> f32

fn radius_of_gyration(&self) -> f32

Loading content...

Implementors

impl BeamProperties for RectangularBeam[src]

Gere, J. M. and Timnko, S., 1997, Mechanics of Materials 4th Ed., PWS Publishing Co.

impl BeamProperties for TriangularBeam[src]

Loading content...