F. S. Farimani
Mechanical
Following this question, I want to create an axisymmetric shell in ANSYS APDL. For example in Gmsh I would:
For APDL I think it should be like
I have no clue how to define a line, nor how to revolve it around an axis. There is the `L` command (ref) but it doesn't have any numbering/labeling. And there is also an `EEXTRUDE` command (ref) to extrude to
but I can't find a command to revolve a 2D element around an axis of choice.
P.S.1. Direct invitation link to the ANSYS Discord channel
P.S.2. This is a replicate of this Reddit question.
Code:
mes = 0.1; // mesh element size
Point(1) = {0, 0, 0, mes};
Point(2) = {1, 1, 0, mes};
Line(1) = {1, 2};
Extrude {{0, 1, 0}, {0, 0, 0}, 2*Pi} {
Curve{1};
}
For APDL I think it should be like
Code:
/PREP7
Pi = ACOS(-1)
K, 1, 0, 0, 0
K, 2, 1, 1, 0
! define a line
! revolve the line around Y axis
ET, 1, SHELL208 ! the axisymmetric shell element
AMESH, ALL ! mesh all areas
I have no clue how to define a line, nor how to revolve it around an axis. There is the `L` command (ref) but it doesn't have any numbering/labeling. And there is also an `EEXTRUDE` command (ref) to extrude to
Extrudes 2-D plane elements into 3-D solids during a 2-D to 3-D analysis.
but I can't find a command to revolve a 2D element around an axis of choice.
P.S.1. Direct invitation link to the ANSYS Discord channel
P.S.2. This is a replicate of this Reddit question.