From 6911893abd46e2ec06131fbcc08da007e5cc1608 Mon Sep 17 00:00:00 2001 From: Rohan Budhiraja <proyan@users.noreply.github.com> Date: Tue, 10 Oct 2017 14:55:04 +0200 Subject: [PATCH] [testing] kinematic right hand and com task script for talos robot --- unitTesting/kinetalos.py | 117 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 unitTesting/kinetalos.py diff --git a/unitTesting/kinetalos.py b/unitTesting/kinetalos.py new file mode 100644 index 0000000..fd73760 --- /dev/null +++ b/unitTesting/kinetalos.py @@ -0,0 +1,117 @@ +# ______________________________________________________________________________ +# ****************************************************************************** +# +# The simplest robot task: Just go and reach a point +# +# ______________________________________________________________________________ +# ****************************************************************************** + + +#----------------------------------------------------------------------------- +#SET THE PATH TO THE URDF AND MESHES +#Define robotName, urdfpath and initialConfig +dt = 5e-3 +urdfPath = "/PATH/TO/talos-data/robots/talos_full_collision.urdf" +urdfDir = ["/PATH/TO/talos-data"] +robotName = 'TALOS' +OperationalPointsMap = {'left-wrist' : 'arm_left_7_joint', + 'right-wrist' : 'arm_right_7_joint', + 'left-ankle' : 'leg_left_5_joint', + 'right-ankle' : 'leg_right_5_joint', + 'gaze' : 'head_2_joint', + 'waist' : 'root_joint', + 'chest' : 'torso_2_joint'} +initialConfig = (0., 0., 0.648702, 0., 0. , 0., # Free flyer + 0., 0., -0.453786, 0.872665, -0.418879, 0., # Left Leg + 0., 0., -0.453786, 0.872665, -0.418879, 0., # Right Leg + 0., 0., # Chest + 0.261799, 0.17453, 0., -0.523599, 0., 0., 0.1, # Left Arm + 0., 0.,0.,0., 0.,0.,0., # Left gripper + -0.261799, -0.17453, 0., -0.523599, 0., 0., 0.1, # Right Arm + 0., 0.,0.,0., 0.,0.,0., # Right gripper + 0., 0. # Head + ) + + +#----------------------------------------------------------------------------- +#---- ROBOT SPECIFICATIONS---------------------------------------------------- +#----------------------------------------------------------------------------- + + +#----------------------------------------------------------------------------- +#---- DYN -------------------------------------------------------------------- +#----------------------------------------------------------------------------- +from pinocchio.robot_wrapper import RobotWrapper +import pinocchio as se3 +from dynamic_graph.sot.dynamics_pinocchio import fromSotToPinocchio +pinocchioRobot = RobotWrapper(urdfPath, urdfDir, se3.JointModelFreeFlyer()) +pinocchioRobot.initDisplay(loadModel=True) +pinocchioRobot.display(fromSotToPinocchio(initialConfig)) + + +from dynamic_graph.sot.dynamics_pinocchio.humanoid_robot import HumanoidRobot +robot = HumanoidRobot(robotName, pinocchioRobot.model, + pinocchioRobot.data, initialConfig, OperationalPointsMap) + + +# ------------------------------------------------------------------------------ +# ---- Kinematic Stack of Tasks (SoT) ----------------------------------------- +# ------------------------------------------------------------------------------ +from dynamic_graph import plug +from dynamic_graph.sot.core import SOT +sot = SOT('sot') +sot.setSize(robot.dynamic.getDimension()) +plug(sot.control,robot.device.control) + + + +# ------------------------------------------------------------------------------ +# ---- TASKS ------------------------------------------------------------------- + +# ---- TASK GRIP +from dynamic_graph.sot.core.meta_tasks_kine import MetaTaskKine6d, MetaTaskKineCom, gotoNd +from dynamic_graph.sot.core.matrix_util import matrixToTuple +from numpy import eye + +taskRH = MetaTaskKine6d('rh',robot.dynamic,'rh',robot.OperationalPointsMap['right-wrist']) +handMgrip = eye(4); handMgrip[0:3,3] = (0.1,0,0) +taskRH.opmodif = matrixToTuple(handMgrip) +taskRH.feature.frame('desired') +# --- STATIC COM (if not walking) +taskCom = MetaTaskKineCom(robot.dynamic) +robot.dynamic.com.recompute(0) +taskCom.featureDes.errorIN.value = robot.dynamic.com.value +taskCom.task.controlGain.value = 10 + + +# --- CONTACTS +#define contactLF and contactRF +for name,joint in [ ['LF',robot.OperationalPointsMap['left-ankle']], ['RF',robot.OperationalPointsMap['right-ankle'] ] ]: + contact = MetaTaskKine6d('contact'+name,robot.dynamic,name,joint) + contact.feature.frame('desired') + contact.gain.setConstant(10) + contact.keep() + locals()['contact'+name] = contact + + +target = (0.5,-0.2,1.0) + +#addRobotViewer(robot, small=False) +#robot.viewer.updateElementConfig('zmp',target+(0,0,0)) + +gotoNd(taskRH,target,'111',(4.9,0.9,0.01,0.9)) +sot.push(contactRF.task.name) +sot.push(contactLF.task.name) +sot.push(taskCom.task.name) +sot.push(taskRH.task.name) + +#------------------------------------------------------------------------------- +#----- MAIN LOOP --------------------------------------------------------------- +#------------------------------------------------------------------------------- + +def runner(n): + for i in xrange(n): + robot.device.increment(dt) + pinocchioRobot.display(fromSotToPinocchio(robot.device.state.value)) + +#runner(3000) -- GitLab