ur5x4.py
Go to the documentation of this file.
1 """
2 Load 4 times the UR5 model, plus a plate object on top of them, to feature a simple
3 parallel robot.
4 No optimization, this file is just an example of how to load the models.
5 """
6 
7 from pathlib import Path
8 
9 import numpy as np
10 from pinocchio import SE3
11 from pinocchio.robot_wrapper import RobotWrapper
12 from pinocchio.utils import eye, rotate, se3ToXYZQUATtuple, urdf, zero
13 
14 PKG = Path("/opt/openrobots/share")
15 URDF = PKG / "ur5_description/urdf/ur5_gripper.urdf"
16 
17 
18 def loadRobot(M0, name):
19  """
20  This function load a UR5 robot n a new model, move the basis to placement <M0>
21  and add the corresponding visuals in gepetto viewer with name prefix given by string
22  <name>.
23  It returns the robot wrapper (model,data).
24  """
25  robot = RobotWrapper(urdf, [PKG])
26  robot.model.jointPlacements[1] = M0 * robot.model.jointPlacements[1]
27  robot.visual_model.geometryObjects[0].placement = (
28  M0 * robot.visual_model.geometryObjects[0].placement
29  )
30  robot.visual_data.oMg[0] = M0 * robot.visual_data.oMg[0]
31  robot.initDisplay(loadModel=True, viewerRootNodeName="world/" + name)
32  return robot
33 
34 
35 robots = []
36 # Load 4 Ur5 robots, placed at 0.3m from origin in the 4 directions x,y,-x,-y.
37 Mt = SE3(eye(3), np.array([0.3, 0, 0])) # First robot is simply translated
38 for i in range(4):
39  robots.append(
40  loadRobot(SE3(rotate("z", np.pi / 2 * i), zero(3)) * Mt, "robot%d" % i)
41  )
42 
43 # Set up the robots configuration with end effector pointed upward.
44 q0 = np.array([np.pi / 4, -np.pi / 4, -np.pi / 2, np.pi / 4, np.pi / 2, 0])
45 for i in range(4):
46  robots[i].display(q0)
47 
48 # Add a new object featuring the parallel robot tool plate.
49 gepettoViewer = robots[0].viewer.gui
50 w, h, d = 0.25, 0.25, 0.005
51 color = [red, green, blue, transparency] = [1, 1, 0.78, 1.0]
52 gepettoViewer.addBox("world/toolplate", w, h, d, color)
53 Mtool = SE3(rotate("z", 1.268), np.array([0, 0, 0.77]))
54 gepettoViewer.applyConfiguration("world/toolplate", se3ToXYZQUATtuple(Mtool))
55 gepettoViewer.refresh()
pinocchio.robot_wrapper.RobotWrapper
Definition: bindings/python/pinocchio/robot_wrapper.py:15
pinocchio.utils
Definition: bindings/python/pinocchio/utils.py:1
pinocchio.utils.eye
def eye(n)
Definition: bindings/python/pinocchio/utils.py:32
display
Definition: display.py:1
pinocchio.robot_wrapper
Definition: bindings/python/pinocchio/robot_wrapper.py:1
ur5x4.loadRobot
def loadRobot(M0, name)
Definition: ur5x4.py:18
pinocchio::python::context::SE3
SE3Tpl< Scalar, Options > SE3
Definition: bindings/python/context/generic.hpp:53
pinocchio.utils.zero
def zero(n)
Definition: bindings/python/pinocchio/utils.py:37


pinocchio
Author(s):
autogenerated on Sun Nov 10 2024 03:43:02