-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #548 from Abhiram824/demo_fixes
Demo fixes
- Loading branch information
Showing
14 changed files
with
204 additions
and
59 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type" : "IK_POSE", | ||
"ik_pos_limit": 0.02, | ||
"ik_ori_limit": 0.05, | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
15 changes: 15 additions & 0 deletions
15
robosuite/controllers/config/default/parts/joint_position.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type": "JOINT_POSITION", | ||
"input_max": 1, | ||
"input_min": -1, | ||
"output_max": 0.05, | ||
"output_min": -0.05, | ||
"kp": 50, | ||
"damping_ratio": 1, | ||
"impedance_mode": "fixed", | ||
"kp_limits": [0, 300], | ||
"damping_ratio_limits": [0, 10], | ||
"qpos_limits": null, | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
10 changes: 10 additions & 0 deletions
10
robosuite/controllers/config/default/parts/joint_torque.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "JOINT_TORQUE", | ||
"input_max": 1, | ||
"input_min": -1, | ||
"output_max": 0.1, | ||
"output_min": -0.1, | ||
"torque_limits": null, | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
11 changes: 11 additions & 0 deletions
11
robosuite/controllers/config/default/parts/joint_velocity.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type" : "JOINT_VELOCITY", | ||
"input_max": 1, | ||
"input_min": -1, | ||
"output_max": 0.5, | ||
"output_min": -0.5, | ||
"kp": 3.0, | ||
"velocity_limits": [-1,1], | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "OSC_POSE", | ||
"input_max": 1, | ||
"input_min": -1, | ||
"output_max": [0.05, 0.05, 0.05, 0.5, 0.5, 0.5], | ||
"output_min": [-0.05, -0.05, -0.05, -0.5, -0.5, -0.5], | ||
"kp": 150, | ||
"damping_ratio": 1, | ||
"impedance_mode": "fixed", | ||
"kp_limits": [0, 300], | ||
"damping_ratio_limits": [0, 10], | ||
"position_limits": null, | ||
"orientation_limits": null, | ||
"uncouple_pos_ori": true, | ||
"control_delta": true, | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
16 changes: 16 additions & 0 deletions
16
robosuite/controllers/config/default/parts/osc_position.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"type": "OSC_POSITION", | ||
"input_max": 1, | ||
"input_min": -1, | ||
"output_max": [0.05, 0.05, 0.05], | ||
"output_min": [-0.05, -0.05, -0.05], | ||
"kp": 150, | ||
"damping_ratio": 1, | ||
"impedance_mode": "fixed", | ||
"kp_limits": [0, 300], | ||
"damping_ratio_limits": [0, 10], | ||
"position_limits": null, | ||
"control_delta": true, | ||
"interpolation": null, | ||
"ramp_ratio": 0.2 | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.