Skip to content

Commit

Permalink
fix Dr, Ds, Dt appearing as transposes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Aug 2, 2024
1 parent 88a5231 commit 5e46b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RefElemData_polynomial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function RefElemData(elem::Hex,
M = build_kronecker_product(M1D, M1D, M1D)

_, Vr, Vs, Vt = basis(elem, N, r, s, t)
Dr, Ds, Dt = (A -> A * invVDM).((Vr, Vs, Vt))
Dr, Ds, Dt = (A -> Matrix(A * invVDM)).((Vr, Vs, Vt))

# low order interpolation nodes
r1, s1, t1 = nodes(elem, 1)
Expand Down

0 comments on commit 5e46b21

Please sign in to comment.