ROS Components for hexapod_robot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
833B

  1. import math
  2. def ik(side, x, y, z):
  3. c = 20
  4. f = 80
  5. t = 130
  6. ff = f*f
  7. tt = t*t
  8. print()
  9. print(f"ik {side} {x} {y} {z}")
  10. if side == 'l':
  11. x = -x
  12. coxa_angle = math.atan2(y,x)
  13. r = math.sqrt(x*x + y * y) - c
  14. print(f"r: {r}")
  15. rr = r*r
  16. zz = z*z
  17. dd = rr + zz
  18. d = math.sqrt(dd)
  19. print(f"coxa_angle: {coxa_angle}")
  20. femur_angle = math.acos((ff + dd - tt) / (2 * f * d)) + math.acos(-z/d) - math.pi/2
  21. print(f"femur_angle: {femur_angle}")
  22. tibia_angle = math.acos((tt + ff - dd) / (2 * t * f)) - math.pi/2
  23. print(f"tibia_angle: {tibia_angle}")
  24. return(coxa_angle, femur_angle, tibia_angle)
  25. print(ik('l', -100, 0, -130))
  26. print(ik('r', 100, 0, -130))
  27. print(ik('l', -120, 0, -130))
  28. print(ik('r', 120, 0, -130))