Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations IDS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help needed regarding the numbering of COH3D6 element in Abaqus

Status
Not open for further replies.

zbin001

Student
Mar 9, 2021
1
Dear all,

I am working on create a zero thickness COH3D6 element in Abaqus. Part of the issue is to correct numbering the COH3D6 element. I tried one algorithm below to check the node numbering:

Algorithm_adtxoh.png


And the code I created based on this algorithm is below:

A1_A2 = Coor(A2,2:4) - Coor(A1,2:4);
A1_A3 = Coor(A3,2:4) - Coor(A1,2:4);
Bin_normal = cross(A1_A2, A1_A3);

CACB = El_Cen_B - El_Cen_A;
Bin_dot = dot(Bin_normal, CACB);

if Bin_dot>0
NewCohEl=[A1 A2 A3 B1 B2 B3];
end
if Bin_dot<0
NewCohEl=[A1 A3 A2 B1 B3 B2];
end

However, when I used these created COH3D6 elements to run the simulation, the Abaqus gave me an error below, and this error message applied to 30% of the COH3D6 elements I created.

"The thickness calculated from geometry is negative for element 267 instance instance-1. Check if node
numbering is correct. This message will be printed a maximum of 5 times.

THE THICKNESS CALCULATED FROM GEOMETRY IS EQUAL TO ZERO FOR ELEMENT 267 INSTANCE INSTANCE-1. THIS IS
NOT ALLOWED IN Abaqus. A NON-ZERO THICKNESS VALUE SHOULD BE SPECIFIED IN THIS CASE. THIS MESSAGE WILL
BE PRINTED A MAXIMUM OF 5 TIMES."

If somebody know the reason or could give me some hints regarding on this, it is much appreciated!

Thanks a lot for your time,
Bin
 
Replies continue below

Recommended for you

So you are trying to create this element with the UEL subroutine ? Internal checks in Abaqus may not allow such a definition. The trick which is normally used is to adjust the nodal coordinates of the elements after meshing so that only their geometric thickness is affected.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor