Skip to content

Commit

Permalink
Merge pull request OpenSees#1518 from gaaraujo/master
Browse files Browse the repository at this point in the history
Fixed bug in `KRAlphaExplicit::getVel()`
  • Loading branch information
mhscott authored Sep 21, 2024
2 parents 6b368b1 + 09b2e5b commit 1dd6881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SRC/analysis/integrator/KRAlphaExplicit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ int KRAlphaExplicit::commit(void)
const Vector &
KRAlphaExplicit::getVel()
{
return *Udot;
return *Ualphadot;
}

int KRAlphaExplicit::sendSelf(int cTag, Channel &theChannel)
Expand Down Expand Up @@ -638,4 +638,4 @@ int KRAlphaExplicit::revertToStart()
Udotdot->Zero();

return 0;
}
}

0 comments on commit 1dd6881

Please sign in to comment.