solution.get_TabularData() causes an error #873
-
Calling
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@anthony-walker This is related to Mechanical Scripting, which is documented here. The API reference can be reached from the ACT API reference guide, linked there under "Additional Resources"[1]. There, it can be seen that the The bottomline is that just because something is reachable with Python it doesn't mean that it is
|
Beta Was this translation helpful? Give feedback.
@anthony-walker This is related to Mechanical Scripting, which is documented here. The API reference can be reached from the ACT API reference guide, linked there under "Additional Resources"[1]. There, it can be seen that the
TabularData
[2] property is not mentioned as an API of theSolution
object. In our terminology, this means that it is not Published.The bottomline is that just because something is reachable with Python it doesn't mean that it is
Published
. When doing python scripting inside of the Mechnical user interface, only thePublished
APIs will appear when using autocomplete. I have to admit that this isn't ideal for the PyMechanical user, since there's no easy way for PyMec…