General Mechanical

General Mechanical

Topics related to Mechanical Enterprise, Motion, Additive Print and more.

Extracting parameter value from table heading in APDL

    • user deleted
      Subscriber

      How to get parameter value from an existing table heading? Here is my code:


       


      *dim,test,table,3,2,1,x,y


       


      *do,i,1,3


      *do,j,1,2


      test(i,0)=10*i


      test(0,j)=j


      test(i,j)=100*i+10*j


      *enddo


      *enddo


       


      v1=test(1,1)


      h=test(0,1)


       


      Here I get v1 = 110 (OK) and h = 110 (??)

    • Jayasankar Gopalakrishnapillai
      Subscriber

      Hi How to save scalar Parameters generated in a do loop and store in an array for each of the calculation in do loop

       

Viewing 1 reply thread
  • The topic ‘Extracting parameter value from table heading in APDL’ is closed to new replies.