Spring 2007, MET 415 - FEA Applications I

Prof. Dave Johnson, dhj1@psu.edu, Penn State - Erie, The Behrend College

Sample Truss Problem for Exam 3


Model and solve the problem below in ANSYS and answer the questions at the bottom of the page.
Use LINK1 (2D SPAR element).  It has only UX and UY DOF.  No z-motion is considered; no UZ DOF exists for LINK1.

The base is 30 feet long and the center peak is 6 feet above the base

Loads: 

Constraints: 


The mass of the steel assembly:  ________________ lbm.

The maximum deflection: ________________ in.

The deflection components at the peak:

UX = ______ in., UY = ______ in.    [Hint: list displacements at nodes]

The highest axial tensile stress : ________________ psi

In which member does the highest tensile stress occur at ?

The highest axial compressive stress : ________________ psi

In which member does the highest compressive stress occur at ?

Would the weight of the structure change the results significantly if it was included ?


 TOTAL MASS = 0.55794    [0.55794 * Gc = 215.6 lbm]

Displacement at peak (Node 7)
NODE    UX       UY
7     0.00   -0.43923E-01

Adding the weight of the structure to the analysis is significant:

/filnam,rooftruss       ! Define the 'jobname'

/title, Roof Truss Example

/prep7                  ! Enter PREPROCESSING

et,1,link1              ! 2D spar (truss) elements

r,1,1                   ! Larger Cross-sectional area (sq. in.)
r,2,0.05                ! Smaller Cross-sectional area (sq. in.)

mp,ex,1,30e6            ! Young's Modulus (lbf/sq.in.) i.e., Steel
mp,nuxy,1,0.3           ! Poisson's ratio
mp,dens,1,0.283/386.4   ! density/Gc

n,1,0,0        ! Define node locations
n,2,10*12,0
n,3,20*12,0
n,4,30*12,0
n,5,7.5*12,3*12
n,6,22.5*12,3*12
n,7,15*12,6*12

e,1,2         ! Define the elements, thicker cross-section
e,2,3 
e,3,4 
e,1,5 
e,5,7 
e,4,6
e,6,7
REAL,2        ! switch to the thinner cross-section
e,5,2         ! Define the elements, thinner cross-section
e,2,7 
e,7,3 
e,3,6

finish         ! Leave PREPROCESSING

/solu          ! Enter SOLUTION

antype,static  ! Do a static analysis

d,1,ux,0       ! Define constraints (supports) on system
d,1,uy,0
d,4,ux,0
d,4,uy,0

f,5,fy,-500    ! Define the loads (forces)
f,7,fy,-1000
f,6,fy,-500 

solve          ! Solve the problem

finish         ! Leave SOLUTION

save           ! Save the model database on a file.

/post1         ! Enter POSTPROCESSING

etable,faxl,SMISC,1   ! Store the axial force (call it 'faxl') for each LINK1
ETABLE,Stress,LS, 1   ! Store the direct stress in each LINK1

pretab          ! Print the axial force data

/pnum,sval,1    ! add numeric contour values to plots
/plopt,minm,0   ! suppress the MIN/MAX labes
pletab,faxl     ! Plot the model with the 'faxl' data included
pletab,stress   ! Plot the model with the 'stress' data included

prdisp          ! Print the node displacement solution

pldisp,1        ! Plot the deformed shape (overlay undeformed shape).

prrsol          ! Print the reaction force solution

finish          ! Leave POSTPROCESSING