Following this question, I want to create an axisymmetric shell in ANSYS APDL. For example in Gmsh I would:
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...