honor
Guest
Hello everyone, first of all I apologize early if I am writing this discussion in a wrong place of the forum but I am new and I still have to understand well how it is structured the same, I explain my problem. I have to make an optimization of the weight of a mechanical structure formed by reticolar beams with ansys apdl software. the type of element I chose is the link180 and I have constraints on the maximum shift of knots that should not be more than 10 cm and on the admissible voltage that must be less than 250 mpa. I wrote my program in batch mode and when loading on ansys gives me error on a commando. to be more accurate gives me the error in the list piece:
*set,strlime,250e6
*set,strmax,0
etable,normal,ls,2
esell,all
*do,iel,1,336,1
*get,streal,elem,iel,etable,normal
streal=abs (streal)
*if,streal,gt,strmax,then
strmax=streal
*endif
*end
more precisely it gives me error on the *get command, which told me not to be suitable for that kind of operation I want to do. Does anyone know which other command I can use, to take the planned efforts with the etable commando and save them in a variable so that you can compare it with the permissible stress? Thanks for the answer.
*set,strlime,250e6
*set,strmax,0
etable,normal,ls,2
esell,all
*do,iel,1,336,1
*get,streal,elem,iel,etable,normal
streal=abs (streal)
*if,streal,gt,strmax,then
strmax=streal
*endif
*end
more precisely it gives me error on the *get command, which told me not to be suitable for that kind of operation I want to do. Does anyone know which other command I can use, to take the planned efforts with the etable commando and save them in a variable so that you can compare it with the permissible stress? Thanks for the answer.