Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
quadruped-reactive-walking
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
quadruped-reactive-walking
Commits
45ca5968
Commit
45ca5968
authored
3 years ago
by
odri
Browse files
Options
Downloads
Patches
Plain Diff
Disable heuristic if gait isStatic is true
parent
0f2f6319
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#16566
failed
3 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/FootstepPlanner.cpp
+11
-8
11 additions, 8 deletions
src/FootstepPlanner.cpp
src/Joystick.cpp
+0
-1
0 additions, 1 deletion
src/Joystick.cpp
with
11 additions
and
9 deletions
src/FootstepPlanner.cpp
+
11
−
8
View file @
45ca5968
...
...
@@ -165,16 +165,19 @@ void FootstepPlanner::computeNextFootstep(int i, int j, Vector6 const& b_v, Vect
double
t_stance
=
gait_
->
getPhaseDuration
(
i
,
j
,
1.0
);
// 1.0 for stance phase
// Add symmetry term
nextFootstep_
.
col
(
j
)
=
t_stance
*
0.5
*
b_v
.
head
(
3
);
if
(
!
gait_
->
getIsStatic
())
{
// Add symmetry term
nextFootstep_
.
col
(
j
)
=
t_stance
*
0.5
*
b_v
.
head
(
3
);
// Add feedback term
nextFootstep_
.
col
(
j
)
+=
params_
->
k_feedback
*
(
b_v
.
head
(
3
)
-
b_vref
.
head
(
3
));
// Add feedback term
nextFootstep_
.
col
(
j
)
+=
params_
->
k_feedback
*
(
b_v
.
head
(
3
)
-
b_vref
.
head
(
3
));
// Add centrifugal term
Vector3
cross
;
cross
<<
b_v
(
1
)
*
b_vref
(
5
)
-
b_v
(
2
)
*
b_vref
(
4
),
b_v
(
2
)
*
b_vref
(
3
)
-
b_v
(
0
)
*
b_vref
(
5
),
0.0
;
nextFootstep_
.
col
(
j
)
+=
0.5
*
std
::
sqrt
(
h_ref
/
g
)
*
cross
;
// Add centrifugal term
Vector3
cross
;
cross
<<
b_v
(
1
)
*
b_vref
(
5
)
-
b_v
(
2
)
*
b_vref
(
4
),
b_v
(
2
)
*
b_vref
(
3
)
-
b_v
(
0
)
*
b_vref
(
5
),
0.0
;
nextFootstep_
.
col
(
j
)
+=
0.5
*
std
::
sqrt
(
h_ref
/
g
)
*
cross
;
}
// Legs have a limited length so the deviation has to be limited
nextFootstep_
(
0
,
j
)
=
std
::
min
(
nextFootstep_
(
0
,
j
),
L
);
...
...
This diff is collapsed.
Click to expand it.
src/Joystick.cpp
+
0
−
1
View file @
45ca5968
...
...
@@ -211,7 +211,6 @@ void Joystick::update_v_ref_gamepad(int k, bool gait_is_static, Vector6 h_v)
// Heavily filtered joystick velocity to be used as a trigger for the switch trot/static
v_ref_heavy_filter_
=
gp_alpha_vel_heavy_filter
*
v_gp_
+
(
1
-
gp_alpha_vel_heavy_filter
)
*
v_ref_heavy_filter_
;
std
::
cout
<<
v_ref_heavy_filter_
.
transpose
()
<<
std
::
endl
;
// Low pass filter to slow down the changes of position when moving the joysticks
p_ref_
=
gp_alpha_pos
*
p_gp_
+
(
1
-
gp_alpha_pos
)
*
p_ref_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment