forked from antoinefalisse/predsim_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
38 lines (36 loc) · 1.12 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
def getSettings():
settings = {
# Baseline
'0': {
'model': 'Hamner_modified',
'targetSpeed': 1.33,
'N': 25},
# Target speed 1m/s.
'1': {
'model': 'Hamner_modified',
'targetSpeed': 1.00,
'N': 25},
# Weaker gluteus muscles (50% strength).
'2': {
'model': 'Hamner_modified_weakerGluts',
'targetSpeed': 1.33,
'N': 25},
# Contact models with higher stiffness (10e6 instead of 1e6)
'3': {
'model': 'Hamner_modified_stifferContacts',
'targetSpeed': 1.33,
'N': 25},
# Full gait cycle
'4': {
'model': 'Hamner_modified',
'targetSpeed': 1.33,
'N': 50,
'gaitCycleSimulation': 'full'},
# Full gait cycle with weaker right gluteus muscles (50% strength).
'5': {
'model': 'Hamner_modified_weakerRightGluts',
'targetSpeed': 1.33,
'N': 50,
'gaitCycleSimulation': 'full'},
}
return settings