the command for speed control about UR5e #2428
Replies: 1 comment
-
Hi! But when I started using the program, no matter how I set the target speed, the robot would always slowly return from the initial position to the position where all the joints were angled 0. This troubled me, and I wondered if it was the Jacobi matrix or something. I've posted my program here in hopes of enlightening you and solving my problems. This is my program import numpy as np model = mujoco.MjModel.from_xml_path('/home/mjc/dynamic_insertion/dynamic_insertion/ur5/v/v_control.xml') def init_controller(model, data):
target_end_velocity = np.array([0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) # (x, y, z, rx, ry, rz) def compute_jacobian(model, data, site_id): def solve_joint_velocities(jacobian, target_end_velocity): def set_initial_pose(data): def main():
if name == "main": |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Intro
Hi!
I am a student at HIT, I use MuJoCo for my research on ur5e control.
My setup
MuJoCo -python、Linux、Ubuntu22.04
My question
Hello everyone, may I ask how to achieve velocity control of the UR5e robotic arm end in Cartesian space in mujoco, such as controlling the speedL instruction in the UR_rtde library for the robotic arm. I know there is position control in the mujoco case, sending POS directly, but I couldn't find the command for speed control.
Confirmations
Beta Was this translation helpful? Give feedback.
All reactions