RBE3s causes an error in the plotting functions? #1669
-
Hi I am using RBE3s to constrain and apply torque to one of my FE models, and I get some strange plots when I do so. First when I plot the mesh using eplot, I get the same plot as I would in ANSYS. But then after I create a single node with a mass element on it and create an RBE3 between that node and my mesh, the eplot function generates a plot that looks like it is now covered in a triangular mesh. As far as I can tell the solver runs normally and I can't find that there have been created any new nodes or elements beyond what I myself created, but when I try to plot stresses and displacements of a section of the mesh, the plot is wrong. Specifically where the mesh is cut, the values are set to zero. And I need to see the stresses over the cross-section, so I am hoping maybe there is some small command or something I am using wrong or missing? I made a small example script which reproduces the problem here:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @MrMechanics For example when plotting the mesh: mapdl.eslv()
mapdl.nsle()
mapdl.eplot(vtk=True, style="surface", show_edges=True, background='w',
show_axes=True, line_width=2, plot_bc=True) Mike |
Beta Was this translation helpful? Give feedback.
Hi @MrMechanics
I think this should be filed as an Issue - I will do that later today. In the meantime unselect the point mass element prior to the element or result plots. Or post process in MAPDL maybe using the mapdl.open_gui() method.
For example when plotting the mesh:
Mike