-
Notifications
You must be signed in to change notification settings - Fork 25
updated the documentation, waiting for the pymadpl issue to be resolved. #226
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
Conversation
myResult = np.ones((len(myNodes), 3)) | ||
myResult[:, 0] = myNodes | ||
myResult[:, 1] = vm_stress | ||
myResult[:, 2] = np.interp(myResult[:, 1], xPoints, yValues) |
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.
Please follow PEP8 when naming variables. Should be using pascal case here.
from ansys.mapdl.core import launch_mapdl | ||
from ansys.dpf import core as dpf | ||
import numpy as np | ||
myDir = r'c:\temp' |
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.
It's best not to specify a directory. By default, PyMAPDL creates a temporary directory that's OS independent. It can be accessed simply by:
mapdl.directory
Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: Alex Kaszynski <[email protected]>
Hi @mcMunich, I finally got back to this example. Sorry it took so long. |
Closed by #591 |
No description provided.