Skip to content

Commit

Permalink
Fixed sign issue with evaluating body loads on rigid bodies.
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMaas1978 committed Jan 4, 2023
1 parent 2ca9fa4 commit 9ea0c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FEBioMech/FERigidSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ void FERigidSolverNew::BodyForces(FEGlobalVector& R, const FETimeInfo& timeInfo,
R.Assemble(LM, fe);

// add to rigid body force
RB.m_Fr += F;
RB.m_Fr -= F;
}
}

Expand Down

0 comments on commit 9ea0c0d

Please sign in to comment.