78 lines (66 with data), 4.4 kB
AnyVar BMI = BodyMass/(BodyHeight^2);
///Estimation from Frankenfield et al. (2001) valid for men
AnyVar FatPercent = (-0.09 + 0.0149*BMI - 0.00009*BMI^2)*100;
AnyVar BodyMass = 75 ;
AnyVar BodyHeight = 180 /100;
AnyFolder SegmentMasses = {
//Segment masses in kg from Winter ("Biomechanics and motor control of human movement." David A. Winter)
AnyVar Lumbar = 0.139*.BodyMass; // T12-L1 to L5-Sacrum
AnyVar Thorax = 0.1894*.BodyMass; // C7-T1 to T12-L1 (modified from 0.216 winter to separate scapula)
AnyVar Pelvis = 0.142*.BodyMass;
AnyVar Head = 0.081*.BodyMass; // head and cervical
AnyFolder Right =
{
AnyVar Shoulder = 0.0133*..BodyMass; //< Combined mass of shoulder muscles and scapula/clavicula bones.
AnyVar UpperArm = 0.028*..BodyMass;
AnyVar LowerArm = 0.016*..BodyMass;
AnyVar Hand = 0.006*..BodyMass;
AnyVar Thigh = 0.1*..BodyMass;
AnyVar Shank = 0.0465*..BodyMass;
AnyVar Talus = 0.2*0.0145*..BodyMass; //20% of total foot (from bone volume ratio)
AnyVar Foot = 0.8*0.0145*..BodyMass; //80% of total foot (from bone volume ratio)
};
AnyFolder Left =
{
AnyVar Shoulder = 0.0133*..BodyMass;
AnyVar UpperArm = 0.028*..BodyMass;
AnyVar LowerArm = 0.016*..BodyMass;
AnyVar Hand = 0.006*..BodyMass;
AnyVar Thigh = 0.1*..BodyMass;
AnyVar Shank = 0.0465*..BodyMass;
AnyVar Talus = 0.2*0.0145*..BodyMass; //20% of total foot (from bone volume ratio)
AnyVar Foot = 0.8*0.0145*..BodyMass; //80% of total foot (from bone volume ratio)
};
};
AnyFolder SegmentScaleFactors =
{
AnyFolder Pelvis = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Trunk = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Head = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Neck = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Lumbar = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Right =
{
AnyFolder Clavicula = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Scapula = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Humerus = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Radius = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Ulna = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Hand = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Foot = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Shank = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Thigh = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
};
AnyFolder Left =
{
AnyFolder Clavicula = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Scapula = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Humerus = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Radius = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Ulna = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Hand = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Foot = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Shank = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
AnyFolder Thigh = { AnyFloat LengthScale = 1; AnyFloat DepthScale = 1; AnyFloat WidthScale = 1; };
};
};