University of Utah: Beam Elements
University of Utah: Beam Elements
ME EN 6510/5510
Introduction to Finite Elements
Fall 2005
Beam Elements
snip (from ANSYS Manual)
BEAM3 is a uniaxial element with tension, compression, and bending capabilities. The element has three degrees of freedom at each
node: translations in the nodal x and y directions and rotation about the nodal z-axis. See Section 14.3 of the ANSYS Theory Reference
for more details about this element. Other 2-D beam elements are the plastic beam (BEAM23) and the tapered unsymmetric beam
(BEAM54).
4.3.1
end of snip
Beam Elements - A simple cantilever beam problem with 2 different materials and section properties will be analyzed, and an
alternative way to generate nodes and elements will be used (keypoints and lines).
100
Section 1
Section 2
(15,0)
(5,0)
(0,0)
Area=0.5
Area=0.75 Moment of
Moment of Inertia=0.0417
Inertia=0.0625 Height=1.0
Y Height=2.0 E = 30e6
E =10e6
Analysis: A 1D analysis of the above problem with line elements will be performed.
This lab shows both the menu paths for using the ANSYS graphical user interface (GUI) as well as the code for direct input (see
ALTERNATIVE TO GUI METHOD).
GUI METHOD
L,1,2,5 creates a line between keypoints 1 and 2 having 5 divisions (which will mean 5 elements).
L,2,3,10 creates a line between keypoints 2 and 3 having 10 divisions (which will mean 10 elements).
Mesh Line 2
PreprocessoràMeshingàLines àPicked Linesà(window asking you to select line) pick line 2àOK.
(Hint: you can use the ListàElementsàAttributes and Real Constants command in the menu bar to verify that you have 15 total beam
elements--5 with Material No. 1 and Real Constant No. 1, and 10 with Material No. 2 and Real Constant No. 2.)
List Nodal Displacements: General PostprocàList Resultsà Nodal Solutionà(window) highlight DOF solution and Uy; select OK.
(This can also be done by simply typing prdisp in the command input window.) You should get the following:
NODE Ux Uy ROTZ
1 0.0 0.0 0.0
2 0.0 -0.26667E-01 -0.10000E-01
3 0.0 -0.11733E-02 -0.23200E-02
4 0.0 -0.45867E-02 -0.44800E-02
5 0.0 -0.10080E-01 -0.64800E-02
6 0.0 -0.17493E-01 -0.83200E-02
7 0.0 -0.15331 -0.13997E-01
8 0.0 -0.37053E-01 -0.10759E-01
9 0.0 -0.48159E-01 -0.11439E-01
10 0.0 -0.59904E-01 -0.12038E-01
11 0.0 -0.72209E-01 -0.12558E-01
12 0.0 -0.84993E-01 -0.12998E-01
13 0.0 -0.98177E-01 -0.13357E-01
14 0.0 -0.11168 -0.13637E-01
15 0.0 -0.12542 -0.13837E-01
16 0.0 -0.13933 -0.13957E-01
Plot and Print Tensile and Compressive Stresses at the Top and Bottom of Beam: This needs to be done using the command input
window. Type the following in the window:
etable,sigtop,ls,2 ! enter the element stresses on the top into a user defined table ‘sigtop’*
etable,sigbot,ls,3 ! enter the element stresses on the bottom into a user defined table ‘sigbot’*
pletab,sigtop ! plots the stress values in the ‘sigtop’ table
pletab,sigbot ! plots the stress values in the ‘sigbot’ table
pretab,sigtop ! prints the stress values in the ‘sigtop’ table
pretab,sigbot ! prints the stress values in the ‘sigbot’ table
*Q: How do we know which end of the beam element(s) are being used to build the stress tables sigtop and sigbot when we use
the etable command? Although not terribly important for this lab, you may have a situation where it is not intuitive which side of the
beam element is experiencing the maximum moment, and therefore the maximum stress. You need to understand how to access
element output at both nodes. Open the ANSYS Help menu and type “beam3” in the index search. This will pull up literature
describing everything you want to know about the beam3 element, including how it calculates stress, what element output is
accessible in the etable command, etc. Hopefully what you’ll realize is that the ls,2 and ls,3 commands give the top stress and bottom
stress at node i (the first node defining the element). If you needed these stresses at the other side of the beam element (node j), then
you would have to use
etable,sigtopnodej,ls,7
etable,sigbotnodej,ls,8
pretab,sigtopnodej !or pletab,sigtopnodej if you want to show contour plot.
pretab,sigtop !or pletab,sigbotnodej if you want to show contour plot.
Other Questions: What other output can you get from the element? Moments? Torques? Maximum Combined Stress? If
the ANSYS software assumes the beam is rectangular, how does this affect stress output if you are trying to model circular
beams like tubes?
Once ANSYS is up and running, move your cursor within the direct command input window and type the following.
The following commands are then used to examine your model to see that it is correct and what you want.
nlist ! gives a list of the nodes. Note the numbering and locations.
elist ! lists the elements
eplot ! plots the elements
If the model is not correct, go to the editor and fix the input file, and re-enter it as above. Remember to clear out the old one
before attempting to read in the new one. If correct, proceed as follows.