Error when creating an element type COMBIN14 #2356
-
Hello, I'm trying to create a mass-spring system attached to a plate with element type COMBIN14 for the spring and MASS21 for the mass. # ...
mapdl.et(2)
mapdl.real(2)
for j in range(1, 10):
mapdl.e(node_number_i[j - 1], node_number_j[j - 1]) But when i run this command i am getting the following error:
Could anyone tell me what is the problem here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @arun-maniam It seems that Assuming nodes I think it could also help if you post the full code. Presumably the error output seems incomplete. |
Beta Was this translation helpful? Give feedback.
-
Yes, element type number 2 is a COMBIN14. As requested, I have attached the a part of the code below. |
Beta Was this translation helpful? Give feedback.
Hi @arun-maniam & @germa89
In the input file you supplied (thank you for that) the type of element is not being switched via the 'type' command before creating the elements. The 'et' without arguments command is being issued instead. For example this is given:
But element type 3 was already defined. No 'type' command was issued, and guessing that the shell element mentioned in the file is type 1, means that MAPDL was expecting more shell elements to be created, not mass elements. So use instead: