Skip to content

Commit

Permalink
fixed dimension of nodevals output
Browse files Browse the repository at this point in the history
  • Loading branch information
chmerdon committed Nov 4, 2024
1 parent 711c691 commit 463acd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpolations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ function nodevalues(source::FEVectorBlock{T, Tv, Ti, FEType, APT}, operator::Typ
if abs
nvals = 1
else
xdim = size(source.FES.dofgrid[Coordinates], 2)
xdim = size(source.FES.dofgrid[Coordinates], 1)
ncomponents = get_ncomponents(eltype(source.FES))
nvals = Length4Operator(operator, xdim, ncomponents)
end
Expand Down

0 comments on commit 463acd2

Please sign in to comment.