a b/Application/Examples/SeatedHumanFullWithNeck/Model/Mannequin.any
1
2
Main.HumanModel.Mannequin = {
3
  
4
  Posture = 
5
  {
6
    PelvisPosX = 0.15;
7
    PelvisPosY = -0.71;
8
    PelvisPosZ = -9.429406e-021;
9
    PelvisRotX = 1.207418e-006;
10
    PelvisRotY = 3.509792e-015;
11
    PelvisRotZ = 0.381947;
12
    PelvisThoraxExtension = -9.406776;
13
    PelvisThoraxLateralBending = 5.303038e-027;
14
    PelvisThoraxRotation = -1.538346e-027;
15
    NeckExtension = 0;
16
    NeckLateralBending=0; 
17
    NeckRotation=0; 
18
    
19
    Right = 
20
    {
21
      SternoClavicularProtraction = -22.91831;
22
      SternoClavicularElevation = 11.45916;
23
      GlenohumeralFlexion = 25;
24
      GlenohumeralAbduction = 10;
25
      GlenohumeralExternalRotation = -14.45473;
26
      ElbowFlexion = 80;
27
      ElbowPronation = 80;
28
      WristFlexion = 0;
29
      WristAbduction = 0;
30
      HipFlexion = 84.92631;
31
      HipAbduction = 0.5801537;
32
      HipExternalRotation = 0.0476144;
33
      KneeFlexion = 75.39343;
34
      AnklePlantarFlexion = 9.914579;
35
      SubTalarEversion = -4.112401e-007;
36
    };
37
    Left = 
38
    {
39
      SternoClavicularProtraction = -22.91831;
40
      SternoClavicularElevation = 11.45916;
41
      GlenohumeralFlexion = 25;
42
      GlenohumeralAbduction = 10;
43
      GlenohumeralExternalRotation = -14.45473;
44
      ElbowFlexion = 80;
45
      ElbowPronation = 80;
46
      WristFlexion = 0;
47
      WristAbduction = 0;
48
      HipFlexion = 84.92631;
49
      HipAbduction = 0.5801538;
50
      HipExternalRotation = 0.04761449;
51
      KneeFlexion = 75.39343;
52
      AnklePlantarFlexion = 9.914579;
53
      SubTalarEversion = -3.361089e-007;
54
    };
55
  };
56
  
57
  PostureVel={  
58
    //This controls the position of the pelvi wrt. to the global reference frame
59
    PelvisPosX=0;
60
    PelvisPosY=0;
61
    PelvisPosZ=0;
62
    
63
    //This controls the rotation of the pelvis wrt. to the global reference frame
64
    PelvisRotX=0;
65
    PelvisRotY=0;
66
    PelvisRotZ=0;
67
    
68
    // These variables control the rotation of the thorax wrt the
69
    // pelvis    
70
    PelvisThoraxExtension=0; 
71
    PelvisThoraxLateralBending=0;  
72
    PelvisThoraxRotation=0;        
73
    
74
    NeckExtension=0; 
75
    NeckLateralBending=0; 
76
    NeckRotation=0; 
77
    
78
    Right = {
79
      //Arm 
80
      SternoClavicularProtraction=0;   //This value is not used for initial position
81
      SternoClavicularElevation=0;    //This value is not used for initial position
82
      
83
      GlenohumeralFlexion =0; 
84
      GlenohumeralAbduction = 0; 
85
      GlenohumeralExternalRotation = 0; 
86
      
87
      ElbowFlexion = 0.0;
88
      ElbowPronation = 0.0;
89
      
90
      WristFlexion =0;
91
      WristAbduction =0;
92
      
93
      HipFlexion = 0.0; 
94
      HipAbduction = 0.0; 
95
      HipExternalRotation = 0.0;
96
      
97
      KneeFlexion = 0.0; 
98
      
99
      AnklePlantarFlexion =0.0; 
100
      SubTalarEversion =0.0; 
101
      
102
    };
103
    
104
    Left = {
105
      //all values are set to be equal to the right side values 
106
      //feel free to change this!
107
      
108
      //Arm
109
      SternoClavicularProtraction=.Right.SternoClavicularProtraction;
110
      SternoClavicularElevation=.Right.SternoClavicularElevation;
111
      
112
      GlenohumeralFlexion = .Right.GlenohumeralFlexion ; 
113
      GlenohumeralAbduction =.Right.GlenohumeralAbduction ;
114
      GlenohumeralExternalRotation =.Right.GlenohumeralExternalRotation ;
115
      
116
      ElbowFlexion = .Right.ElbowFlexion; 
117
      ElbowPronation = .Right.ElbowPronation;       
118
      WristFlexion =.Right.WristFlexion;
119
      WristAbduction =.Right.WristAbduction;
120
      
121
      
122
      
123
      //Leg     
124
      HipFlexion =.Right.HipFlexion;  
125
      HipAbduction =.Right.HipAbduction;
126
      HipExternalRotation = .Right.HipExternalRotation;
127
      KneeFlexion = .Right.KneeFlexion;       
128
      AnklePlantarFlexion = .Right.AnklePlantarFlexion ;
129
      SubTalarEversion =.Right.SubTalarEversion; 
130
      
131
      
132
    };
133
  };
134
  
135
  
136
  
137
};
138
139
140