feat(galbot): apply Sim2Real actuator gains and controller gravity compensation - #33
Open
ruziniuuuuu wants to merge 1 commit into
Open
feat(galbot): apply Sim2Real actuator gains and controller gravity compensation#33ruziniuuuuu wants to merge 1 commit into
ruziniuuuuu wants to merge 1 commit into
Conversation
Replace the pass-through USD actuator config with system-identified gains from the galbot-one-golf-sim2real-v1 profile (synthnova/src/synthnova/robots/cfg/galbot_one_golf.toml): - Arm shoulder (j1–j2): stiffness 3500/3400 N·m/rad, effort ±180 N·m - Arm elbow (j3–j4): stiffness 1145/1143 N·m/rad, effort ±90 N·m - Arm wrist (j5–j7): stiffness 284–286 N·m/rad, effort ±30 N·m - Leg joints : per-joint stiffness/damping, effort 70–433 N·m - Head joints : stiffness 80 N·m/rad, effort ±4 N·m - Grippers : stiffness 77 N·m/rad, effort ±1.5 N·m Left/right arm values are symmetrised (averaged) and rounded to integers. Velocity limits are set from the profile for all body joints. Gravity compensation is enabled via disable_gravity=True on the articulation's rigid bodies, matching the real robot's controller-side compensation and consistent with RoboLab's franka_high_pd convention. Two new tests are added to test_galbot_configs.py: - test_gravity_compensation_is_enabled - test_actuator_gains_match_sim2real_profile Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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
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.
Summary
Replace the pass-through USD actuator configuration with system-identified gains from the
galbot-one-golf-sim2real-v1profile (synthnova/src/synthnova/robots/cfg/galbot_one_golf.toml) and enable gravity compensation.Changes
robolab/robots/galbot_golf.pyGravity compensation — added
disable_gravity=TruetoRigidBodyPropertiesCfg, matching the real robot's controller-side gravity compensation and consistent with RoboLab'sfranka_high_pdconvention.Actuator gains — replaced
stiffness=None / damping=None(inherit USD values) with Sim2Real system-identified parameters. Left/right arm values are symmetrised and rounded to integers. The previous arms/legs/head groups are refined into tiers that match the hardware torque ratings:legsheadarm_shoulderarm_elbowarm_wristgripperswheelstests/test_galbot_configs.pyTwo new contract tests:
test_gravity_compensation_is_enabled— assertsdisable_gravity is Truetest_actuator_gains_match_sim2real_profile— spot-checks stiffness, damping, and effort limits for shoulder / elbow / wrist / grippers🤖 Generated with Claude Code