Skip to content

Error when creating an element type COMBIN14 #2356

Answered by mikerife
arun-maniam asked this question in Q&A
Discussion options

You must be logged in to vote

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:

mapdl.et(3)  
mapdl.real(3)  


for j in range(1, 26):
    if vmask_res[j - 1] == 1:
        mapdl.prep7()  # Enter PREP7 environment
        mapdl.e(Res_knoten_mass[j - 1])

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:

mapdl.type(3)  
mapdl.r…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@mikerife
Comment options

Answer selected by germa89
@arun-maniam
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants