added support for tetrahedron element with 4 integration points (Marc ID 127)
This commit is contained in:
parent
3ffd6499b1
commit
963ff0c3ae
|
@ -10,13 +10,6 @@ fileExtensions = { \
|
||||||
'spectral': ['.spectralOut',],
|
'spectral': ['.spectralOut',],
|
||||||
}
|
}
|
||||||
|
|
||||||
releases = { \
|
|
||||||
'2010':['linux64',''],
|
|
||||||
'2008r1':[''],
|
|
||||||
'2007r1':[''],
|
|
||||||
'2005r3':[''],
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# -----------------------------
|
# -----------------------------
|
||||||
class vector: # mimic py_post node object
|
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],
|
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, 3.0, 0.0, 4.0, 4.0, 1.0],
|
||||||
[ 0.0, 0.0, 3.0, 1.0, 4.0, 4.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],
|
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, 42.0, 15.0, 5.0, 14.0, 5.0],
|
||||||
[15.0, 15.0, 42.0, 5.0, 5.0, 14.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 ],
|
57: [ 1, 2, 4, 3, 5, 6, 8, 7 ],
|
||||||
117: [ 1 ],
|
117: [ 1 ],
|
||||||
125: [ 1, 2, 3 ],
|
125: [ 1, 2, 3 ],
|
||||||
|
127: [ 1, 2, 3, 4 ],
|
||||||
136: [ 1, 2, 3, 4, 5, 6 ],
|
136: [ 1, 2, 3, 4, 5, 6 ],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue