-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Fixes apply actions method in the NonHolonomicAction action term class
#317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Mayankm96
merged 4 commits into
isaac-sim:main
from
KyleM73:bug_fix/non_holonomic_actions
Mar 22, 2024
Merged
Fixes apply actions method in the NonHolonomicAction action term class
#317
Mayankm96
merged 4 commits into
isaac-sim:main
from
KyleM73:bug_fix/non_holonomic_actions
Mar 22, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Thanks a lot for sending this fix. Could you please also modify |
NonHolonomicAction action term class
|
just did both, all tests green :) |
Signed-off-by: Mayank Mittal <[email protected]>
Mayankm96
approved these changes
Mar 22, 2024
|
Thanks a lot for the fix :) |
fatimaanes
pushed a commit
to fatimaanes/omniperf
that referenced
this pull request
Aug 8, 2024
…ass (isaac-sim#317) # Description in `NonHolonomicAction.apply_actions()` the velocity command was incorrectly named `self.joint_vel` instead of `self._joint_vel_command` as initialized in `NonHolonomicAction.__init__()`. This causes an error when trying to instantiate the action config. I have corrected and tested that it works. ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [X] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [X] I have made corresponding changes to the documentation - [X] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [X] I have run all the tests with `./orbit.sh --test` and they pass - [X] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
iamdrfly
pushed a commit
to iamdrfly/IsaacLab
that referenced
this pull request
Nov 21, 2024
…ass (isaac-sim#317) # Description in `NonHolonomicAction.apply_actions()` the velocity command was incorrectly named `self.joint_vel` instead of `self._joint_vel_command` as initialized in `NonHolonomicAction.__init__()`. This causes an error when trying to instantiate the action config. I have corrected and tested that it works. ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [X] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [X] I have made corresponding changes to the documentation - [X] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [X] I have run all the tests with `./orbit.sh --test` and they pass - [X] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
kellyguo11
added a commit
to kellyguo11/IsaacLab-public
that referenced
this pull request
Apr 4, 2025
This change prevents importing pink/dex-retargeting when using other IsaacLab scripts. * Change the import structure to only import ``pinocchio`` when ``pink-ik`` or ``dex-retargeting`` is being used. * This also solves for the problem that ``pink-ik`` and ``dex-retargeting`` are not supported in windows. * Removed ``isaacsim.robot_motion.lula`` and ``isaacsim.robot_motion.motion_generation`` from the default loaded Isaac Sim extensions and enable them only for RMPFlow * Moved pink ik action config to a separate file. * The pick_place task is now blacklisted from being imported automatically by isaaclab_tasks and have to be imported manually by the script. - Bug fix (non-breaking change which fixes an issue) - This change requires a documentation update - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Kelly Guo <[email protected]> Co-authored-by: chengronglai <[email protected]> Co-authored-by: Kelly Guo <[email protected]>
kellyguo11
added a commit
that referenced
this pull request
Apr 23, 2025
This change prevents importing pink/dex-retargeting when using other IsaacLab scripts. * Change the import structure to only import ``pinocchio`` when ``pink-ik`` or ``dex-retargeting`` is being used. * This also solves for the problem that ``pink-ik`` and ``dex-retargeting`` are not supported in windows. * Removed ``isaacsim.robot_motion.lula`` and ``isaacsim.robot_motion.motion_generation`` from the default loaded Isaac Sim extensions and enable them only for RMPFlow * Moved pink ik action config to a separate file. * The pick_place task is now blacklisted from being imported automatically by isaaclab_tasks and have to be imported manually by the script. - Bug fix (non-breaking change which fixes an issue) - This change requires a documentation update - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Kelly Guo <[email protected]> Co-authored-by: chengronglai <[email protected]> Co-authored-by: Kelly Guo <[email protected]>
yrh012
pushed a commit
to aica-technology/isaac-lab
that referenced
this pull request
Jun 16, 2025
This change prevents importing pink/dex-retargeting when using other IsaacLab scripts. * Change the import structure to only import ``pinocchio`` when ``pink-ik`` or ``dex-retargeting`` is being used. * This also solves for the problem that ``pink-ik`` and ``dex-retargeting`` are not supported in windows. * Removed ``isaacsim.robot_motion.lula`` and ``isaacsim.robot_motion.motion_generation`` from the default loaded Isaac Sim extensions and enable them only for RMPFlow * Moved pink ik action config to a separate file. * The pick_place task is now blacklisted from being imported automatically by isaaclab_tasks and have to be imported manually by the script. - Bug fix (non-breaking change which fixes an issue) - This change requires a documentation update - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Kelly Guo <[email protected]> Co-authored-by: chengronglai <[email protected]> Co-authored-by: Kelly Guo <[email protected]>
Sanjay1911
pushed a commit
to Sanjay1911/IsaacLab
that referenced
this pull request
Jun 19, 2025
This change prevents importing pink/dex-retargeting when using other IsaacLab scripts. * Change the import structure to only import ``pinocchio`` when ``pink-ik`` or ``dex-retargeting`` is being used. * This also solves for the problem that ``pink-ik`` and ``dex-retargeting`` are not supported in windows. * Removed ``isaacsim.robot_motion.lula`` and ``isaacsim.robot_motion.motion_generation`` from the default loaded Isaac Sim extensions and enable them only for RMPFlow * Moved pink ik action config to a separate file. * The pick_place task is now blacklisted from being imported automatically by isaaclab_tasks and have to be imported manually by the script. - Bug fix (non-breaking change which fixes an issue) - This change requires a documentation update - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Kelly Guo <[email protected]> Co-authored-by: chengronglai <[email protected]> Co-authored-by: Kelly Guo <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
in
NonHolonomicAction.apply_actions()the velocity command was incorrectly namedself.joint_velinstead ofself._joint_vel_commandas initialized inNonHolonomicAction.__init__(). This causes an error when trying to instantiate the action config. I have made the correction and tested that it works.Type of change
Screenshots
Please attach before and after screenshots of the change if applicable.
Before:
After:
Checklist
pre-commitchecks with./orbit.sh --format./orbit.sh --testand they passconfig/extension.tomlfileCONTRIBUTORS.mdor my name already exists there