You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I am currently doing a masters in the field of AI and Robotics and working at Idiap Research Institute in the robot learning interaction group. Our Institute ordered the solo 12 robot and we will do some research with it.
I tried starting from the file demo_robot_com_ctrl.py to jump with the solo 12 in Pybullet simulation environment.
To generate the commands for the jumping task, I used the planner from kino_dynamic_optkino_dyn_planner.py by using the motion regarding cfg_solo12_jump.yaml.
As input for the controller I use then from the planner the following outputs of the variables:
x_coms: position of center of mass
x_des: desired leg position with respect to the base
cnt_array: array for indicating contact to the ground of a foot
Further I sampled all the control arrays up with a factor of 5 by linear interpolation, because the output of the planner is based on a time step of dt = 0.005 and for the controller dt = 0.001 is used.
Additionally the following values for the gains were used:
By running the controller with this settings, the solo jumps with the desired dynamic, but it doesn't jump as high as expected (resp. desired). Compared to the planned trajectory, the solo jumps around 14 cm less and lands therefore earlier too. I have tried different gain settings and looked for other reasons, but I could not find out why it does not jump higher.
Interestingly, the dynamics up to the jump are almost identical to those generated by the planner, yet the robot does not reach the corresponding height.
I would be happy if you have a suggestion what could cause this result and what could be improved. I am gladly to share more details if desired.
The text was updated successfully, but these errors were encountered:
rather than linear interpolation, try keeping the force constant for the duration of the time.
I've personally had better and more accurate results using RAIsim (www.raisim.com)
The dynamics used in the solver are explicit, however, this is not necessarily correct (and is just an approximation). You can try to set up the dynamics using an implicit euler scheme which may show improved tracking as well. From what I remember, this would be quite tough to do in the kino-dyn though...
We have noticed this issue before, and don't fully understand this phenomena.
Hi
I am currently doing a masters in the field of AI and Robotics and working at Idiap Research Institute in the robot learning interaction group. Our Institute ordered the solo 12 robot and we will do some research with it.
I tried starting from the file
demo_robot_com_ctrl.py
to jump with the solo 12 in Pybullet simulation environment.To generate the commands for the jumping task, I used the planner from kino_dynamic_opt
kino_dyn_planner.py
by using the motion regarding cfg_solo12_jump.yaml.As input for the controller I use then from the planner the following outputs of the variables:
Further I sampled all the control arrays up with a factor of 5 by linear interpolation, because the output of the planner is based on a time step of
dt = 0.005
and for the controllerdt = 0.001
is used.Additionally the following values for the gains were used:
RobotCentroidalController:
RobotImpedanceController:
By running the controller with this settings, the solo jumps with the desired dynamic, but it doesn't jump as high as expected (resp. desired). Compared to the planned trajectory, the solo jumps around 14 cm less and lands therefore earlier too. I have tried different gain settings and looked for other reasons, but I could not find out why it does not jump higher.
Interestingly, the dynamics up to the jump are almost identical to those generated by the planner, yet the robot does not reach the corresponding height.
I would be happy if you have a suggestion what could cause this result and what could be improved. I am gladly to share more details if desired.
The text was updated successfully, but these errors were encountered: