added support for tetrahedron element with 4 integration points (Marc ID 127)

This commit is contained in:
Philip Eisenlohr 2013-01-28 16:25:43 +00:00
parent 3ffd6499b1
commit 963ff0c3ae
1 changed files with 5 additions and 7 deletions

View File

@ -10,13 +10,6 @@ fileExtensions = { \
'spectral': ['.spectralOut',],
}
releases = { \
'2010':['linux64',''],
'2008r1':[''],
'2007r1':[''],
'2005r3':[''],
}
# -----------------------------
class vector: # mimic py_post node object
@ -350,6 +343,10 @@ def ipCoords(elemType, nodalCoordinates):
125: [ [ 3.0, 0.0, 0.0, 4.0, 1.0, 4.0],
[ 0.0, 3.0, 0.0, 4.0, 4.0, 1.0],
[ 0.0, 0.0, 3.0, 1.0, 4.0, 4.0],],
127: [ [ 45.0, 17.0, 17.0, 17.0],
[ 17.0, 45.0, 17.0, 17.0],
[ 17.0, 17.0, 45.0, 17.0],
[ 17.0, 17.0, 17.0, 45.0],],
136: [ [42.0, 15.0, 15.0, 14.0, 5.0, 5.0],
[15.0, 42.0, 15.0, 5.0, 14.0, 5.0],
[15.0, 15.0, 42.0, 5.0, 5.0, 14.0],
@ -382,6 +379,7 @@ def ipIDs(elemType):
57: [ 1, 2, 4, 3, 5, 6, 8, 7 ],
117: [ 1 ],
125: [ 1, 2, 3 ],
127: [ 1, 2, 3, 4 ],
136: [ 1, 2, 3, 4, 5, 6 ],
}