Once you have exported the load file, you can perform a stress analysis for Link3 in ANSYS using the command input shown below.RESUME,adamsout,db ! Resume model
/FILNAM,adamsin ! Change jobname
/TITLE,Import loads from ADAMS ! Change title
!
WSPRINGS ! Create weak springs
!
! Enter Solution and solve all load steps
/SOLU
/INPUT,loads,lod ! Read in 5 load steps written by ADAMS
*DO,i,1,5 ! Use a do loop to solve each load step
LSREAD,i ! Read in loadstep
IRLF,1 ! Activate inertia relief
SOLVE ! Solve current load step
*ENDDO
!
/POST1 ! Enter the general postprocesser
! Write deformation and equivalent stress to graphics file
/VIEW,1,1,1,1
/AUTO,1
EPLOT
/TYPE,1,4
/SHOW,
EPLOT
*DO,i,1,5
SET,i
 LNSOL,u,sum
 LNSOL,s,eqv
*ENDDO
/SHOW,term
FINISH
/EXIT,nosave |