Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
! Enter Time post processor
/post26
! Read Axial Force FX at node I for Element elno
esol,2,elno,,smisc,1
! Get the maximum Axial Force
*dim,elemfx,array,2000 ! Array definition no more necessary since Ansys v11
vget,elemfx,2
*vscfun,fxmax,max,elemfx
/post26
*dim,elemfx,array,2000
fmaxmax=0
esel,s,enam,,188
elno=elnext(0)
*dowhile,elno
esol,2,elno,,smisc,1
vget,elemfx,2
*vabs,,1
*vscfun,fxmax,max,elemfx
fmaxmax=(fmax>fmaxmax) ! the maximum of FX over all elements
elno=elnext(elno)
*enddo