Closed SantiDiazC closed 1 month ago
Hi @SantiDiazC ,
This is currently not possible through the tensor API themselves. Even if you set the command for a sub-set of the joints, the entire tensor (at the joint-indexing level) is set to the simulation. This means the targets would be zero for those you don't set into the buffers directly.
If you want to actuate only a sub-set of joints, there are two options:
Thank you for your reply! Ok I understand, It would be great to have that kind of feature in the future so we can model more complex behaviors.
for the first case it means to set the implicit actuator config like this?:
"l_ax0": ImplicitActuatorCfg(
joint_names_expr=["l_ax0_joint_.*"],
effort_limit=100.0,
velocity_limit=100.0,
stiffness=0.0,
damping=0.0,
Setting the stiffness (P gain) and damping (D gain) to 0.0? (ImplicitActuatorCfg). Can it be modified while the simulation is running? or only at the initialization stage?
Question
Hi, I am creating my scene on orbit and I define a robot using the ArticulationCfg class, such the joints of the robot are defined like this:
I want to control the two set of joints (actuators) independently and I checked the documentation Interacting With An Articulation, but in that example all joints commands are applied at the same time without specifying any actuator, so I am curious if there is a way to do that.
Thank you in advance!