Control Tutorials for MATLAB and Simulink (2024)

Key MATLAB commands used in this tutorial are: tf , feedback , step , rlocus

Related Tutorial Links

  • Intro to PID Control
  • Root Locus Activity

Related External Links

Contents

  • Adding a PID controller
  • Plotting the closed-loop response
  • Choosing the gains for the PID controller

From the main problem, the dynamic equations in transfer function form are the following:

(1)Control Tutorials for MATLAB and Simulink (1)

(2)Control Tutorials for MATLAB and Simulink (2)

where,

(3)Control Tutorials for MATLAB and Simulink (3)

and the system schematic is the following where F(s)G1(s) = G2(s).

Control Tutorials for MATLAB and Simulink (4)

For the original problem and the derivation of the above equations and schematic, please refer to the Suspension: System Modeling page.

We want to design a feedback controller so that when the road disturbance (W) is simulated by a unit step input, the output (X1-X2) has a settling time less than 5 seconds and an overshoot less than 5%. For example, when the bus runs onto a 10-cm step, the bus body will oscillate within a range of +/- 5 mm and will stop oscillating within 5 seconds.

The system model can be represented in MATLAB by creating a new m-file and entering the following commands (refer to the main problem for the details of getting those commands).

m1 = 2500;m2 = 320;k1 = 80000;k2 = 500000;b1 = 350;b2 = 15020;nump=[(m1+m2) b2 k2];denp=[(m1*m2) (m1*(b1+b2))+(m2*b1) (m1*(k1+k2))+(m2*k1)+(b1*b2) (b1*k2)+(b2*k1) k1*k2];G1=tf(nump,denp);num1=[-(m1*b2) -(m1*k2) 0 0];den1=[(m1*m2) (m1*(b1+b2))+(m2*b1) (m1*(k1+k2))+(m2*k1)+(b1*b2) (b1*k2)+(b2*k1) k1*k2];G2=tf(num1,den1);numf=num1;denf=nump;F=tf(numf,denf);

Adding a PID controller

Recall that the transfer function for a PID controller is:

(4)Control Tutorials for MATLAB and Simulink (5)

where Control Tutorials for MATLAB and Simulink (6) is the proportional gain, Control Tutorials for MATLAB and Simulink (7) is the integral gain, and Control Tutorials for MATLAB and Simulink (8) is the derivative gain. Let's assume that we will need all three of these gains in our controller. To begin, we might start with guessing a gain for each: Control Tutorials for MATLAB and Simulink (9)=208025, Control Tutorials for MATLAB and Simulink (10)=832100 and Control Tutorials for MATLAB and Simulink (11)=624075. This can be implemented into MATLAB by adding the following code into your m-file:

Kd = 208025;Kp = 832100;Ki = 624075;C = pid(Kp,Ki,Kd);

Now let's simulate the response of the system (the distance X1-X2) to a step disturbance on the road. From the schematic above we can find the transfer function from the road disturbance W to the output(X1-X2), and simulate:

sys_cl=F*feedback(G1,C);

Plotting the closed-loop response

Now we have created the closed-loop transfer function in MATLAB that will represent the plant, the disturbance, as well as the controller. Let's see what the closed-loop step response for this system looks like before we begin the control process. Keep in mind that we are going to use a 0.1-m step as our disturbance, to simulate this, all we need to do is to multiply sys_cl by 0.1. Add the following code to your m-file. You should see the response (X1-X2) to a step W like this:

t=0:0.05:5;step(0.1*sys_cl,t)title('Response to a 0.1-m Step under PID Control')

Control Tutorials for MATLAB and Simulink (12)

From the graph, the percent overshoot is 9mm, which is larger than the 5mm requirement, but the settling time is satisfied, less than 5 seconds. To choose the proper gain that yields reasonable output from the beginning, we start with choosing a pole and two zeros for PID controller. A pole of this controller must be at zero and one of the zeros has to be very close to the pole at the origin, at 1. The other zero, we will put further from the first zero, at 3, actually we can adjust the second-zero's position to get the system to fulfill the requirement. Add the following command in the m-file, so you can adjust the second-zero's location and choose the gain to have a rough idea what gain you should use for Control Tutorials for MATLAB and Simulink (13), Control Tutorials for MATLAB and Simulink (14), and Control Tutorials for MATLAB and Simulink (15).

z1=1;z2=3;p1=0;s = tf('s');C = ((s+z1)*(s+z2))/(s+p1);rlocus(C*G1)title('root locus with PID controller')

Control Tutorials for MATLAB and Simulink (16)

Add the code [k,poles]=rlocfind(C*G1) onto the end of your m-file to help you choose a specific loop gain. After running in the command window, go to the root locus plot and select a point near those indicated by the cross marks on the plot below.

Control Tutorials for MATLAB and Simulink (17)

After doing this, you should see the following output in the MATLAB command window.

Select a point in the graphics window selected_point = -4.0047 + 9.6694i k = 5.2714e+04 poles = 1.0e+02 * -2.1838 + 0.0000i -0.0415 + 0.0967i -0.0415 - 0.0967i -0.0670 + 0.0000i -0.0061 + 0.0000i 

Note that the values returned in your MATLAB command window may not be exactly the same, but should at least have the same order of magnitude.

We will explain the root locus method in more detail in the Suspension: Root Locus Controller Design page.

Choosing the gains for the PID controller

Now that we have the closed-loop transfer function, controlling the system is simply a matter of tuning the Control Tutorials for MATLAB and Simulink (18), Control Tutorials for MATLAB and Simulink (19), and Control Tutorials for MATLAB and Simulink (20) gains. From the figure above, we can see that the system has larger damping than required, but the settling time is very short. This response still doesn't satisfy the 5% overshoot requirement. As mentioned before, this can be rectified by adjusting the Control Tutorials for MATLAB and Simulink (21), Control Tutorials for MATLAB and Simulink (22) and Control Tutorials for MATLAB and Simulink (23) gains to obtain a better response. Let's increase Control Tutorials for MATLAB and Simulink (24), Control Tutorials for MATLAB and Simulink (25), and Control Tutorials for MATLAB and Simulink (26) by a factor of 2 to see what will happen. Go back to your m-file and multiply Control Tutorials for MATLAB and Simulink (27), Control Tutorials for MATLAB and Simulink (28), Control Tutorials for MATLAB and Simulink (29) by 2 and then rerun the program, you should get the following plot.

Kd=2*Kd;Kp=2*Kp;Ki=2*Ki;C=pid(Kp,Ki,Kd);sys_cl=F*feedback(G1,C);step(0.1*sys_cl,t)title('Response to a 0.1-m Step w/ High-Gain PID')

Control Tutorials for MATLAB and Simulink (30)

To compare this graph with the graph of low-gain PID controller, you can change the axis:

axis([0 5 -.01 .01])

Control Tutorials for MATLAB and Simulink (31)

Now we see that the percent overshoot and settling time meet the requirements of the system. The percent overshoot is about 5% of the input's amplitude and settling time is 2 seconds which is less than the 5 second requirement.

For this problem, it turns out that the PID design method adequately controls the system. This can be seen by looking at the root locus plot. Such a task can be achieved by simply changing only the gains of a PID controller. Feel free to play around with all three of the parameters, Control Tutorials for MATLAB and Simulink (32), Control Tutorials for MATLAB and Simulink (33), and Control Tutorials for MATLAB and Simulink (34), as we suggested, but you will most likely get the response to have either a large percent overshoot or a long settling time.


Published with MATLAB® 9.2

Control Tutorials for MATLAB and Simulink (2024)
Top Articles
eBay - Export from India | Become a global online seller
Holt euch den vollständigen eBay-Code-Rabatt ab: Hier gibt es das iPhone 13 unter 500 Euro
Academic Calendar Pbsc
Jody Plauche Wiki
Melissababyxo Cam
Equinox 63Rd Street Class Schedule Pdf
Big 12 Officiating Crew Assignments 2022
Cornell University Course Catalog
Public Agent.502
Kathy Carrack
2 værelses hus i Ejby
Stockton (California) – Travel guide at Wikivoyage
Who is Harriet Hageman, the Trump-backed candidate who beat Liz Cheney?
Ihop Logopedia
Maritime News Archives
Rogers Breece Obituaries
Southpaws Grill Menu
2024 Coachella Predictions
Wicked Local Plymouth Police Log 2023
Papa's Games Unblocked Games
Craigslist Truck
Bonduel Amish Auction 2023
Aussiebigdaddik
Used Golf Clubs On Craigslist
C.J. Stroud und Bryce Young: Zwei völlig unterschiedliche Geschichten
Elm Nychhc Org
Ohio State Football Wiki
Advance Auto Parts Near Me Open Now
Nyu Paralegal Program
Mary Lou Willey Connors Obituary
Maintenance Required Gear Selector Ecu
Lenscrafters Westchester Mall
Po Box 24410 Omaha Nebraska
Shauna's Art Studio Laurel Mississippi
Arapahoe Youth League Baseball
7148646793
Https://Gw.mybeacon.its.state.nc.us/App
The Abduction of Heather Teague
Anmed My Chart Login
9294027542
Amarillos (FRIED SWEET PLANTAINS) Recipe – Taste Of Cochin
Arcadian Crossword Puzzles
Adding Performance to Harley Davidson & Motorcycles is Easy with K&N
Fallen Avatar Mythic Solo
Meat Grinders At Menards
Texas Longhorns Soccer Schedule
John Deere Z355R Parts Diagram
Shiny Flowers Belinda
Waffle House Gift Card Cvs
The Complete Guide to Chicago O'Hare International Airport (ORD)
Bitlife Tyrone's
Mangadex.oeg
Latest Posts
Article information

Author: Saturnina Altenwerth DVM

Last Updated:

Views: 5593

Rating: 4.3 / 5 (64 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Saturnina Altenwerth DVM

Birthday: 1992-08-21

Address: Apt. 237 662 Haag Mills, East Verenaport, MO 57071-5493

Phone: +331850833384

Job: District Real-Estate Architect

Hobby: Skateboarding, Taxidermy, Air sports, Painting, Knife making, Letterboxing, Inline skating

Introduction: My name is Saturnina Altenwerth DVM, I am a witty, perfect, combative, beautiful, determined, fancy, determined person who loves writing and wants to share my knowledge and understanding with you.