Skip to content

Commit

Permalink
FEM: frd mesh import, penta15 node order
Browse files Browse the repository at this point in the history
  • Loading branch information
fandaL authored and wwmayer committed Sep 6, 2016
1 parent 6313528 commit dda762d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Mod/Fem/ccxFrdReader.py
Expand Up @@ -183,8 +183,10 @@ def readResult(frd_input):
nd14 = int(line[33:43])
nd15 = int(line[43:53])
input_continues = False
elements_penta15[elem] = (nd5, nd6, nd4, nd2, nd3, nd1, nd11, nd12, nd10, nd8,
nd9, nd7, nd14, nd15, nd13)
#elements_penta15[elem] = (nd5, nd6, nd4, nd2, nd3, nd1, nd11, nd12, nd10, nd8,
# nd9, nd7, nd14, nd15, nd13) # as for inp - do not work
elements_penta15[elem] = (nd5, nd6, nd4, nd2, nd3, nd1, nd14, nd15, nd13, nd8,
nd9, nd7, nd11, nd12, nd10)
elif elemType == 6:
# C3D10 Calculix --> tetra10 FreeCAD
# N2, N1, N3, N4, N5, N7, N6, N9, N8, N10
Expand Down

0 comments on commit dda762d

Please sign in to comment.