You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason mapdl.rlblock and rlblock_num do not work in the current implementation. They won't work in the new iteration #1299 but I leave this issue open to get it fixed in the future.
Steps To Reproduce
Inside MapdlMesh class
...
@propertydefrlblock(self):
"""Real constant data from the RLBLOCK."""ifnotself._rdat:
pass# todo: fix thisreturnself._rdat@propertydefrlblock_num(self):
"""Indices from the real constant data"""returnself._rnum
...
Which Operating System are you using?
No response
Which Python version are you using?
No response
PyMAPDL Report
NA
Installed packages
NA
The text was updated successfully, but these errors were encountered:
Same with mapdl.mesh.node_angles, it seems to not work.
defnode_angles(self):
"""Node angles from the archive file."""ifself._node_anglesisNone:
self._node_angles=np.ascontiguousarray(self._nodes[:, 3:])
returnself._node_angles
It is overwriting to return None in the mesh_grpc file.
Before submitting the issue
Description of the bug
For some reason
mapdl.rlblock
andrlblock_num
do not work in the current implementation. They won't work in the new iteration #1299 but I leave this issue open to get it fixed in the future.Steps To Reproduce
Inside MapdlMesh class
Which Operating System are you using?
No response
Which Python version are you using?
No response
PyMAPDL Report
NA
Installed packages
NA
The text was updated successfully, but these errors were encountered: