General Mechanical

General Mechanical

Get command not storing the nodal values.

    • MEME Engineer
      Subscriber

      Hello,

      I wrote this apdl program (it's just a part of the complete program) to extract results at every node for pricnical stresses and equivalent stress.

      *get,n_max,node,,num,max
       
      /post1
       
      /nopr
       
      *do,n_num,1,n_max,1
       
      *get,s_1,node,n_num,s,1
      *get,s_2,node,n_num,s,2
      *get,s_3,node,n_num,s,3
      *get,s_eqv,node,n_num,s,eqv
      E_L=0.2743*exp(-0.5754*(((s_1+s_2+s_3)/s_eqv)-1))
       
      *enddo
      /gopr

       

      But i am getting the error mentioned below for every nodes. 

      Requested data is not stored for node 271.                              
        Line= *GET, s_3, node, nnum, s, 3                                      
        The *GET command is ignored.

       

      I really don't know where i am going wrong with the commands. If anyone can help me with this?

    • Aniket
      Ansys Employee

      try using outres command to store required results and see if that helps:

      https://ansyshelp.ansys.com/account/Secured?returnurl=/Views/Secured/corp/v231/en/ans_cmd/Hlp_C_OUTRES.html

      -Aniket

      How to access Ansys help links

      Guidelines for Posting on Ansys Learning Forum

Viewing 1 reply thread
  • You must be logged in to reply to this topic.