Commit b19dd7e 1 parent 1327dd8 commit b19dd7e Copy full SHA for b19dd7e
File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -361,6 +361,12 @@ def main():
361
361
+ "idea if the initial parameters contain random values which can occur when "
362
362
+ "some of the parameters are unidentifiable." ,
363
363
)
364
+ parser .add_argument (
365
+ "--known_max_mass" ,
366
+ type = float ,
367
+ help = "The known maximum mass of the robot. This is used to set the upper bound "
368
+ + "for the combined mass parameters." ,
369
+ )
364
370
parser .add_argument (
365
371
"--process_joint_data" ,
366
372
action = "store_true" ,
@@ -481,6 +487,7 @@ def main():
481
487
initial_param_path = args .initial_param_path
482
488
output_param_path = args .output_param_path
483
489
use_initial_params_for_regularization = args .use_initial_params_for_regularization
490
+ known_max_mass = args .known_max_mass
484
491
do_process_joint_data = args .process_joint_data
485
492
num_endpoints_to_remove = args .num_endpoints_to_remove
486
493
compute_velocities = not args .not_compute_velocities
@@ -775,6 +782,7 @@ def main():
775
782
identify_viscous_friction = identify_viscous_friction ,
776
783
identify_dynamic_dry_friction = identify_dynamic_dry_friction ,
777
784
payload_only = payload_only ,
785
+ known_max_mass = known_max_mass ,
778
786
solver_kPrintToConsole = args .kPrintToConsole ,
779
787
)
780
788
if result .is_success ():
You can’t perform that action at this time.
0 commit comments