So I have a short script, below, that creates 3 areas and I want to mesh the three with elements of size 0.04. However, I need to specify an element type to do so, and I can't find which ones work. Some won't work with amesh at all, and some will say you can't use it with amesh if the areas aren't parallel to the xyz axes. I've been looking for a comprehensive guide to the element types but I can't find anything.
Which element type will work here for me? Does one even exist?
Bonus question: Which element types can I use with amesh?
from ansys.mapdl.core import launch_mapdl
mapdl = launch_mapdl()
mapdl.prep7()
mapdl.k(1, 0, 0, 0)
mapdl.k(2, 0, 1, 0)
mapdl.k(3, 1, 1, 0)
mapdl.k(4, 1, 0, 0)
mapdl.k(5, 0, 0, 1)
mapdl.k(6, 0, 1, 1)
mapdl.k(7, 1, 1, 1)
mapdl.k(8, 1, 0, 1)
a0 = mapdl.a(1, 2, 3, 4)
a1 = mapdl.a(5, 6, 7, 8)
a2 = mapdl.a(3, 7, 8, 4)
mapdl.esize(.04)
mapdl.et(1, "PLANE183")
mapdl.amesh('ALL')
print(mapdl.mesh)
print(mapdl.elist())
mapdl.eplot()