Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
Fix 2nd deriv ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
rckirby committed Jun 13, 2017
1 parent 4ebf8b7 commit e82d0dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FIAT/argyris.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, ref_el, degree):
nodes.append(pd(ref_el, verts[v], alpha))

# second derivatives
alphas = [[2, 0], [0, 2], [1, 1]]
alphas = [[2, 0], [1, 1], [0, 2]]
for alpha in alphas:
nodes.append(pd(ref_el, verts[v], alpha))

Expand Down Expand Up @@ -118,7 +118,7 @@ def __init__(self, ref_el):
nodes.append(pd(ref_el, verts[v], alpha))

# second derivatives
alphas = [[2, 0], [0, 2], [1, 1]]
alphas = [[2, 0], [1, 1,], [0, 2]]
for alpha in alphas:
nodes.append(pd(ref_el, verts[v], alpha))

Expand Down

0 comments on commit e82d0dd

Please sign in to comment.