英文:
Ansys APDL : use of the MVERT_6P function
问题
I am decrypting an old ansys apdl code. This code uses the MVERT_6P function like this: MVERT_6P,A1,A2,A3,A4,A5,A6,'MR0_R1',PAS. I can't find any information about this function in the Ansys help.
A1,2,3,4,5,6 correspond to 3D coordinate points.
PAS=1
This matrix, MR0_R1, is the transition matrix from R0 to R1.
My question is: How is precisely this matrix constructed via the function MVERT_6P? Thank you.
I think this function builds a matrix named MR0_R1 with the following information:
A1,2,3,4,5,6 correspond to 3D coordinate points.
PAS=1
英文:
I am decrypting an old ansys apdl code. This code uses the MVERT_6P function like this: MVERT_6P,A1,A2,A3,A4,A5,A6,'MR0_R1',PAS. I can't find any information about this function in the Ansys help.
A1,2,3,4,5,6 correspond to 3D coordinate points.
PAS=1
This matrix, MR0_R1, is the transition matrix from R0 to R1.
My question is : How is precisely this matrix constructed via the function MVERT_6P ? Thank you.
I think this function builds a matrix named MR0_R1 with the following information:
A1,2,3,4,5,6 correspond to 3D coordinate points.
PAS=1
答案1
得分: 1
MVERT_6P 似乎是由贵组织的某人编写的一个APDL宏,而不是Ansys Inc的APDL命令或宏。您可以检查安装目录\ANSYS Inc\版本号\ansys\apdl\(或类似Linux的路径)以查找 mvert_6p.mac 文件。可能存在一个宏库;请参考Mechanical APDL帮助命令指南中的APDL命令/psearch。如果您以交互模式启动Mechanical APDL,然后发出/psearch,list命令,可能会列出一个路径,该路径可能指向一个宏库。或者可能是环境变量ANSYS_MACROLIB的值,这是另一种指定宏库位置的方式。祝好运。
英文:
MVERT_6P seems to be an APDL macro written by someone at your organization. And not an Ansys Inc APDL command or macro. You can check
install directory\ANSYS Inc\version number\ansys\apdl\
(or similar for Linux) for mvert_6p.mac. It is possible to have a macro library; see the APDL command /psearch in the Mechanical APDL help command guide. If you start Mechanical APDL in interactive mode then issue /psearch,list there may be a path listed that would be to a macro library. Or possibly the value of the environment variable ANSYS_MACROLIB which is an another way of specifying a macro library location. Good luck.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论