beamGLForces
Uses nodal displacements to determine global and local forces at each node
beamGLForces(beamP, beamT, Y, MoI, Length, GMat, BUDL, 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
: Elastic Modulus of materialMoI
: Moment of InertiaLength
: Length of beamGMat
: Global stiffness matrixBUDL
: Column matrix for beam distributed loadBND
: beam nodal displacement, output from function "beamNodeDis"Matrices of global and local forces. (Results in kN) - GForce: Large global force matrix.
data(beamGeo) data(beamDime) data(beamsUDL) data(beamND) data(beamGloMat) Length = beamDime$Length MoI = beamDime$MomentofInertia BUDL = beamsUDL BND = beamND GMat = beamGloMat GLforce = beamGLForces(beamGeo$beamP, beamGeo$beamT, beamGeo$Y, MoI, Length, GMat, BUDL, BND)
Useful links