Skip to content

Commit

Permalink
Fix bug in set_bc_rbnl (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
kharold23 authored Nov 6, 2023
1 parent d18a1fe commit ffa7d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Source/svFSI/set_bc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ void set_bc_rbnl(ComMod& com_mod, const faceType& lFa, const double ks, const do
for (int a = 0; a < eNoN; a++) {
int Ac = lFa.IEN(a,e);
ptr(a) = Ac;
for (int i = 0; i < nsd; a++) {
for (int i = 0; i < nsd; i++) {
xl(i,a) = com_mod.x(i,Ac);
yl(i,a) = Yg(i+s,Ac);
dl(i,a) = Dg(i+s,Ac);
Expand Down

0 comments on commit ffa7d11

Please sign in to comment.