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 Aug 7, 2023
1 parent 5c43bbe commit 9d24859
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Body/AAUHuman/Arm/LeftArmMusclesSelectedOutput.any
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ SelectedOutput.Left = {


/// Distraction positive
AnyVar GlenoHumeral_DistractionForce = ....Left.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[0];
AnyVar GlenoHumeral_DistractionForce = (1)*....Left.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[2];
/// Inferior positive
AnyVar GlenoHumeral_InferoSuperiorForce = ....Left.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[1];
/// Posterior positive
AnyVar GlenoHumeral_AnteroPosteriorForce = ....Left.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[2];
AnyVar GlenoHumeral_AnteroPosteriorForce = ....Left.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[0];
// scapula gh ref


Expand Down
8 changes: 4 additions & 4 deletions Body/AAUHuman/Arm/RightArmMusclesSelectedOutput.any
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ SelectedOutput.Right = {
// Thorax scj ref, warning : rotated regarding to thorax ref

/// Lateral positive
AnyVar AcromioClavicular_MedioLateralForce = ....Right.ShoulderArm.Jnt.AcromioClavicularJoint.Constraints.Reaction.Fout[0];
AnyVar AcromioClavicular_MedioLateralForce = ....Right.ShoulderArm.Jnt.AcromioClavicularJoint.Constraints.Reaction.Fout[2];
/// Superior positive
AnyVar AcromioClavicular_InferoSuperiorForce = ....Right.ShoulderArm.Jnt.AcromioClavicularJoint.Constraints.Reaction.Fout[1];
/// Posterior positive
AnyVar AcromioClavicular_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.AcromioClavicularJoint.Constraints.Reaction.Fout[2];
AnyVar AcromioClavicular_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.AcromioClavicularJoint.Constraints.Reaction.Fout[0];
// Clavicula acj ref

// include 3 reaction point of scapula
Expand All @@ -31,11 +31,11 @@ SelectedOutput.Right = {


/// Distraction positive
AnyVar GlenoHumeral_DistractionForce = ....Right.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[0];
AnyVar GlenoHumeral_DistractionForce = (-1)*....Right.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[2];
/// Superior positive
AnyVar GlenoHumeral_InferoSuperiorForce = ....Right.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[1];
/// Posterior positive
AnyVar GlenoHumeral_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[2];
AnyVar GlenoHumeral_AnteroPosteriorForce = ....Right.ShoulderArm.Jnt.GHReactions.ResultanForce.FTotalLocal[0];
// scapula gh ref


Expand Down

0 comments on commit 9d24859

Please sign in to comment.