-
Notifications
You must be signed in to change notification settings - Fork 120
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
Show deformation (without other nodal information) #348
Comments
Sounds like we need to just add another method that simply plots deformation rather than including the scalars as well. I can implement that in the next release, which will probably have to happen over the weekend. BTW, thanks for the well wishes! It's been quite a transition, and I hope to keep supporting all the early adopters with the new modules and APIs. |
Hi @natter1 @akaszynski @germa89 Sorry about coming to this so late. See the APDL command UPCOORD. You can add the displacements stored in the MAPDL database (in memory, so need to use SET command to read in some result) with UPCOORD, plot the elements, then back the displacements back out with a negative scale factor. So: mapdl.post1()
mapdl.set('last')
mapdl.upcoord(1)
mapdl.eplot()
mapdl.upcoord(-1) The eplot will be the deformed elements plotted. We could probably do something similar using a grey color map and a single contour value when plotting displacements. Mike |
Related: #3021 (comment)
|
I wanted to plot deformation, but the only way I found to do this was using plot_nodal_solution(). But this allways uses a colorcoded overlay to show additional information (e.g. UX deformation). Is there a way to simply plot the deformation (maybe only color elementtypes)?
The text was updated successfully, but these errors were encountered: