Presentation is loading. Please wait.

Presentation is loading. Please wait.

Automatic Control Mike Robinson. You can measure the distance from the RC car to some target. What could your program do to keep the car as close to the.

Similar presentations


Presentation on theme: "Automatic Control Mike Robinson. You can measure the distance from the RC car to some target. What could your program do to keep the car as close to the."— Presentation transcript:

1 Automatic Control Mike Robinson

2 You can measure the distance from the RC car to some target. What could your program do to keep the car as close to the target as possible?

3 Proportional control Error = target position – current position kp = proportional gain Duty cycle = kp*error

4 Think back to your vibrations class. What does the proportional response look like? Why is this not surprising? What could we do to reduce the oscillations we see?

5 Proportional control F X m

6 Proportional + Derivative control error = target position – current position derivative = (error – past error)/change in time kp = proportional gain kd = derivative gain Duty cycle = kp*error + kd*derivative

7 Why has adding derivative control made the car more jittery?

8 D = Derivative, D = Danger! Beware of noise when you are taking a numerical derivative

9 What would happen if we only had derivative control? Would the car still move to the target? Would the control do anything noticeable?

10 What could we add to get rid of the errors in position at steady state?

11 Proportional + Integral + Derivative control error = target position – current position derivative = (error – past error)/change in time integral = past error + error* change in time kp = proportional gain ki = integral gain kd = derivative gain Duty cycle = kp*error+ki*integral+kd*derivative

12 What would happen if we only had integral control?

13 A few words about commenting //Code for lab 3 int input = 0; //Declare variable input int inDist = 0; //Declare variable inDist /* This code reads an analog voltage from an ultrasonic sensor, converts the voltage to a distance in centimeters and prints the distance to the serial monitor Circuit: Connect +5 and ground to sensor Connect analog output from sensor to pin A0 Last edit: MDR 2/11/13 */ int ultrasonicPin = 0; //Analog input pin for ultrasonic sensor int ultrasonicDist = 0; //distance measurement in centimeters BADGOOD

14 Preview of this weeks lab +5V Motor

15 Preview of this weeks lab +5V Motor resistance Motor inductance


Download ppt "Automatic Control Mike Robinson. You can measure the distance from the RC car to some target. What could your program do to keep the car as close to the."

Similar presentations


Ads by Google