Closed kankanzheli closed 6 months ago
Thanks for reaching out. Sadly, I don't understand your issue. How are you "issuing commands"? How can you "issue commands" to only one joint at a time? The entire data.ctrl vector is read at every time step!
On Fri, May 10, 2024, 2:20 PM kankanzheli @.***> wrote:
Dear MuJoCo Support Team, I am currently developing a project using MuJoCo and have encountered an issue with the control of multiple joints in a telescopic arm segment of my robot. I am seeking your advice on how to address this problem effectively. Issue Description: In my robotic model, there are several joints, including those for rotation and translation movements, which all function as expected. However, I am facing a specific issue with the three joints in the telescopic arm of the robot. When commands are issued for these three joints to move simultaneously, they fail to reach their target positions within a given number of mj_step cycles. Notably, when I issue a command to just one of these joints without involving the others, it reaches its target position accurately and without any issues. Additional Details: The problem only arises when the telescopic arm's joints are commanded to move simultaneously. Each joint individually can reach its assigned target when operated alone. This issue does not affect other types of joints in the robot, such as those used for rotation and translation. Request for Assistance: Could you please provide any insights or suggestions on what might be causing this issue and how to resolve it? Are there specific settings or adjustments within MuJoCo that could help ensure all joints in the telescopic arm reach their targets simultaneously? I am looking forward to your expert advice to help improve the functionality of this robotic model. Thank you for your assistance.
<?xml version="1.0"?>
...... ...... ...... ...... python files joint_ids = np.array( [mujoco.mj_name2id(self.model, mujoco.mjtObj.mjOBJ_JOINT, name) for name in jointnames]) for in range(50): mujoco.mj_step(self.model, self.data)
— Reply to this email directly, view it on GitHub https://github.com/google-deepmind/mujoco/issues/1645, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACB6PJBYQP5WYRGUH2K4FVLZBS3SBAVCNFSM6AAAAABHQRDIY6VHI2DSMVQWIX3LMV43ASLTON2WKOZSGI4DSNRSHA3DKOA . You are receiving this because you are subscribed to this thread.Message ID: @.***>
You should look at the Hello Robot Stretch 2 in the Menagerie. It has a telescopic arm.
Dear MuJoCo Support Team, I am currently developing a project using MuJoCo and have encountered an issue with the control of multiple joints in a telescopic arm segment of my robot. I am seeking your advice on how to address this problem effectively. Issue Description: In my robotic model, there are several joints, including those for rotation and translation movements, which all function as expected. However, I am facing a specific issue with the three joints in the telescopic arm of the robot. When commands are issued for these three joints to move simultaneously, they fail to reach their target positions within a given number of mj_step cycles. Notably, when I issue a command to just one of these joints without involving the others, it reaches its target position accurately and without any issues. Additional Details: The problem only arises when the telescopic arm's joints are commanded to move simultaneously. Each joint individually can reach its assigned target when operated alone. This issue does not affect other types of joints in the robot, such as those used for rotation and translation. Request for Assistance: Could you please provide any insights or suggestions on what might be causing this issue and how to resolve it? Are there specific settings or adjustments within MuJoCo that could help ensure all joints in the telescopic arm reach their targets simultaneously? I am looking forward to your expert advice to help improve the functionality of this robotic model. Thank you for your assistance.
python files
joint_ids = np.array( [mujoco.mj_name2id(self.model, mujoco.mjtObj.mjOBJ_JOINT, name) for name in joint_names]) for _ in range(50): mujoco.mj_step(self.model, self.data)