From 963ff0c3aee7819011b5de441c4a4e7427872b84 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Mon, 28 Jan 2013 16:25:43 +0000 Subject: [PATCH] added support for tetrahedron element with 4 integration points (Marc ID 127) --- processing/post/postResults.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/processing/post/postResults.py b/processing/post/postResults.py index 6839604a1..77b20d192 100755 --- a/processing/post/postResults.py +++ b/processing/post/postResults.py @@ -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 ], }