Hello.
As a background, we are working on a Transfemoral Amputee Gait project, where we want to estimate the reaction forces at the stump/socket interface. Currently, I want to change the ModelSegmentParameters to ModelSegmentParametersProsthetic for just the Right Leg, so I can modify the inertial properties, mass, and so on.
This is what I have at the moment:
#if ProsthesisInertialProp == ON
// Main.HumanModel.BodyModel.Right.Leg = {Sign=1;};
#include "ModelSegmentParametersProsthetic.any"
#else
#include "ModelSegmentParameters.any"
#endif
But since the Sign = 1 is already defined in the RightLegTDModel, the model doesn't load.
Any hints on how to modify this only for the Right Leg?
Thank you,