1 import pinocchio
as se3
2 from pinocchio.robot_wrapper
import RobotWrapper
10 The class models a mobile robot with UR5 arm, feature 3+6 DOF. 11 The configuration of the basis is represented by [X, Y, cos, sin], with the additionnal constraint 12 that (cos, sin) should have norm 1. Hence take care when sampling and integrating configurations. 13 The robot is depicted as an orange box with two black cylinders (wheels) atop of which is the 14 classical (realistic) UR5 model. 15 The model also features to OPERATIONAL frames, named "mobile" (on the front of the mobile basis, 30cm 16 above the ground) and "tool" (at the very end of the effector). 19 def __init__(self, urdf, pkgs):
22 M0 =
se3.SE3(eye(3), np.matrix([.0, .0, .6]).T)
23 self.model.jointPlacements[2] = M0 * self.model.jointPlacements[2]
24 self.visual_model.geometryObjects[0].placement = M0 * self.visual_model.geometryObjects[0].placement
25 self.visual_data.oMg[0] = M0 * self.visual_data.oMg[0]
28 basisMop =
se3.SE3(eye(3), np.matrix([.3, .0, .1]).T)
29 self.model.addFrame(
se3.Frame(
'mobile', 1, 1, basisMop, se3.FrameType.OP_FRAME))
32 effMop =
se3.SE3(eye(3), np.matrix([.0, .08, .095]).T)
33 self.model.addFrame(
se3.Frame(
'tool', 6, 6, effMop, se3.FrameType.OP_FRAME))
36 self.
data = self.model.createData()
38 def initDisplay(self, loadModel):
39 RobotWrapper.initDisplay(self, loadModel=loadModel)
40 if loadModel
and not hasattr(self,
'display'):
41 RobotWrapper.initDisplay(self, loadModel=
False)
45 self.viewer.gui.addBox(
'world/mobilebasis', .25, .25, .25, [.8, .2, .2, 1])
46 self.viewer.gui.addCylinder(
'world/mobilewheel1', .05, .45, [.1, .0, .0, 1])
47 self.viewer.gui.addCylinder(
'world/mobilewheel2', .05, .45, [.1, .0, .0, 1])
49 self.viewer.gui.setStaticTransform(
'world/mobilebasis', [.0, .0, .35, 1.0, .0, .0, .0])
50 self.viewer.gui.setStaticTransform(
'world/mobilewheel1', [+0.15, .0, .05, .7, .7, .0, .0])
51 self.viewer.gui.setStaticTransform(
'world/mobilewheel2', [-0.15, .0, .05, .7, .7, .0, .0])
53 self.viewer.gui.addXYZaxis(
'world/framebasis', [1., 0., 0., 1.], .03, .1)
54 self.viewer.gui.addXYZaxis(
'world/frametool', [1., 0., 0., 1.], .03, .1)
56 print(
"Error when adding 3d objects in the viewer ... ignore")
59 RobotWrapper.display(self, q)
61 self.viewer.gui.applyConfiguration(
'world/mobilebasis', se3ToXYZQUAT(M1))
62 self.viewer.gui.applyConfiguration(
'world/mobilewheel1', se3ToXYZQUAT(M1))
63 self.viewer.gui.applyConfiguration(
'world/mobilewheel2', se3ToXYZQUAT(M1))
64 self.viewer.gui.refresh()
66 se3.framesKinematics(self.model, self.
data)
67 self.viewer.gui.applyConfiguration(
'world/framebasis', se3ToXYZQUAT(self.data.oMf[-2]))
68 self.viewer.gui.applyConfiguration(
'world/frametool', se3ToXYZQUAT(self.data.oMf[-1]))
70 self.viewer.gui.refresh()
A Plucker coordinate frame attached to a parent joint inside a kinematic tree.