Skip to content

Commit 8f9cd8a

Browse files
committed
Change default params
1 parent 45c53e4 commit 8f9cd8a

3 files changed

+12
-12
lines changed

scripts/identify_grasped_object_payload.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def main():
352352
parser.add_argument(
353353
"--vel_cutoff_freq_hz",
354354
type=float,
355-
default=6.0,
355+
default=5.6,
356356
help="The cutoff frequency of the filter for the joint velocities. Only used if "
357357
+ "`--process_joint_data` is set.",
358358
)
@@ -366,7 +366,7 @@ def main():
366366
parser.add_argument(
367367
"--acc_cutoff_freq_hz",
368368
type=float,
369-
default=30.0,
369+
default=4.2,
370370
help="The cutoff frequency of the filter for the joint accelerations. Only used "
371371
+ "if `--process_joint_data` is set.",
372372
)
@@ -380,7 +380,7 @@ def main():
380380
parser.add_argument(
381381
"--torque_cutoff_freq_hz",
382382
type=float,
383-
default=5.5,
383+
default=4.0,
384384
help="The cutoff frequency of the filter for the joint torques. Only used if "
385385
+ "`--process_joint_data` is set.",
386386
)
@@ -397,7 +397,7 @@ def main():
397397
parser.add_argument(
398398
"--time_to_cutoff_at_beginning_s",
399399
type=float,
400-
default=2.0,
400+
default=0.0,
401401
help="The time to cutoff at the beginning of the data.",
402402
)
403403
parser.add_argument(
@@ -631,7 +631,7 @@ def main():
631631
M_PPayloadcom_Payload = M_PPayload_Payload.Shift(M_PPayload_Payload.get_com())
632632
logging.info(
633633
"Difference in the last link's parameters (payload parameters). "
634-
+ "Note that these are in specified payload frame:"
634+
+ "Note that these are in identified object frame:"
635635
)
636636
payload_mass = M_PPayloadcom_Payload.get_mass()
637637
logging.info(f"Payload mass: {payload_mass}")

scripts/identify_robot_at_multiple_gripper_oppenings.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def main():
8181
parser.add_argument(
8282
"--vel_cutoff_freq_hz",
8383
type=float,
84-
default=6.0,
84+
default=5.6,
8585
help="The cutoff frequency of the filter for the joint velocities. Only used if "
8686
+ "`--process_joint_data` is set.",
8787
)
@@ -95,7 +95,7 @@ def main():
9595
parser.add_argument(
9696
"--acc_cutoff_freq_hz",
9797
type=float,
98-
default=15.0,
98+
default=4.2,
9999
help="The cutoff frequency of the filter for the joint accelerations. Only used "
100100
+ "if `--process_joint_data` is set.",
101101
)
@@ -109,7 +109,7 @@ def main():
109109
parser.add_argument(
110110
"--torque_cutoff_freq_hz",
111111
type=float,
112-
default=5.5,
112+
default=4.0,
113113
help="The cutoff frequency of the filter for the joint torques. Only used if "
114114
+ "`--process_joint_data` is set.",
115115
)
@@ -122,7 +122,7 @@ def main():
122122
parser.add_argument(
123123
"--time_to_cutoff_at_beginning_s",
124124
type=float,
125-
default=2.0,
125+
default=0.0,
126126
help="The time to cutoff at the beginning of the data.",
127127
)
128128
parser.add_argument(

scripts/solve_inertial_param_sdp.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ def main():
437437
parser.add_argument(
438438
"--vel_cutoff_freq_hz",
439439
type=float,
440-
default=6.0,
440+
default=5.6,
441441
help="The cutoff frequency of the filter for the joint velocities. Only used if "
442442
+ "`--process_joint_data` is set.",
443443
)
@@ -451,7 +451,7 @@ def main():
451451
parser.add_argument(
452452
"--acc_cutoff_freq_hz",
453453
type=float,
454-
default=30.0,
454+
default=4.2,
455455
help="The cutoff frequency of the filter for the joint accelerations. Only used "
456456
+ "if `--process_joint_data` is set.",
457457
)
@@ -465,7 +465,7 @@ def main():
465465
parser.add_argument(
466466
"--torque_cutoff_freq_hz",
467467
type=float,
468-
default=5.5,
468+
default=4.0,
469469
help="The cutoff frequency of the filter for the joint torques. Only used if "
470470
+ "`--process_joint_data` is set.",
471471
)

0 commit comments

Comments
 (0)