Close

Jumping Simulation

A project log for Terminator*

A full-size light-weight BLDC-driven humanoid robot designed for high performance and agility

jon-mendenhallJon Mendenhall 01/13/2021 at 19:082 Comments

The following video demonstrates a simulated vertical jump of the robot in a custom Python program I wrote. Center of mass is displayed by the black and yellow circle at mid-torso level, and the sizes are all exactly as planned.

 Ignore the big block actuators shown on the leg... they were from an old design that will not be in the final leg... I'll update the simulator program later on.

A little bit of info on the simulation:

All joint info is calculated by a function which only takes the desired "charge" distance... 0m would be right at the peak of the jump when the leg is fully extended, and -0.70m is the charge amount when the robot is fully compressed. This function is likely to change later on to find the most optimal path/config for force production.

Input parameters are the following during the calculations at each step:

The torque on the hip, knee, and ankle are all calculated based on motor_kv, battery_voltage, max_current, and the angular velocity of the joint to acount for the motor's torque/speed curve. 

I'm using a linear torque speed curve where the motor can output 100% torque at 0rpm, and 0% torque at the no-load rpm.

Motor reduction ratios are as follows:

Hip: Constant 1:15 ratio

Knee: Rolling joint that varies according to:

This produces a non-linear reduction ratio ranging from 1:11.3 at the ends of the knee's travel, and 1:16 when the upper and lower legs are 90° apart. Theta is the internal pulley angles, and is offset 90°, so the knee ranges from -90 to +90 rather than 0 to -180.

Ankle: Rolling joint that varies according to:

This produces a non-linear reduction ratio ranging from 1:12.7 at the ends of the ankle's travel (+/-60°), and 1:18 when the ankle is at neutral position.

Once all joint torque's are calculated, the torques are transformed to normal force on the ground based on the current position. My joint info function produces results where the center of mass and ball of the foot are always at x=0, so using the following equation is all that is necessary to calculate normal force produced by each joint.

However, because all of these forces are likely to be different, I just take the minimum, and use that as the applied force on the ground.

In the end, the robot will determine motor torques to apply for a given ground reaction force, but this seemed like a good way to simulate the force production for given torques without having any more advanced joint angle functions where all joints produce the correct torques to stay on the desired path while also pushing off the ground with a desired force.

Because all of my actuators are cable-driven, I also calculate the tension acting on each cable system, and a safety factor so I can make sure I don't go outside any limits and snap cables that are too weak. (I decided on 1mm 7x7 stainless steel cable that has a supposed breaking strength of 140lbs or 622N, but I'll try to keep a safety factor of at least 2)

Taking into account the force pushing down on the robot, and the normal force on the ground, the net force is applied to the robot using simple Newtonian physics with F = ma. Each step then just applies the acceleration to the velocity, and integrates position according to velocity and acceleration during the time step (0.001s).

At the moment the robot disconnects from the ground, the current velocity is projected to find the expected jump height where the current kinetic energy must match the gravitational potential energy at the peak of the jump. The calculation to determine height (m) from velocity (m/s) ends up being:

I also just added calculations for mechanical power and the input current on the supply so I know what my requirements on batteries are.

Work can be calculated according to the work-energy theorem stating that total work done on the system is equal to the change in kinetic energy, and then converted to power by dividing by the time the jump actually took while pushing off the ground:

Info for the video:

And finally the video

Discussions

Jon Mendenhall wrote 01/14/2021 at 21:17 point

See next post for a correction on the Mechanical power stated at 838W...

  Are you sure? yes | no

Jon Mendenhall wrote 01/13/2021 at 19:09 point

Forgot to mention the video is shown in slow motion: 1/8 actual speed, so keep that in mind

  Are you sure? yes | no