FT sensor data is increasing continously and not changing even after giving external force #3054
Unanswered
akinfinity21
asked this question in
Asking for Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Intro
Hi!
my name is akash , I use MuJoCo for my research project in my college
My setup
import time
import mujoco
import numpy as np
model = mujoco.MjModel.from_xml_path(
"/home/akash/ros2_ws/src/doosan-robot2/dsr_description2/mujoco_models/a0509/a0509.xml"
)
data = mujoco.MjData(model)
🔹 Flush all previous data
mujoco.mj_resetData(model, data)
mujoco.mj_forward(model, data)
print("Starting FT logging from clean state...\n")
while True:
mujoco.mj_step(model, data)
My question
i am unable to get the correct FT sensor value. the sensor value keeps on increasing even though the robot remains at ideal position. the robot FT sensor gives correct value when open in mujoco viewer but act different when i launch through ros launch file.
Minimal model and/or code that explain my question
Confirmations
Beta Was this translation helpful? Give feedback.
All reactions