Skip to content

Commit 12c7e82

Browse files
Changes for CI
1 parent 4eb90ea commit 12c7e82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/IK/include/BiomechanicalAnalysis/IK/InverseKinematics.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class HumanIK
186186
{
187187
std::shared_ptr<BipedalLocomotion::IK::R3Task> task;
188188
Eigen::Vector3d weight;
189-
int nodeNumber;
189+
int taskNumber;
190190
bool footInContact{false};
191191
Eigen::Vector3d setPointPosition;
192192
std::string taskName;
@@ -283,7 +283,7 @@ class HumanIK
283283
* |:-----------:|:------------------------------:|:----------:|:--------------------------------------------------------------------------------------------:|:---------:|
284284
* |`FloorContactTask`| `type` | `string` | Type of the task. The value to be set is `FloorContactTask` | Yes |
285285
* |`FloorContactTask`| `robot_velocity_variable_name` | `string` |Name of the variable contained in `VariablesHandler` describing the generalized robot velocity| Yes |
286-
* |`FloorContactTask`| `node_number` | `int` | Node number of the task. The node number must be unique. | Yes |
286+
* |`FloorContactTask`| `floor_contact_task` | `int` | Node number of the task. The node number must be unique. | Yes |
287287
* |`FloorContactTask`| `kp_linear` | `double` | Gain of the distance controller | Yes |
288288
* |`FloorContactTask`| `frame_name` | `string` | Name of the frame to which apply the floor contact task | Yes |
289289
* |`FloorContactTask`| `vertical_force_threshold` | `double` | Threshold of the vertical force to consider the foot in contact | Yes |

src/IK/tests/configTestIK.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ type = "FloorContactTask"
102102
robot_velocity_variable_name = "robot_velocity"
103103
frame_name = "link10"
104104
kp_linear = 1.0
105-
node_number = 10
105+
floor_contact_task = 10
106106
weight = [10.0, 10.0, 10.0]
107107
vertical_force_threshold = 60.0
108108

src/examples/IK/exampleIK.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ type "FloorContactTask"
136136
robot_velocity_variable_name "robot_velocity"
137137
frame_name "RightToe"
138138
kp_linear 60.0
139-
node_number 2
139+
floor_contact_task 21
140140
weight (1.0 1.0 1.0)
141141
vertical_force_threshold 60.0
142142

@@ -145,7 +145,7 @@ type "FloorContactTask"
145145
robot_velocity_variable_name "robot_velocity"
146146
frame_name "LeftToe"
147147
kp_linear 60.0
148-
node_number 1
148+
floor_contact_task 11
149149
weight (1.0 1.0 1.0)
150150
vertical_force_threshold 60.0
151151

0 commit comments

Comments
 (0)