feat(galbot): apply Sim2Real actuator gains and controller gravity compensation - #33
Draft
ruziniuuuuu wants to merge 1 commit into
Draft
ruziniuuuuu 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>
ruziniuuuuu
marked this pull request as draft
September 18, 2026 13:23
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.
Apply the Galbot Golf Sim2Real actuator stiffness, damping, effort and velocity limits, and disable robot gravity to match the intended control setup. Wheels retain their USD drive properties.
Parameters come from SynthNova's
galbot-one-golf-sim2real-v1profile (src/synthnova/robots/cfg/galbot_one_golf.toml); left/right arm gains are averaged and rounded to integers.Draft: pending actuator configuration cleanup and runtime joint-tracking validation. Gravity will remain disabled.