Control Tutorials for MATLAB and Simulink (2024)

Run Live Script Version in MATLAB Online

Contents

  • Lead or phase-lead compensator using root locus
  • Lead or phase-lead compensator using frequency response
  • Lag or phase-lag compensator using root locus
  • Lag or phase-lag compensator using frequency response
  • Lead-lag compensator using either root locus or frequency response

Lead and lag compensators are used quite extensively in control. A lead compensator can increase the stability or speed of reponse of a system; a lag compensator can reduce (but not eliminate) the steady-state error. Depending on the effect desired, one or more lead and lag compensators may be used in various combinations.

Lead, lag, and lead/lag compensators are usually designed for a system in transfer function form. The conversions page explains how to convert a state-space model into transfer function form.

Lead or phase-lead compensator using root locus

A first-order lead compensator C(s) can be designed using the root locus. A lead compensator in root locus form is given by

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

where the magnitude of z0 is less than the magnitude of p0. A phase-lead compensator tends to shift the root locus toward to the left in the complex s-plane. This results in an improvement in the system's stability and an increase in its response speed.

How is this accomplished? If you recall finding the asymptotes of the root locus that lead to the zeros at infinity, the equation to determine the intersection of the asymptotes along the real axis is the following.

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

When a lead compensator is added to a system, the value of this intersection will be a larger negative number than it was before. The net number of zeros and poles will be same (one zero and one pole are added), but the added pole is a larger negative number than the added zero. Thus, the result of a lead compensator is that the asymptotes' intersection is moved further to the left in the complex plane, and the entire root locus is shifted to the left as well. This tends to increase the region of stability and the system's response speed.

In MATLAB a phase-lead compensator in root locus form is implemented using the following commands (where Kc, z, and p are defined).

 s = tf('s'); C_lead = Kc*(s-z)/(s-p); 

We can interconnect this compensator C(s) with a plant P(s) using the following code.

 sys_ol = C_lead*P; 

Lead or phase-lead compensator using frequency response

A first-order phase-lead compensator can also be designed using a frequency reponse approach. A lead compensator in frequency response form is given by the following.

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

Note that this is equivalent to the root locus form repeated below

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

with p =1 / T, z = 1 / aT, and Kc = a. In frequency response design, the phase-lead compensator adds positive phase to the system over the frequency range 1 / aT to 1 / T. A Bode plot of a phase-lead compensator C(s) has the following form.

Control Tutorials for MATLAB and Simulink (5)

The two corner frequencies are at 1 / aT and 1 / T; note the positive phase that is added to the system between these two frequencies. Depending on the value of a, the maximum added phase can be up to 90 degrees; if you need more than 90 degrees of phase, two lead compensators in series can be employed. The maximum amount of phase is added at the center frequency, which is calculated according to the following equation.

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

The equation which determines the maximum phase is given below.

(6)Control Tutorials for MATLAB and Simulink (7)

Additional positive phase increases the phase margin and thus increases the stability of the system. This type of compensator is designed by determining a from the amount of phase needed to satisfy the phase margin requirements, and determing T to place the added phase at the new gain-crossover frequency.

Another effect of the lead compensator can be seen in the magnitude plot. The lead compensator increases the gain of the system at high frequencies (the amount of this gain is equal to a). This can increase the crossover frequency, which will help to decrease the rise time and settling time of the system (but may amplify high frequency noise).

In MATLAB, a phase-lead compensator C(s) in frequency response form is implemented using the following code (where a and T are defined).

 s = tf('s'); C_lead = (1+a*T*s)/(1+T*s); 

We can then interconnect it with a plant P(s) using the following code.

 sys_ol = C_lead*P; 

Lag or phase-lag compensator using root locus

A first-order lag compensator C(s) can be designed using the root locus. A lag compensator in root locus form is given by the following.

(7)Control Tutorials for MATLAB and Simulink (8)

This has a similar form to a lead compensator, except now the magnitude of z0 is greater than the magnitude of p0 (and the additional gain Kc is omitted). A phase-lag compensator tends to shift the root locus to the right in the complex s-plane, which is undesirable. For this reason, the pole and zero of a lag compensator are often placed close together (usually near the origin) so that they do not appreciably change the transient response or stability characteristics of the system.

How does the lag controller shift the root locus to the right? Below is repeated the equation for finding where the asymptotes of the root locus intersect along the real axis.

(8)Control Tutorials for MATLAB and Simulink (9)

When a lag compensator is added to a system, the value of this intersection will be a smaller negative number than it was before. The net number of zeros and poles will be the same (one zero and one pole are added), but the added pole is a smaller negative number than the added zero. Thus, the result of a lag compensator is that the asymptotes' intersection is moved to the right in the complex plane, and the entire root locus is shifted to the right as well.

It was previously stated that a lag compensator is often designed to minimally change the transient response of system because it generally has a negative effect. If the phase-lag compensator is not supposed to change the transient response noticeably, what is it good for then? The answer is that a phase-lag compensator can improve the system's steady-state response. It works in the following manner. At high frequencies, the lag compensator will have unity gain. At low frequencies, the gain will be z0 / p0 which is greater than 1. This z0 / p0 factor will multiply the position, velocity, or acceleration constant (Kp, Kv, or Ka), and the steady-state error will thus decrease by the same factor.

In MATLAB, a phase-lag compensator C(s) in root locus form is implemented by employing the following code where it is again assumed that z and p are previously defined.

 s = tf('s'); C_lag = (s-z)/(s-p); 

We can also interconnect the compensator with a plant P(s) as follows.

 sys_ol = C_lag*P; 

Lag or phase-lag compensator using frequency response

A first-order phase-lag compensator also can be designed using a frequency response approach. A lag compensator in frequency response form is given by the following.

(9)Control Tutorials for MATLAB and Simulink (10)

The phase-lag compensator looks similar to phase-lead compensator, except that a is now less than 1. The main difference is that the lag compensator adds negative phase to the system over the specified frequency range, while a lead compensator adds positive phase over the specified frequency. A Bode plot of a phase-lag compensator has the following form.

Control Tutorials for MATLAB and Simulink (11)

The two corner frequencies are at 1 / T and 1 / aT. The main effect of the lag compensator is shown in the magnitude plot. The lag compensator adds gain at low frequencies; the magnitude of this gain is equal to a. The effect of this gain is to cause the steady-state error of the closed-loop system to be decreased by a factor of a. Because the gain of the lag compensator is unity at middle and high frequencies, the transient response and stability are generally not impacted much.

The side effect of the lag compensator is the negative phase that is added to the system between the two corner frequencies. Depending on the value a, up to -90 degrees of phase can be added. Care must be taken that the phase margin of the system with lag compensation is still satisfactory. This is generally achieved by placing the frequency of maximum phase lag, wm as calculated below, well below the new gain crossover frequency.

(10)Control Tutorials for MATLAB and Simulink (12)

In MATLAB, a phase-lag compensator C(s) in frequency response form is implemented using the following code, again assuming that a and T are defined.

 s = tf('s'); C_lag = (a*T*s+1)/(a*(T*s+1)); 

We can again interconnect the compensator with a plant P(s) as follows.

 sys_ol = C_lag*P; 

Lead-lag compensator using either root locus or frequency response

A lead-lag compensator combines the effects of a lead compensator with those of a lag compensator. The result is a system with improved transient response, stability, and steady-state error. To implement a lead-lag compensator, first design the lead compensator to achieve the desired transient response and stability, and then design a lag compensator to improve the steady-state response of the lead-compensated system.


Published with MATLAB® 9.2

Control Tutorials for MATLAB and Simulink (2024)
Top Articles
How to Read a Floor Plan with Dimensions
Générateur de noms Harry Potter: plus de 1 000 idées de noms |Imaginez la forêt
Walgreens Harry Edgemoor
English Bulldog Puppies For Sale Under 1000 In Florida
Restaurer Triple Vitrage
Ets Lake Fork Fishing Report
His Lost Lycan Luna Chapter 5
The Definitive Great Buildings Guide - Forge Of Empires Tips
Top Financial Advisors in the U.S.
Joe Gorga Zodiac Sign
Boat Jumping Female Otezla Commercial Actress
Our Facility
What Is A Good Estimate For 380 Of 60
Wisconsin Women's Volleyball Team Leaked Pictures
Idaho Harvest Statistics
Spider-Man: Across The Spider-Verse Showtimes Near Marcus Bay Park Cinema
Alfie Liebel
Ford F-350 Models Trim Levels and Packages
Scream Queens Parents Guide
1973 Coupe Comparo: HQ GTS 350 + XA Falcon GT + VH Charger E55 + Leyland Force 7V
Integer Division Matlab
Danielle Ranslow Obituary
Shoe Station Store Locator
Bento - A link in bio, but rich and beautiful.
Makemv Splunk
Hdmovie2 Sbs
FAQ's - KidCheck
2023 Ford Bronco Raptor for sale - Dallas, TX - craigslist
Afni Collections
Tracking every 2024 Trade Deadline deal
Mobile crane from the Netherlands, used mobile crane for sale from the Netherlands
Little Einsteins Transcript
Craigslist Texas Killeen
The Pretty Kitty Tanglewood
Craigslist Neworleans
Truckers Report Forums
October 31St Weather
Ewwwww Gif
New Gold Lee
Leatherwall Ll Classifieds
Cheetah Pitbull For Sale
140000 Kilometers To Miles
Urban Blight Crossword Clue
Thotsbook Com
فیلم گارد ساحلی زیرنویس فارسی بدون سانسور تاینی موویز
Unlock The Secrets Of "Skip The Game" Greensboro North Carolina
Florida Lottery Powerball Double Play
20 Mr. Miyagi Inspirational Quotes For Wisdom
Heat Wave and Summer Temperature Data for Oklahoma City, Oklahoma
Image Mate Orange County
Scholar Dollar Nmsu
Cbs Scores Mlb
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6342

Rating: 4.6 / 5 (66 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.