CADlalala
Aerospace
- Apr 3, 2014
- 43
Hi everyone,
I have started using Abaqus and Python today so the question might sounds a bit simple for some of you...
I am trying to extract the x y z node coordinates of every face in my tet mesh in order to print them out to a txt file.
So far I have managed to get the Node's coordinates of a particular face but I do not know how to extrapolate this logic to every face in order to get the txt file type I am looking for. This is what I have done to get the nodes coordinates:
p=mdb.models['Model-1'].parts.values();
part=p[0];
print len(part.faces);
f = part.faces[31];
print f.getElementFaces();
f.getElementFaces()[0].getNodes();
print f.getElementFaces()[0].getNodes()[0].coordinates;
My aim is to get a txt file including the "N" faces in the following fashion:
#FACE 0
#all the coordinates in FACE 0
956.676 154.61 -283.01, #point 0
953.673 154.61 -283.005, #point 1
956.666 68.6142 -315.087, #point 2
953.677 68.6222 -315.095, #point 3
956.669 -22.9358 -321.654, #point 4
953.67 -22.9378 -321.66, #point 5
#all the triangles in FACE 0
0 1 2, #triangle 1 (connects points 0 1 2)
2 1 3, #triangle 2 (connects points 2 1 3)
4 3 5, #triangle 3 (connects points 4 3 5)
#FACE 1
.
.
.
#FACE N
I would be grateful if you could give me a hand scripting this.
Many thanks!
I have started using Abaqus and Python today so the question might sounds a bit simple for some of you...
I am trying to extract the x y z node coordinates of every face in my tet mesh in order to print them out to a txt file.
So far I have managed to get the Node's coordinates of a particular face but I do not know how to extrapolate this logic to every face in order to get the txt file type I am looking for. This is what I have done to get the nodes coordinates:
p=mdb.models['Model-1'].parts.values();
part=p[0];
print len(part.faces);
f = part.faces[31];
print f.getElementFaces();
f.getElementFaces()[0].getNodes();
print f.getElementFaces()[0].getNodes()[0].coordinates;
My aim is to get a txt file including the "N" faces in the following fashion:
#FACE 0
#all the coordinates in FACE 0
956.676 154.61 -283.01, #point 0
953.673 154.61 -283.005, #point 1
956.666 68.6142 -315.087, #point 2
953.677 68.6222 -315.095, #point 3
956.669 -22.9358 -321.654, #point 4
953.67 -22.9378 -321.66, #point 5
#all the triangles in FACE 0
0 1 2, #triangle 1 (connects points 0 1 2)
2 1 3, #triangle 2 (connects points 2 1 3)
4 3 5, #triangle 3 (connects points 4 3 5)
#FACE 1
.
.
.
#FACE N
I would be grateful if you could give me a hand scripting this.
Many thanks!