Skip to content

Commit b816a37

Browse files
authored
Merge pull request #98 from gridap/fixing_normals_for_simplices
Fixed NormalVector for simplices
2 parents 8aa156a + b8b2d23 commit b816a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Integration/NormalVectors.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function evaluate(nv::NormalVector{Z}, q::CellPoints{Z}) where Z
4141
end
4242

4343
function _map_normal(J,n)
44-
v = inv(J')*n
44+
v = inv(J)*n
4545
m = sqrt(inner(v,v))
4646
if m < eps()
4747
return zero(n)

0 commit comments

Comments
 (0)