Skip to content

Commit eb680c2

Browse files
committed
fix
1 parent 5c3b42d commit eb680c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/BloodFlowTrixiDataInterpolationsExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ module BloodFlowTrixiDataInterpolationsExt
2323
a,b,c = tanj(s)
2424
# return a any normal vector
2525
if a != 0
26-
return [-b,a,c]
26+
return [-b,a,0]
2727
elseif b != 0
28-
return [-b,a,c]
28+
return [-b,a,0]
2929
else
3030
return [-c,b,a]
3131
end

0 commit comments

Comments
 (0)