beamStress
Calculates local stress and strain for beam elements
beamStress(beamP, beamT, Y, Length, MoI, RotAng, BND)
beamP
: Matrix (2 x n) of beam coordinates.beamT
: Matrix (2 x n) containing the number of the coordinate point as shown in beamP that connect to form a given beam (Discretization table).Y
: Value of Young's (Elastic) modulusLength
: Length of beamMoI
: Moment of InertiaRotAng
: Angle of rotationBND
: Global nodal displacement matrix, return from function beamNodeDisCompletes FEM by calculating values of stress and strain, produces three (3) [3 x n] matrix. - BendingStress: Bending Stress
data(beamGeo) data(beamGLforce) Length = beamDime$Length MoI = beamDime$MomentofInertia RotAng = beamDime$Angle BND = beamND beamBendStress = beamStress(beamGeo$beamP, beamGeo$beamT, beamGeo$Y, Length, MoI, RotAng, BND)
Useful links