Skip to content
This repository was archived by the owner on Dec 1, 2020. It is now read-only.

Commit 3dbefb9

Browse files
committed
change the yaml file to use lists
1 parent cee2479 commit 3dbefb9

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

march_joint_inertia_controller/config/joint_inertia_controller.yaml

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,36 @@ march:
3737
std_samples: 100 # number of samples used to calculate the standard deviation
3838
lambda: 0.96 # Usually chosen between 0.9 and 1.0, but not bigger than one or less than zero
3939
alpha_filter_size: 12 # Determines the filter size in the alpha calculation, recommended between 8 and 32
40-
vibration_boundaries: {1.4, 1.9}
41-
control_points: # All arrays must be of same size. Each inertia corresponds to a gain
42-
inertia: {0.0, 1.0}
43-
p: {150, 300}
44-
d: {0, 5}
40+
vibration_boundaries:
41+
- 1.4
42+
- 1.9
43+
control_points:
44+
inertia:
45+
- 0.0
46+
- 1.0
47+
p:
48+
- 150
49+
- 300
50+
d:
51+
- 0
52+
- 5
4553
linear:
4654
std_samples: 100 # number of samples used to calculate the standard deviation
4755
lambda: 0.96
4856
alpha_filter_size: 12
49-
vibration_boundaries: {1.4, 1.9}
50-
control_points:
51-
inertia: {0.0, 1.0}
52-
p: {150, 300}
53-
d: {0, 5}
57+
vibration_boundaries:
58+
- 1.4
59+
- 1.9
60+
control_points:
61+
inertia:
62+
- 0.0
63+
- 1.0
64+
p:
65+
- 150
66+
- 300
67+
d:
68+
- 0
69+
- 5
5470
constraints:
5571
left_ankle:
5672
trajectory: 0.305

0 commit comments

Comments
 (0)