1 import pinocchio
as pin
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). 20 super(MobileRobotWrapper, self).
__init__(self, urdf, pkgs, pin.JointModelPlanar())
22 M0 = pin.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 = pin.SE3(
eye(3), np.matrix([.3, .0, .1]).T)
29 self.model.addFrame(pin.Frame(
'mobile', 1, 1, basisMop, pin.FrameType.OP_FRAME))
32 effMop = pin.SE3(
eye(3), np.matrix([.0, .08, .095]).T)
33 self.model.addFrame(pin.Frame(
'tool', 6, 6, effMop, pin.FrameType.OP_FRAME))
36 self.
data = self.model.createData()
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', pin.se3ToXYZQUATtuple(M1))
62 self.viewer.gui.applyConfiguration(
'world/mobilewheel1', pin.se3ToXYZQUATtuple(M1))
63 self.viewer.gui.applyConfiguration(
'world/mobilewheel2', pin.se3ToXYZQUATtuple(M1))
64 self.viewer.gui.refresh()
66 pin.framesKinematics(self.
model, self.
data)
67 self.viewer.gui.applyConfiguration(
'world/framebasis', pin.se3ToXYZQUATtuple(self.data.oMf[-2]))
68 self.viewer.gui.applyConfiguration(
'world/frametool', pin.se3ToXYZQUATtuple(self.data.oMf[-1]))
70 self.viewer.gui.refresh()
def __init__(self, urdf, pkgs)
def initDisplay(self, loadModel)