Parameter for max translation speed in Goal: Drive Arc #425
Unanswered
gruedisueli
asked this question in
Questions
Replies: 2 comments 1 reply
-
The maximum speed of the robot depends on the safety mode as defined here: https://iroboteducation.github.io/create3_docs/api/safety/ (see "Maximum speed" section).
What are the values you are using? |
Beta Was this translation helpful? Give feedback.
0 replies
-
I override all safeties.
The values I used were 0.4 and 0.2 for the outer and inner, respectively.
…On Wed, Jul 12, 2023, 5:42 PM Justin Kearns ***@***.***> wrote:
The maximum speed of the robot depends on the safety mode as defined here:
https://iroboteducation.github.io/create3_docs/api/safety/ (see "Maximum
speed" section).
In default safety mode it is 0.306 m/s.
An example usage is here:
https://iroboteducation.github.io/create3_docs/api/drive-goals/
ros2 action send_goal /drive_arc irobot_create_msgs/action/DriveArc "{angle: 1.57,radius: 0.3,translate_direction: 1,max_translation_speed: 0.3}"
What are the values you are using?
—
Reply to this email directly, view it on GitHub
<#425 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AN54HV5HGZHG6LF2NEJWFDLXP4K4HANCNFSM6AAAAAA2IB5VZ4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
.com>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How are you connecting to your Create 3?
Wi-Fi (ROS 2)
Computer(s) Model(s) and Operating System(s)
Ubuntu 22.04.02LTS on Oracle VM
Which version of ROS 2 is installed on your computer?
Humble
Which firmware version is installed on your robot?
G.4.5
Which RMW is your robot running?
CycloneDDS
Does your robot have an assigned namespace? If so, please share.
maeve and dolores
Is the robot connected to a network? If so, what is the network type?
dedicated network for ros2
Are there multiple Create 3 robots connected to your network?
Yes
Is multicast enabled?
None
What is the Adapter Board's USB/BLE Toggle currently switched to?
USB
Describe your question.
I would like to know what the units are for the max translation speed parameter in the Goal DriveArc. It's stated in the documentation that this is meters per second, but my observations seem to indicate otherwise.
I performed an experiment where I to drove two iRobots in concentric circles. The smaller circle had radius R. The outer circle had radius 2(R). The total arc angle was 2(PI) radians. The direction is "Forward"/"1". The max translation speed for the iRobot in the smaller circle was V, the max speed for the outer iRobot was V(2).
My expectation with the above parameters would be that both robots would start and end the circle maneuver at the same time, or very close to it.
My observation is that the inner robot completes the circle in <50% the time of the outer one.
Is there something I'm missing with the parameter setup? Is there some nuance to what the translation speed is referring to that I'm missing?
Beta Was this translation helpful? Give feedback.
All reactions