-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
@YoonK39 Try with this command
It works according to my understand from above. |
Beta Was this translation helpful? Give feedback.
-
! Example command to select areas based on shape
! Example: Select all areas for a cylindrical surface
|
Beta Was this translation helpful? Give feedback.
-
Hi @YoonK39 @B-Naveen-Kumar mapdl.ksel('s', 'kp', '', 1, 6)
mapdl.lslk('s', 1)
mapdl.asll('s', 1)
mapdl.nsla('s', 1)
mapdl.d('all', 'all', 0)
mapdl.cm('area_1', 'area')
mapdl.allsel()
mapdl.eplot(plot_bc=True, plot_bc_legend=True) You can extend this to the other cylindrical hole. Mike |
Beta Was this translation helpful? Give feedback.
Hi @YoonK39 @B-Naveen-Kumar
You don't need to create a key point in order to do this. Select the keypoints and work your way up to areas like so:
The element plot is then:
You can extend this to the other cylindrical hole.
Mike