![]() |
Move Robot a set angle
Hi,
In order to align my team's robot to the target, we need to move the robot a certain number of degrees. We have 4 Motor Drive with encoders on a cimple gearbox. We have already written the code to figure out how many degrees to move, but we cannot figure out how that corresponds to wheel movement. I would assume that it is dependent on wheel size and robot size. Wheels: 8" Diameter, 25.1327412" circumference http://www.andymark.com/product-p/am-0569.htm Robot: I am unsure as to how wide the robot is, because I don't have it in front of me right now, but an explanation of how to use the width (If necessary) would be helpful. My question is, How do I figure out how much to move the wheels? |
Re: Move Robot a set angle
You'd need to know the behavior of the wheels while your robot turns, then use that model to determine the amount of turns, then use that to count the number of ticks while driving in a turning motion.
It might be easier to use a gyro sensor. |
Re: Move Robot a set angle
Quote:
But seriously, you could use a gyro (as the previous poster suggested), or you could do some simple experiments and measure how much vehicle rotation you get vs how much the wheels turned. Do that under various conditions (like turning speed) and either fit a model to the data or prepare a lookup table. Make sure you use the same carpet as competition when running these tests, and with the competition weight. |
Re: Move Robot a set angle
Man,
If you turn your robot using just one side of your drive train, you can calculate the arc of the circle by counting the enconder pulses. The radius will be the distance between both side of drive train. |
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Never lol.
But I guess that could be an solution. The arc perimeter is 2*3,1415*R / angle You can measure your linear distance (perimeter circle) with an encoder. |
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Please, give us an feedback if this works after you finish!!
|
Re: Move Robot a set angle
Quote:
Code:
You can measure your linear distance (perimeter circle) with an encoder. |
Re: Move Robot a set angle
Like many others have said, a gyro would be the best bet. You can use them for more than just positioning too. We use them to keep us driving in straight lines since doing that based on encoders alone is near impossible. You also may consider a range finder in addition to help your robot know where it is in relation to the field for greater accuracy. Just remember to have your gyro automatically recalibrate itself at the begging of autonomous for best results as they tend to wander over a course of time.
|
Re: Move Robot a set angle
2*3,1415 = 2*PI = 360 radians = angle ( in radians )
So 360 radians * R = angle (entire circle)*R 360 radians = Full Perimeter x radians = arc Perimeter So Arc Perimeter= 2*Pi*R / angle wished ( in radians ) And, When I say "arc perimeter" I mean about the linear distance of This segment, so the encoder could return this measurement I guess... |
Re: Move Robot a set angle
http://www-personal.umich.edu/~johan...s/pos96rep.pdf
This link points to a document that explains how to do localization. The PDF pages 19 & 20 show the formula to convert wheel movement into position. For this to work your robot would need to pivot about the center wheels. If they are dropped some this often happens. This isn't the total solution you are looking for but I think it will get you moving in the right direction. If you have a gyro there is some default code that does all of this for you. Look in the targeting example code. -Hugh |
Re: Move Robot a set angle
Quote:
1) There are not 360 radians in a full perimeter. 2) Look at your formula. It says that as the angle_wished gets larger, the arc_perimeter gets smaller. |
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
We had a lot of success a few years ago with a gyro, I'd recommend it.
|
Re: Move Robot a set angle
1 Attachment(s)
I'd recommend the gyro as well. We found the provided gyro sensors to be very responsive and accurate. Easy to program too!
Using a gyro, it would be pretty easy to set up a PID loop like in the attached image. |
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
What do you mean by "continuous" process variables? This should get the current gyro heading every time the loop runs and compare that to the setpoint. (And this is just a 2-minute example anyhow...)
|
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Ah, I see what you mean. I didn't say this was a perfect example, I just wanted to quickly demonstrate how one could zero in on an angle using a gyro and PID.
|
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Quote:
On the other hand, if I wanted to turn the robot to an absolute heading, I would probably...you know what, I'm not sure. All my ideas thus far would eliminate the problem of whirling in circles when going from, say, 2520 degrees to 45. But all my ideas would not fix the problem of going from 359 to 0. |
Re: Move Robot a set angle
You could use a PID loop with the x-offset in pixels as the input of the image, and have the output move the wheels.
|
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Quote:
Mod or Quotient and Remainder will collapse them into those represented in a single circle. As you noted, there are still two useful solutions to your 359 move to 0. You can move 359 degrees one direction or 1 degree the other. You usually want to select the movement with the smaller absolute value. So you need mod, and you need to consider both the positive movement and negative movement. For crab systems or turrets, there is usually a further restriction that may invalidate one of the solutions -- cables only stretch and twist by so much. I'd highly recommend you develop your input filter as a separate VI and test it for the full range of values it is to deal with. Often it is useful to plot the output versus input and sweep across the range of values at some resolution. Greg McKaskle |
Re: Move Robot a set angle
Thanks for the advice! Granted, I'm not the one who started the thread, but I hope the info is useful to people who are attempting to do this.
|
Re: Move Robot a set angle
2 Attachment(s)
Well, compwiztobe saves the day again with this awesome VI. I worked with him to get this written up; it takes a "continuous" gyro input and computes the appropriate setpoint to use in a PID loop. I've attached the VI and an example image.
|
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
To add to Ether's recommendation.
I was teaching how to use encoders and applying geometry and trigonometry. One of the tasks I had them figure out is to make the robot turn a certain angle using left and right encoders. They were successful, but due to the slip-n-slide nature of your drive train, it really is by chance (aka lottery and moon phase). It was within about 10˚ of where it should have been. Of course, a better solution (as also mentioned) would be to use the included gyro. It's easy to wire (have a spare PWM Cable?), easy to program (They have an example on how to use it), and easy to use (output is already in degrees). |
Re: Move Robot a set angle
Quote:
I've got little confused before. Now I understood why what I proposed wouldn't work. Sorry. |
Re: Move Robot a set angle
We came up with an algorithm to get heading based of of 2 wheels (encoders) by using an arc tangent. basically, you integrate the encoder to get your left and righ distance. subract the greater distance from the lesser distance and that is your arc length. then knwong the space between the wheels you can calculate the inverse arc tangent of your arc/wheel spacing. I however cannot confirm the acuracy of this system since it has not been fully tested and will not be fully tested as we no longer need to do this.
|
Re: Move Robot a set angle
Quote:
The problem arises in the fact that one "tick" of the encoder doesn't necessarily equate to the wheel turning any distance, because the wheel will slip. It might give you a good estimate though, and that is definitely a good exercise to have students do, it teaches programming. math, and realistic robot behaviors. |
Re: Move Robot a set angle
Here's the screenshot of our VI:
![]() |
Re: Move Robot a set angle
Quote:
The heading is the angular offset relative to the starting position. https://github.com/jacob9706/HighTek...adReckoner.cpp |
Re: Move Robot a set angle
Quote:
http://www.chiefdelphi.com/forums/sh...21&postcount=8 |
Re: Move Robot a set angle
Quote:
I can personally guarantee that this VI was written as follows: Mentor's brain->messy whiteboard->VI. It's original! |
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Quote:
|
Re: Move Robot a set angle
Quote:
Now there is a solution for those who like labview and those who like a typed language! Also it looks like your link was for a gyro. Mine was for an encoder on each drive wheel. (http://www.chiefdelphi.com/forums/sh...21&postcount=8) |
| All times are GMT -5. The time now is 03:55. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi