General Mechanical

General Mechanical

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

workbench APDL command

    • xiao
      Subscriber

      Hi,


      I'm working on a cable structure. In the model cell, my colleague gives me a command, but some of them I do not understand. I searched the internet, but the result does not good for me. 


      The commands are:


      '' ET,MATID,LINK180


      KEYOPT, MATID,3,1


      SECTYPE,MATID,LINK''


      I don't understand what is MATID means (I know it is material id) and how to find the ID in the model.

    • Wenlong
      Ansys Employee

      Hi Xiao,


      Hopefully, this response is not too late. 


      If you insert a command snippet to a part in Mechanical, in the comments of that snippet, you can see that MATID is the "material number used for this body".


       


       


      The first row of command means defines an element type (ET). That element type ID is equal to MATID. What it does is to change your beam element type to "LINK180".  The second row is to change the key option of the link element. It is used to change some element related properties. However, LINK180 does not have keyopt(3), it only has keyopt(2) and keyopt(12) according to Ansys documentation I linked below. The third row defines a section type, which defines a LINK section type, and the type id is MATID. However, to make the model run, you still need another line to define the section area, like this:


      !====================================


      area = 1


      ET, matid, link180


      keyopt,3,1


      sectype, matid, LINK


      secdata,area


      !====================================


      After you run the simulation, you can check the "Solution information"---> "Solver output" whether you have correctly defined the element type. You can also right-click on "Solution", ---> "Open solver file directory", there is a ds.dat file which is the input file. There, you can search matid and find its value. 


       


      For more information about LINK180 element type, please refer to this documentation:https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/corp/v194/ans_elem/Hlp_E_LINK180.html?q=link180


      A detailed description about element type can be found here: https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/corp/v201/en/ans_cmd/Hlp_C_ET.html


      If you have trouble accessing the Ansys help, please refer to this post: /forum/forums/topic/how-to-access-the-ansys-online-help/


       


      Regards,


      Wenlong

    • Alison Byers
      Subscriber

       

      Hello, 

      ”MATID” indeed refers to the material ID. It is a numerical identifier assigned to different materials in a finite element analysis (FEA) model. Each material in the model is assigned a unique MATID, allowing you to specify material properties and behavior for different parts of the structure.

      To find the material IDs in your specific model, you’ll need to check the materials assigned to the elements or components. 

Viewing 2 reply threads
  • The topic ‘workbench APDL command’ is closed to new replies.