I have a pyansys script that creates a triangle area, with a 1D link to it. How do I give the area element one element type and the linking line another? (e.g. SOLID186 and LINK1).
I think an additional, relevant, question is what does the element type number mean?
from ansys.mapdl.core import launch_mapdl
mapdl = launch_mapdl()
mapdl.prep7()
k0 = mapdl.k(1, 0, 0)
k1 = mapdl.k(2, 0, 1)
k2 = mapdl.k(3, 1, 0)
mapdl.k(4, 2, 0)
mapdl.l(3, 4)
mapdl.a(k0, k1, k2)
