-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post-processing not plotting results #2288
Comments
It seems the problem is with the masking in mask = self.selected_nodes |
It is not that.... I think there is a miss matching between the For example: >>> self._mapdl.mesh._surf # Used for plotting
PolyData (0x1628e8640)
N Cells: 1272
N Points: 714
N Strips: 0
X Bounds: -2.000e+00, 2.000e+00
Y Bounds: -2.000e+00, 2.000e+00
Z Bounds: 0.000e+00, 2.000e+01
N Arrays: 11
>>> self._mapdl.mesh.grid # the real mesh?
UnstructuredGrid (0x162930b20)
N Cells: 2080
N Points: 7217
X Bounds: -2.000e+00, 2.000e+00
Y Bounds: -2.000e+00, 2.000e+00
Z Bounds: 0.000e+00, 2.000e+01
N Arrays: 10
Something is made here to match both. But probably is not longer valid since the latest PyVista changes. Probably because of changing the way the points/cells are ordered internally. |
the plots are empty:
The text was updated successfully, but these errors were encountered: