|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||||
|
|||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Amazing as always.
I count 5 control loops minimum to put a ball in the goal? |
|
#2
|
|||
|
|||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Depends on how you count them
![]() The same loop runs on the left and right side of the shooter. They are only coupled in software. The control loop to run the shoulder and shooter angle is a 6 state MIMO (multiple input, multiple output) controller. The intake loop is separate. Then, there is the MIMO drivetrain loop being fed with angles by the camera. So, yea, 5. A pair of connected linkages (driven by miniature pistons). |
|
#3
|
|||||
|
|||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
The first 4 states are obvious: main arm position and speed, shooter mini-arm position and speed. What are the other two? How'd you go about tuning that? With that level of complexity, I imagine you had to go to model-based control? |
|
#4
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
971's made a really cool robot as usual, I'm hoping to see it in person soon! |
|
#5
|
|||
|
|||
|
Re: FRC971 Spartan Robotics 2016 Release Video
How much of this robot was made on your in house CNC router? Great looking robot by the way
|
|
#6
|
|||||
|
|||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
|
|
#7
|
|||
|
|||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Once you get the hang of it, I find it to let us do cooler stuff than non-model based controls. We plot things and try to figure out which terms have errors in them to help debug it.The states are: [shoulder position; shoulder velocity; shooter position (relative to the base), shooter velocity (relative to the base), shoulder voltage error, shooter voltage error] The shooter is connected to the superstructure, but there is a coordinate transformation to have the states be relative to the ground. This gives us better control over what we actually care about. The voltage errors are what we use instead of integral control. This lets the kalman filter learn the difference between what the motor is being asked to do and what actually is achieved, and lets us compensate for it. If you work the math out volts -> force. |
|
#8
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
I have a few questions about your control. 1.I have read about your delta-u controller and I am not sure if I understood it correctly and I would like to know if i got it right. You have 3 states on your state space controller which include position , velocity and error voltage. you model it as (dx/dt) = Ax + Bu and u is the rate of change of voltage. Then you use pole placement to find the K matrix and then in your controller you set u to be -Kx. Then you estimate the state from position using an observer. you use an integrator for u and command the motors with it. To the error voltage state you feed in the difference between the estimated voltage from the observer and the integrated u commands. 2.Will the delta-u controller work the same if i will command the motors with u and not the integral of it and instead use the integral voltage error as state? why did you choose this way for the controller and not another form? 3.Is the delta-u controller in the end a linear combination of position error, velocity error and voltage error? 4.Why did you use Kalman filter instead of a regular observer? How much better was it in comparison to a regular observer? 5.How did you tune the Q and R matrices in the kalman filter? 6.How do you tune the parameters that transfrom the motion profile to the feed-forward you can feed to your motors? 7.How did you create 2 dimensional trajectories for your robot during auto? 8.How do you sync multiple trajectories in the auto period? for example how did you make the arm of your robot go up after crossing a defense? Thank you very much! ![]() |
|
#9
|
|||||||
|
|||||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Delta-U won't work if you command the motors with U, since your model doesn't match your plant (off by an integral). I've recently switched formulations to what we used this and last year, and I think the new formulation is easier to understand. If you have an un-augmented plant dx/dt = Ax + Bu, you can augment it by adding a "voltage error state". d[x; voltage_error]/dt = [A, B; 0, 0] x + [B; 0] u You then design the controller to control the original Ax + Bu (u =K * (R - X), design an observer to observe the augmented X, and then use a controller which is really [K, 1]. We switched over last year because it was easier to think about the new controller. In the end, both it and Delta U controllers will do the same thing. Quote:
Quote:
Honestly, I end up tuning it one way and then looking at the poles directly at the end to see how the tuning affected the results. Quote:
Quote:
The equation to minimize is: (B * U - (R(n+1) - A R(n)))^T * Q * (B * U - (R(n+1) - A R(n))) This means that you have 3 goals running around. The un-profiled goal, the profiled goal and the R that the feed-forwards is asking you to go to. I'd recommend you read the code to see how we kept track of it all, and I'm happy to answer questions from there. The end result was that our model defined the feed-forwards constants, so it was free We also were able to gain schedule the feed-forwards terms for free as well.FYI, this was the first year that we did feed-forwards. Before, we just relied on the controllers compensating. You can see it in some of the moves in the 2015 robot where it'll try to do a horizontal move, but end up with a steady state offset while moving due to the lack of feed-forwards. Quote:
Quote:
Awesome questions, keep them coming! I love this stuff. |
|
#10
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Are the A and B matrices here the same as in this pdf? https://www.chiefdelphi.com/forums/a...1&d=1419983380 Quote:
u = constant * integral of position error + constant * integral of velocity error + constant * integral of voltage error Isn't that a PI control + integral control of the voltage? This controller as far as I know should have integral windup. What am I missing? Quote:
This is really smart! I want to make sure I got it, Q is weight matrix and you are looking for the u vector to minimize the expression? In which way are you minimizing it? My current Idea is to set the derivative of the expression to zero and solve for u. Is that correct? Did you get to this expression by claiming that R(n+1) = AR(n) + Bu where u is the correct feed forward? Can you explain how did you observe the voltage? Quote:
Also how does your students understand this paper? There are lot of things that needs to be known in order the understand it. Who teaches your students all this stuff? My team don't have any control's mentor and we are not sure if to move to model based control or not. Our main problem with it is that there are a lot of things that need to be taught and it's very hard to maintain the knowledge if we don't have any mentor that knows this. Do you have any advice? Thank you very much! |
|
#11
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Quote:
The trick is that the integrator is inside the observer, not the controller. The controller may be commanding 0 volts, but if the observer is observing motion where it shouldn't be, it will estimate that voltage is being applied. This means that the third term will start to integrate the commanded voltage to compensate. If the observer is observing the correct applied voltage, it won't do that. You can shot this in simulation a lot easier than you can reason about it. That's one of the reasons I switched to the new controller formulation with a direct voltage error estimate. I could think about it easier. Quote:
That is the correct equation, nice! You then want to drive R to be at the profile as fast as possible. You can mathematically prove that the observer can observe the voltage as long as you tune it correctly. This is called observability, and can be calculated from some matrix products given A and C. For most controls people, that is enough of an explanation ![]() Intuitively, you can think of the observer estimating where the next sensor reading should be, measuring what it got, and then attributing the error to some amount of error in each state. So, if the position is always reading higher than expected, it will slowly squeeze the error into the voltage error term, where it will finally influence the model to not always read high anymore. You'll then have a pretty good estimate of the voltage required to do what you are currently doing. Quote:
We have a small number of students who get really involved in the controls on 971. Some years are better than others, but that's how this type of thing goes. There is a lot of software on a robot that isn't controls. I'm going to see if the paper actually gets good results, and then work to involve students to see if we can fix some of the shortcomings with the model that one of the examples in the paper uses and help make improvements. I think that'll let me simplify the concept somewhat for them and get them playing around with the algorithm. I've yet to try to involve students in something this mathematically challenging, so I'll know more once I've pulled it off... I mostly mention the paper as something fun that you can do with controls in this context. When I get the proper amount of interest and commitment, I sit down with the student and spend a significant amount of time teaching them how and why state space controllers work. I like to do it by rederiving some of the math to help demystify it, and having them work through examples. I've had students take that knowledge pretty far and do some pretty cool things with it. Teaching someone something this tricky is a lot of work. We tend to have about 1 student every year actually take the time to succeed. Sometimes more, sometimes less. Doing model based controls without good help can be tricky. I honestly recommend most of the time to focus on writing test cases with simulations with more simple controllers (PID, for example) before you then start looking at model based controls. This gets you ready for what you need to do for more complicated controllers, and if you were to stop there having learned dependency injection and testing, that would already be an enormous success. The issue is that most of this stuff is upper division college level material, and is sometimes graduate level material. Take a subsystem on your robot, and try to write a model based controller for it over the off-season. |
|
#12
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
acceleration = a * velocity + b * (voltage error) + b * u, where a and b are constants. I am a bit confused about why this is true because the voltage error is in volts and u is volts/seconds so you are adding numbers with different units. Quote:
u = constant * position error + constant * velocity error + constant * integral of voltage error Maybe there is a problem with velocity error part here but I still don't understand how there won't be an integral windup when you have integral of position error in your controller. What am I missing? Also I saw you are using moment of inertia of what being spun in your model, What units is it and how can I find it? Quote:
I was wondering about how the delta-u controller works when the u command get's higher than 12 volts, because then you can't control the rate of change of the voltage anymore. Thank you so much! Your answers helped my team and me a lot! ![]() |
|
#13
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Quote:
u = Kp * x + Kv * v + voltage_error So, if torque_error = 0 (the model is behaving as expected), then you don't add anything. Ask again if I read too fast. Quote:
Quote:
To solve that all correctly, you'll want to use a Model Predictive Controller. They are able to actually take into account saturation correctly. Unfortunately, they aren't easy to work with. We haven't deployed one yet to our robot. (Go read up on them a bit. They are super cool That was either one of, or my favorite class at college.)It's been another busy week. Sorry for taking so long. I started a reply a week ago and couldn't find time to finish it. |
|
#14
|
||||
|
||||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
u = (B^T *Q*B)^-1 * (r(n+1)^T - r(n)^T * A^T)*Q*B Is that correct? Last edited by ranlevinstein : 16-06-2016 at 16:16. Reason: Forgot to put transpose in the beginning of the expression. |
|
#15
|
|||
|
|||
|
Re: FRC971 Spartan Robotics 2016 Release Video
Quote:
Code:
def TwoStateFeedForwards(B, Q):
"""Computes the feed forwards constant for a 2 state controller.
This will take the form U = Kff * (R(n + 1) - A * R(n)), where Kff is the
feed-forwards constant. It is important that Kff is *only* computed off
the goal and not the feed back terms.
Args:
B: numpy.Matrix[num_states, num_inputs] The B matrix.
Q: numpy.Matrix[num_states, num_states] The Q (cost) matrix.
Returns:
numpy.Matrix[num_inputs, num_states]
"""
# We want to find the optimal U such that we minimize the tracking cost.
# This means that we want to minimize
# (B * U - (R(n+1) - A R(n)))^T * Q * (B * U - (R(n+1) - A R(n)))
# TODO(austin): This doesn't take into account the cost of U
return numpy.linalg.inv(B.T * Q * B) * B.T * Q.T
![]() |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|