Problem with articulations

  1. I have assembled a model that is a set of bodies connected by joints. First body is connected to the Fixed Joint. Fixed Joint is Articulation Root. I have launched the model for execution and in the Articulation inspector I am viewing the state of joins. If these bodies are connected using Revolute Joints, then everything is fine. But if these bodies are connected with a Spherical joints, then Articulation inspector will not display anything, and an error will be displayed in the console:

022-08-04 06:40:21 [50,194ms] [Error] [omni.ui.python] TypeError: ‘NoneType’ object is not subscriptable

At:
/home/user/.local/share/ov/pkg/isaac_sim-2022.1.0/exts/omni.isaac.articulation_inspector/omni/isaac/articulation_inspector/extension.py(240): get_articulation_values
/home/user/.local/share/ov/pkg/isaac_sim-2022.1.0/exts/omni.isaac.articulation_inspector/omni/isaac/articulation_inspector/extension.py(290): _refresh_ui
/home/user/.local/share/ov/pkg/isaac_sim-2022.1.0/exts/omni.isaac.articulation_inspector/omni/isaac/articulation_inspector/extension.py(159): _on_selection
/home/user/.local/share/ov/pkg/isaac_sim-2022.1.0/exts/omni.isaac.articulation_inspector/omni/isaac/articulation_inspector/extension.py(185): _on_combobox_selection
/home/user/.local/share/ov/pkg/isaac_sim-2022.1.0/exts/omni.isaac.articulation_inspector/omni/isaac/articulation_inspector/widgets.py(147):

  1. When a joint with the Exclude From Articulation property is changed in the articulation, the Articulation inspector stops displaying the states of the joints, and the rostopic echo /joint_states command displays the names of the joints that were included in the previous version of the articulation. To display correctly, I have to reload the Isaac Sim. Is there another way?

@mgannon

Spherical Joints are a recent addition to the physx api, so they are not yet supported in Isaac Sim articulations. However we will be propagating the change shortly in a future release.

The Exclude From Articulation property appears to be working as expected. A few things to note about that property: you can only exclude leaves from the Articulation tree. If you would like to exclude a joint from the middle, then you will need to add in another articulation root. It’s best practice to make the changes before pressing play in the simulation.

Can you tell us more about your use case for the Exclude From Articulation property so we can better support it in the future … is it to help filter what information is getting streamed out?

Hello, mcgannon. Thanks for your reply.

About articulation:

  1. In the model, I replaced the spherical joint with revolute joint set, and the problem was solved.
  2. Table (https://docs.omniverse.nvidia.com/app_create/prod_extensions/ext_physics/rigid-bodies.html) contains information that the articulation supports spherical joints. You may need to make adjustments to the documentation.
  3. If I exclude the joint from articulation, then I will not be able to get its properties (position, speed, force). I simulate robot with Ackerman steering, and I have a lot of “uninteresting” joints. I exclude one of them from the articulation. However, it is possible that for some users it is necessary to know the states of all joints.
  4. In addition, I found that the joint positions that I get in topic /joint_states messages are calculated incorrectly. The angle reaches 2*pi, and then changes the sign. Because of this, velocity throws occur.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.