Skip to content

Commit

Permalink
Fix indexing bug. (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbolt authored Aug 8, 2023
1 parent 4507892 commit 44c1859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Source/svFSI/fluid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ void fluid_3d_m(ComMod& com_mod, const int vmsFlag, const int eNoNw, const int e
ux(1,2) = ux(1,2) + Nwx(1,a)*yl(2,a);
ux(2,2) = ux(2,2) + Nwx(2,a)*yl(2,a);

uxx(0,0,1) = uxx(0,0,0) + Nwxx(0,a)*yl(0,a);
uxx(0,0,0) = uxx(0,0,0) + Nwxx(0,a)*yl(0,a);
uxx(1,0,1) = uxx(1,0,1) + Nwxx(1,a)*yl(0,a);
uxx(2,0,2) = uxx(2,0,2) + Nwxx(2,a)*yl(0,a);
uxx(1,0,0) = uxx(1,0,0) + Nwxx(3,a)*yl(0,a);
Expand Down

0 comments on commit 44c1859

Please sign in to comment.