Changed Parameters for Human Mass Scaling I used the same program HumanMassProperties.cpp with the following 4 different sets of parameters: Female Whole-Body Scaling const bool subjectIsFemale = true; const Real subjectTotalMassInKG = 61.9; const Real subjectTotalHeightInMM = 1735; const Real segmentLengthInMM[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; Male Foot Scaling const bool subjectIsFemale = false; const Real subjectTotalMassInKG = 90; const Real subjectTotalHeightInMM = 0; const Real segmentLengthInMM[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 279.4 }; Edith Whole-Body Scaling const bool subjectIsFemale = true; const Real subjectTotalMassInKG = 56.7; const Real subjectTotalHeightInMM = 1651; const Real segmentLengthInMM[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; Edith Segment Scaling const bool subjectIsFemale = true; const Real subjectTotalMassInKG = 56.7; const Real subjectTotalHeightInMM = 1651; const Real segmentLengthInMM[] = { 252, 460, 324, 261, 177, 524, 392, 254 };