Skip to content

Commit

Permalink
fix SBP Tri plot interp matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Jun 6, 2021
1 parent b1c654c commit 6fba0a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RefElemData_SBP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function RefElemData(elementType::Tri, approxType::SBP, N; kwargs...)
rd = @set rd.V1 = vandermonde(elementType,N,rd.rst...)/rd.VDM * rd.V1

# Vp operator = projects SBP nodal vector onto degree N polynomial, then interpolate
rd = @set rd.Vp = vandermonde(elementType,N,rd.rst...)/rd.VDM * rd.Pq
rd = @set rd.Vp = vandermonde(elementType,N,rd.rstp...)/rd.VDM * rd.Pq

return _convert_RefElemData_fields_to_SBP(rd)
end
Expand Down

0 comments on commit 6fba0a2

Please sign in to comment.