@@ -8,17 +8,35 @@ use_gazebo: false # Whether the robot is started in a Gazebo simulation environm
88command_in_type : " unitless"
99scale :
1010 # Scale parameters are only used if command_in_type=="unitless"
11- linear : 0.5 # Max linear velocity. Meters per publish_period. Unit is [m/s]. Only used for Cartesian commands.
12- rotational : 0.35 # Max angular velocity. Rads per publish_period. Unit is [rad/s]. Only used for Cartesian commands.
11+ # linear: 0.5 # Max linear velocity. Meters per publish_period. Unit is [m/s]. Only used for Cartesian commands.
12+ # rotational: 0.35 # Max angular velocity. Rads per publish_period. Unit is [rad/s]. Only used for Cartesian commands.
1313 # Max joint angular/linear velocity. Rads or Meters per publish period. Only used for joint commands on joint_command_in_topic.
14- joint : 0.35 # ~ 20 deg/s
14+ # joint: 0.35 # ~ 20 deg/s
15+
16+ # For publlisnihg 25 msgs with 25Hz (for "Robot Limit 300W")
17+ # target: 2.0 m/s measured: 0.113m/s for publish_period 1/250
18+ # target: 1.0 m/s measured: 0.102 m/s for publish_period 1/250
19+ # target: 3.1516 rad/s measured: 0,302 rad/s for publish_period 1/250
20+ # target: 0.6 m/s measured: 0.054m/s for publish_period 1/250
21+ # target: 1.0 m/s measured: 0.052m/s for publish_period 1/500
22+ # target: 2.5 m/s measured: 0.068 m/s for publish_period 1/500
23+ # target: 5.0 m/s measured: 0.071 m/s for publish_period 1/500
24+ # For publlisnihg 25 msgs with 25Hz (for "Robot Limit 1000W")
25+ # target: 0.6 m/s measured: 0.048m/s for publish_period 1/250
26+ # target: 0.6 m/s measured: 0.032m/s for publish_period 1/500
27+ # target: 1.0 m/s measured: 0,096m/s for publish_period 1/250
28+ # target: 1.0 m/s measured: 0,053m/s for publish_period 1/500
29+ linear : 1.0
30+ rotational : 0.31416
31+ joint : 0.31416
32+
1533# This is a fudge factor to account for any latency in the system, e.g. network latency or poor low-level
1634# controller performance. It essentially increases the timestep when calculating the target pose, to move the target
1735# pose farther away. [seconds]
18- system_latency_compensation : 0.04
36+ system_latency_compensation : 0.0
1937
2038# # Properties of outgoing commands
21- publish_period : 0.004 # 1/Nominal publish rate [seconds]
39+ publish_period : 0.002 # 1/Nominal publish rate [seconds]
2240low_latency_mode : false # Set this to true to publish as soon as an incoming Twist command is received (publish_period is ignored)
2341
2442# What type of topic does your robot driver expect?
0 commit comments