-
Notifications
You must be signed in to change notification settings - Fork 25
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
principal_nodal_stress #56
Conversation
ansys/mapdl/reader/rst.py
Outdated
@@ -2458,7 +2458,7 @@ def principal_nodal_stress(self, rnum): | |||
|
|||
""" | |||
# get component stress | |||
nodenum, stress = self.nodal_stress(rnum) | |||
nodenum, stress = self.nodal_stress(rnum,nodes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nodenum, stress = self.nodal_stress(rnum,nodes) | |
nodenum, stress = self.nodal_stress(rnum, nodes) |
Nice work! I made two minor whitespace changes, but other than that good job figuring out how to create a branch and submit a PR! |
Soory . What does the sentence "but other than that good job figuring out how to create a branch and submit a PR!" mean ? |
Thank you for this pull request! |
Very happy to that I can do some contributions to code |
try to improve principal_nodal_stress() API to add nodes option.