Perform Analysis
# defines two nodes at (0,0) and (1.34,0)
node 1 0 0
node 2 1.34 0
# define an elastic material with the elastic modulus of 132
material Elastic1D 1 132
# define an (E)lastic (B)eam element 1 connecting node 1 and node 2 with A=7.213 and I=6.825 using material 1
element EB21 1 1 2 7.213 6.825 1
# fix all DoFs (E) of node 1
fix 1 E 1
# apply a load of magnitude 23 at DoF 2 of node 2
cload 1 0 23 2 2
# apply another load of magnitude 17 at DoF 1 of node 2
cload 2 0 17 1 2
# create a static step
step static 1
analyze
# print the state of node 2
peek node 2
exitLast updated