You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I'm bad at searching or misunderstood something, but I can't seem to find a function to generate the element stiffness matrix for a beam. Is this functionality in the package? If not, do you have a reference for which Timoshenko element formulation you are using?
The text was updated successfully, but these errors were encountered:
IIUC, the approach in the docs only works for meshes? I couldn't figure out how to do this for beams.
What I want to achieve is:
using GXBeam
# create points
nelem =2
L =10
x =range(0, L, length=nelem +1)
y =zero(x)
z =zero(x)
iso =Material(100.0, 100.0, 100.0, 41.667, 41.667, 41.667, 0.2, 0.2, 0.2, 1000.0)
nodes = [Node(x[i], y[i], z[i]) for i =1:length(x)]
elements = [Element(nodes[i], nodes[i+1]) for i =1:length(x)-1]
S, sc, tc =compliance_matrix(nodes, elements)
M, mc =mass_matrix(nodes, elements)
Hi!
Maybe I'm bad at searching or misunderstood something, but I can't seem to find a function to generate the element stiffness matrix for a beam. Is this functionality in the package? If not, do you have a reference for which Timoshenko element formulation you are using?
The text was updated successfully, but these errors were encountered: