Skip to content

Commit

Permalink
Fix SternoClavicular distraction force
Browse files Browse the repository at this point in the history
This is a regression from chancing the way
the force is expressed. #700

fixes: ab#2259
  • Loading branch information
melund committed Jul 27, 2023
1 parent 5c43bbe commit 1e9dd14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Body/AAUHuman/Arm/LeftArmMusclesSelectedOutput.any
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ SelectedOutput.Left = {
AnyFolder JointReactionForce = {

/// Medial positive
AnyVar SternoClavicular_MedioLateralForce = ....Left.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[0];
AnyVar SternoClavicular_MedioLateralForce = (1)*....Left.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[2];
/// Superior positive
AnyVar SternoClavicular_InferoSuperiorForce = ....Left.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[1];
/// Posterior positive
AnyVar SternoClavicular_AnteroPosteriorForce = ....Left.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[2];
AnyVar SternoClavicular_AnteroPosteriorForce = ....Left.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[0];
// Thorax scj ref, warning : rotated regarding to thorax ref

/// Lateral positive
Expand Down
4 changes: 2 additions & 2 deletions Body/AAUHuman/Arm/RightArmMusclesSelectedOutput.any
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ SelectedOutput.Right = {
AnyFolder JointReactionForce = {

/// Lateral positive
AnyVar SternoClavicular_MedioLateralForce = ....Right.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[0];
AnyVar SternoClavicular_MedioLateralForce = (-1)*....Right.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[2];
/// Superior positive
AnyVar SternoClavicular_InferoSuperiorForce = ....Right.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[1];
/// Posterior positive
AnyVar SternoClavicular_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[2];
AnyVar SternoClavicular_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.SternoClavicularJoint.Constraints.Reaction.Fout[0];
// Thorax scj ref, warning : rotated regarding to thorax ref

/// Lateral positive
Expand Down

0 comments on commit 1e9dd14

Please sign in to comment.