SlideShare une entreprise Scribd logo
1  sur  13
Presented by:
Guddu Ali
U.I.D: K10990
Mechanical
TOPIC
LEAD COMPENSATOR
Presented to
Mr. SOMESH
CHATURVEDI
Assistant professor of electrical department
CONTENTS:
1. Introduction
2. Compensator
3. Design of phase-lead compensators using bode plot method
4. Response of phase-lead compensators
5. Design uncompensated and compensated systems
6. Response of uncompensated and compensated systems
7. Step response of uncompensated and compensated
system
8. Uncompensated and compensated systems due to
unit ramp input and their response
9. Application
INTRODUCTION
Lead compensator:
 A lead compensator is a component in a control system that
improves an undesirable frequency response in a feedback and
control system. It is a fundamental building block in classical
control theory.
with |z| < |p|. That is, zero closer to origin than pole
COMPENSATOR
 Using root locus techniques, we have seen how the pole
positions of a closed loop can be adjusted by varying a
parameter
 What happens if we are unable to obtain that performance
that we want by doing this?
 Ask ourselves whether this is really the performance that
we want
 Ask whether we can change the system, say by buying
different components
 Seek to compensate for the undesirable aspects of the
process
DESIGNOFPHASE-LEADCOMPENSATORSUSING
BODEPLOTMETHOD
 MATLAB CODING:
clear all;
wm = 4.5; % gain-crossover frequency
alpha = 0.3; % phase-lead compensator parameter
T = 1/wm/sqrt(alpha); % phase-lead compensator time constant
K = 10; % DC compensator gain
% Phase-lead compensator C(s)
cnum = K*[T 1];
cden = [T*alpha 1];
% Open-loop sys G(s)
gnum = [1];
gden = [1 1 0];
% Unity-Gain Feedback Loop H(s)
hnum = [1];
hden = [1];
% Open-loop sys C(s)*G(s)
numo = conv(cnum,gnum);
deno = conv(cden,gden);
% Closed-loop sys
[gnumc,gdenc] = feedback(K*gnum,gden,hnum,hden,-1);
[numc,denc] = feedback(numo,deno,hnum,hden,-1);
bode(cnum,cden);
RESPONSE
Frequency (rad/sec)
Phase(deg);Magnitude(dB)
Bode Diagrams
20
25
30
10
-1
10
0
10
1
10
2
10
20
30
Bode plot of phase-lead compensator
 sC
.
DESIGN UNCOMPENSATEDAND
COMPENSATED SYSTEMS
sys1 = tf(K*gnum,gden);
sys2 = tf(numo,deno);
[mag1,ph1,w]=bode(K*gnum,gden,logspace(-1,2,500));
[mag2,ph2,w]=bode(numo,deno,logspace(-1,2,500));
subplot(211); semilogx(w,20*log10(mag1),'r',
w,20*log10(mag2),'b');
title('Bode Diagrams'); ylabel('Magnitude (dB)');
legend('uncompensated','compensated', -1);
subplot(212); semilogx(w,ph1,'r', w,ph2,'b');
ylabel('Phase (deg)'); xlabel('Frequency (rad/sec)');
legend('uncompensated','compensated', -1);
MATLAB CODING
RESPONSE
10
-1
10
0
10
1
10
2
-100
-50
0
50
Bode Diagrams
Magnitude(dB)
uncompensated
compensated
10
-1
10
0
10
1
10
2
-180
-160
-140
-120
-100
-80
Phase(deg)
Frequency (rad/sec)
uncompensated
compensated
Bode plots of uncompensated and compensated systems.
For step response of uncompensated
and compensated system
figure;
sys1c = tf(gnumc,gdenc);
sys2c = tf(numc,denc);
step(sys1c,sys2c);grid;
legend('uncompensated','compensated',-1);
MATLAB coding:
Time (sec.)
Amplitude
Step Response
0 2 4 6 8 10 12
0
0.2
0.4
0.6
0.8
1
1.2
1.4
1.6
uncompensated
compensated
CODING FOR UNCOMPENSATED AND
COMPENSATED SYSTEMS DUE TO UNIT RAMP
INPUT:
t=0:0.01:5;
y = t;
[y1,x1]=step(gnumc,conv(gdenc,[1 0]),t);
[y2,x2]=step(numc,conv(denc,[1 0]),t);
[y3,x3]=step(numc,denc,t);
[y4,x4]=step(gnumc,gdenc,t);
plot(t,y1,'r',t,y2,'b',t,y,'g');grid;
xlabel('Time (sec)');
title('Unit Ramp Input response');
legend('uncompensated', 'compensated', 'desired',-1);
RESPONSE
0 1 2 3 4 5
0
0.5
1
1.5
2
2.5
3
3.5
4
4.5
5
Time (sec)
Unit Ramp Input response
uncompensated
compensated
desired
APPLICATION
Lead–lag compensators influence disciplines as varied
as robotics, satellite control and laser frequency
stabilization.
They are an important building block in analog
control systems but it can also be used in digital
control
Controllers are used to improve system parameters but
it is also be done by compensators as well.
THANK YOU

Contenu connexe

Tendances

6. 2 ray propagation model part 2
6. 2 ray propagation model   part 26. 2 ray propagation model   part 2
6. 2 ray propagation model part 2JAIGANESH SEKAR
 
Learning sparse Neural Networks using L0 Regularization
Learning sparse Neural Networks using L0 RegularizationLearning sparse Neural Networks using L0 Regularization
Learning sparse Neural Networks using L0 RegularizationVarun Reddy
 
Effects of poles and zeros affect control system
Effects of poles and zeros affect control systemEffects of poles and zeros affect control system
Effects of poles and zeros affect control systemGopinath S
 
EEP306: Quadrature amplitude modulation
EEP306: Quadrature amplitude modulation EEP306: Quadrature amplitude modulation
EEP306: Quadrature amplitude modulation Umang Gupta
 
Design of sampled data control systems 5th lecture
Design of sampled data control systems  5th  lectureDesign of sampled data control systems  5th  lecture
Design of sampled data control systems 5th lectureKhalaf Gaeid Alshammery
 
Frequency Response Analysis
Frequency Response AnalysisFrequency Response Analysis
Frequency Response AnalysisHussain K
 

Tendances (8)

6. 2 ray propagation model part 2
6. 2 ray propagation model   part 26. 2 ray propagation model   part 2
6. 2 ray propagation model part 2
 
Bode plot
Bode plotBode plot
Bode plot
 
Ece4510 notes09
Ece4510 notes09Ece4510 notes09
Ece4510 notes09
 
Learning sparse Neural Networks using L0 Regularization
Learning sparse Neural Networks using L0 RegularizationLearning sparse Neural Networks using L0 Regularization
Learning sparse Neural Networks using L0 Regularization
 
Effects of poles and zeros affect control system
Effects of poles and zeros affect control systemEffects of poles and zeros affect control system
Effects of poles and zeros affect control system
 
EEP306: Quadrature amplitude modulation
EEP306: Quadrature amplitude modulation EEP306: Quadrature amplitude modulation
EEP306: Quadrature amplitude modulation
 
Design of sampled data control systems 5th lecture
Design of sampled data control systems  5th  lectureDesign of sampled data control systems  5th  lecture
Design of sampled data control systems 5th lecture
 
Frequency Response Analysis
Frequency Response AnalysisFrequency Response Analysis
Frequency Response Analysis
 

En vedette

3 dof helicopter yaw (december 2016)
3 dof helicopter yaw (december 2016)3 dof helicopter yaw (december 2016)
3 dof helicopter yaw (december 2016)Hamza saeed Khan
 
CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014
 CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014 CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014
CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014Centro Deportivo Israelita
 
Iglesias vegueta
Iglesias veguetaIglesias vegueta
Iglesias veguetacris
 
Surveillance Of Construction Sites
Surveillance Of Construction SitesSurveillance Of Construction Sites
Surveillance Of Construction Siteseduardlemmens
 
Las imagenes en_textos_escolares_silvina_casablancas
Las imagenes en_textos_escolares_silvina_casablancasLas imagenes en_textos_escolares_silvina_casablancas
Las imagenes en_textos_escolares_silvina_casablancasjessicamagisterio
 
Ubitus unlocking the_true_potential_of_cloud_gaming
Ubitus unlocking the_true_potential_of_cloud_gamingUbitus unlocking the_true_potential_of_cloud_gaming
Ubitus unlocking the_true_potential_of_cloud_gamingubitus
 
Centurion Society Induction
Centurion Society InductionCenturion Society Induction
Centurion Society InductionKhalid Al-Naif
 
стара вижівка
стара вижівкастара вижівка
стара вижівкаserioga128
 
regioS 9 − Innovation – Kernelement der Neuen Regionalpolitik
regioS 9 − Innovation – Kernelement der Neuen RegionalpolitikregioS 9 − Innovation – Kernelement der Neuen Regionalpolitik
regioS 9 − Innovation – Kernelement der Neuen Regionalpolitikregiosuisse
 
Beyond the Trauma
Beyond the TraumaBeyond the Trauma
Beyond the TraumaNik_Barnes
 
Transform Financial Reporting Using Master Row Sets in Oracle E-Business Suite
Transform Financial Reporting Using Master Row Sets in Oracle E-Business SuiteTransform Financial Reporting Using Master Row Sets in Oracle E-Business Suite
Transform Financial Reporting Using Master Row Sets in Oracle E-Business Suiteeprentise
 
Mi Jefe Es Un Psicópata
Mi Jefe Es Un PsicópataMi Jefe Es Un Psicópata
Mi Jefe Es Un PsicópataConsaburum
 

En vedette (20)

3 dof helicopter yaw (december 2016)
3 dof helicopter yaw (december 2016)3 dof helicopter yaw (december 2016)
3 dof helicopter yaw (december 2016)
 
CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014
 CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014 CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014
CDINFORMA NÚMERO 2636, 7 DE ADAR II DE 5774, 9 DE MARZO DE 2014
 
Tipos de Centrales
Tipos de CentralesTipos de Centrales
Tipos de Centrales
 
Dossier
DossierDossier
Dossier
 
Iglesias vegueta
Iglesias veguetaIglesias vegueta
Iglesias vegueta
 
Turismo de trenes
Turismo de trenes Turismo de trenes
Turismo de trenes
 
Surveillance Of Construction Sites
Surveillance Of Construction SitesSurveillance Of Construction Sites
Surveillance Of Construction Sites
 
Las imagenes en_textos_escolares_silvina_casablancas
Las imagenes en_textos_escolares_silvina_casablancasLas imagenes en_textos_escolares_silvina_casablancas
Las imagenes en_textos_escolares_silvina_casablancas
 
Ubitus unlocking the_true_potential_of_cloud_gaming
Ubitus unlocking the_true_potential_of_cloud_gamingUbitus unlocking the_true_potential_of_cloud_gaming
Ubitus unlocking the_true_potential_of_cloud_gaming
 
Centurion Society Induction
Centurion Society InductionCenturion Society Induction
Centurion Society Induction
 
стара вижівка
стара вижівкастара вижівка
стара вижівка
 
regioS 9 − Innovation – Kernelement der Neuen Regionalpolitik
regioS 9 − Innovation – Kernelement der Neuen RegionalpolitikregioS 9 − Innovation – Kernelement der Neuen Regionalpolitik
regioS 9 − Innovation – Kernelement der Neuen Regionalpolitik
 
Gemstones 21 08_2013_progroup
Gemstones 21 08_2013_progroupGemstones 21 08_2013_progroup
Gemstones 21 08_2013_progroup
 
Beyond the Trauma
Beyond the TraumaBeyond the Trauma
Beyond the Trauma
 
purushottam_resume 1.8
purushottam_resume 1.8purushottam_resume 1.8
purushottam_resume 1.8
 
Transform Financial Reporting Using Master Row Sets in Oracle E-Business Suite
Transform Financial Reporting Using Master Row Sets in Oracle E-Business SuiteTransform Financial Reporting Using Master Row Sets in Oracle E-Business Suite
Transform Financial Reporting Using Master Row Sets in Oracle E-Business Suite
 
Mi Jefe Es Un Psicópata
Mi Jefe Es Un PsicópataMi Jefe Es Un Psicópata
Mi Jefe Es Un Psicópata
 
4293393
42933934293393
4293393
 
Derma supl08 acne
Derma supl08 acneDerma supl08 acne
Derma supl08 acne
 
Respuesta educativa para un alumnado con TDAH
Respuesta educativa para un alumnado con TDAHRespuesta educativa para un alumnado con TDAH
Respuesta educativa para un alumnado con TDAH
 

Similaire à k10990 guddu ali control theory me 6th sem

Lab 9 Frequency response lecture file.pdf
Lab 9 Frequency response lecture file.pdfLab 9 Frequency response lecture file.pdf
Lab 9 Frequency response lecture file.pdfalfqythythm296
 
Linear Control Hard-Disk Read/Write Controller Assignment
Linear Control Hard-Disk Read/Write Controller AssignmentLinear Control Hard-Disk Read/Write Controller Assignment
Linear Control Hard-Disk Read/Write Controller AssignmentIsham Rashik
 
Lag lead compensator design in frequency domain 7th lecture
Lag lead compensator design in frequency domain  7th lectureLag lead compensator design in frequency domain  7th lecture
Lag lead compensator design in frequency domain 7th lectureKhalaf Gaeid Alshammery
 
Servo Fundamentals
Servo FundamentalsServo Fundamentals
Servo Fundamentalspurnima saha
 
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
179529572-ROOT-LOCUS-Control-system-Design-ppt.pptTaraGonzales5
 
BALLANDBEAM_GROUP7.pptx
BALLANDBEAM_GROUP7.pptxBALLANDBEAM_GROUP7.pptx
BALLANDBEAM_GROUP7.pptxOthmanBensaoud
 
Time response of first order systems and second order systems
Time response of first order systems and second order systemsTime response of first order systems and second order systems
Time response of first order systems and second order systemsNANDHAKUMARA10
 
EE411 lecture 13- Design of Compensators in Frequency Domain.pptx
EE411  lecture 13- Design of Compensators in Frequency Domain.pptxEE411  lecture 13- Design of Compensators in Frequency Domain.pptx
EE411 lecture 13- Design of Compensators in Frequency Domain.pptxmonaibrahim598401
 
Control tutorials for matlab and simulink introduction pid controller desig...
Control tutorials for matlab and simulink   introduction pid controller desig...Control tutorials for matlab and simulink   introduction pid controller desig...
Control tutorials for matlab and simulink introduction pid controller desig...ssuser27c61e
 
Root locus compensation
Root locus compensationRoot locus compensation
Root locus compensationRamaiahsubasri
 
Biological Control Systems - Short Questions and Answers - Mathankumar.S (VM...
Biological Control Systems - Short Questions and Answers  - Mathankumar.S (VM...Biological Control Systems - Short Questions and Answers  - Mathankumar.S (VM...
Biological Control Systems - Short Questions and Answers - Mathankumar.S (VM...Mathankumar S
 
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptx
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptxSTEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptx
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptxAnikendu Maitra
 
IC Design of Power Management Circuits (III)
IC Design of Power Management Circuits (III)IC Design of Power Management Circuits (III)
IC Design of Power Management Circuits (III)Claudia Sin
 
AutoControls using Matlab and Simulink
AutoControls using Matlab and SimulinkAutoControls using Matlab and Simulink
AutoControls using Matlab and SimulinkMichael Davis
 
Iaetsd position control of servo systems using pid
Iaetsd position control of servo systems using pidIaetsd position control of servo systems using pid
Iaetsd position control of servo systems using pidIaetsd Iaetsd
 

Similaire à k10990 guddu ali control theory me 6th sem (20)

Lead-lag controller
Lead-lag controllerLead-lag controller
Lead-lag controller
 
Lab 9 Frequency response lecture file.pdf
Lab 9 Frequency response lecture file.pdfLab 9 Frequency response lecture file.pdf
Lab 9 Frequency response lecture file.pdf
 
Chapter 7 1
Chapter 7 1Chapter 7 1
Chapter 7 1
 
ACS 22LIE12 lab Manul.docx
ACS 22LIE12 lab Manul.docxACS 22LIE12 lab Manul.docx
ACS 22LIE12 lab Manul.docx
 
Linear Control Hard-Disk Read/Write Controller Assignment
Linear Control Hard-Disk Read/Write Controller AssignmentLinear Control Hard-Disk Read/Write Controller Assignment
Linear Control Hard-Disk Read/Write Controller Assignment
 
Lag lead compensator design in frequency domain 7th lecture
Lag lead compensator design in frequency domain  7th lectureLag lead compensator design in frequency domain  7th lecture
Lag lead compensator design in frequency domain 7th lecture
 
Servo Fundamentals
Servo FundamentalsServo Fundamentals
Servo Fundamentals
 
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
 
BALLANDBEAM_GROUP7.pptx
BALLANDBEAM_GROUP7.pptxBALLANDBEAM_GROUP7.pptx
BALLANDBEAM_GROUP7.pptx
 
Ece4510 notes07
Ece4510 notes07Ece4510 notes07
Ece4510 notes07
 
Time response of first order systems and second order systems
Time response of first order systems and second order systemsTime response of first order systems and second order systems
Time response of first order systems and second order systems
 
EE411 lecture 13- Design of Compensators in Frequency Domain.pptx
EE411  lecture 13- Design of Compensators in Frequency Domain.pptxEE411  lecture 13- Design of Compensators in Frequency Domain.pptx
EE411 lecture 13- Design of Compensators in Frequency Domain.pptx
 
Control tutorials for matlab and simulink introduction pid controller desig...
Control tutorials for matlab and simulink   introduction pid controller desig...Control tutorials for matlab and simulink   introduction pid controller desig...
Control tutorials for matlab and simulink introduction pid controller desig...
 
Root locus compensation
Root locus compensationRoot locus compensation
Root locus compensation
 
Biological Control Systems - Short Questions and Answers - Mathankumar.S (VM...
Biological Control Systems - Short Questions and Answers  - Mathankumar.S (VM...Biological Control Systems - Short Questions and Answers  - Mathankumar.S (VM...
Biological Control Systems - Short Questions and Answers - Mathankumar.S (VM...
 
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptx
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptxSTEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptx
STEP RESPONSE OF FIRST ORDER SYSTEM PART 1.pptx
 
IC Design of Power Management Circuits (III)
IC Design of Power Management Circuits (III)IC Design of Power Management Circuits (III)
IC Design of Power Management Circuits (III)
 
AutoControls using Matlab and Simulink
AutoControls using Matlab and SimulinkAutoControls using Matlab and Simulink
AutoControls using Matlab and Simulink
 
Control System Assignment Help
Control System Assignment HelpControl System Assignment Help
Control System Assignment Help
 
Iaetsd position control of servo systems using pid
Iaetsd position control of servo systems using pidIaetsd position control of servo systems using pid
Iaetsd position control of servo systems using pid
 

Dernier

chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...soginsider
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfRagavanV2
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 

Dernier (20)

chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 

k10990 guddu ali control theory me 6th sem

  • 1. Presented by: Guddu Ali U.I.D: K10990 Mechanical TOPIC LEAD COMPENSATOR Presented to Mr. SOMESH CHATURVEDI Assistant professor of electrical department
  • 2. CONTENTS: 1. Introduction 2. Compensator 3. Design of phase-lead compensators using bode plot method 4. Response of phase-lead compensators 5. Design uncompensated and compensated systems 6. Response of uncompensated and compensated systems 7. Step response of uncompensated and compensated system 8. Uncompensated and compensated systems due to unit ramp input and their response 9. Application
  • 3. INTRODUCTION Lead compensator:  A lead compensator is a component in a control system that improves an undesirable frequency response in a feedback and control system. It is a fundamental building block in classical control theory. with |z| < |p|. That is, zero closer to origin than pole
  • 4. COMPENSATOR  Using root locus techniques, we have seen how the pole positions of a closed loop can be adjusted by varying a parameter  What happens if we are unable to obtain that performance that we want by doing this?  Ask ourselves whether this is really the performance that we want  Ask whether we can change the system, say by buying different components  Seek to compensate for the undesirable aspects of the process
  • 5. DESIGNOFPHASE-LEADCOMPENSATORSUSING BODEPLOTMETHOD  MATLAB CODING: clear all; wm = 4.5; % gain-crossover frequency alpha = 0.3; % phase-lead compensator parameter T = 1/wm/sqrt(alpha); % phase-lead compensator time constant K = 10; % DC compensator gain % Phase-lead compensator C(s) cnum = K*[T 1]; cden = [T*alpha 1]; % Open-loop sys G(s) gnum = [1]; gden = [1 1 0]; % Unity-Gain Feedback Loop H(s) hnum = [1]; hden = [1]; % Open-loop sys C(s)*G(s) numo = conv(cnum,gnum); deno = conv(cden,gden); % Closed-loop sys [gnumc,gdenc] = feedback(K*gnum,gden,hnum,hden,-1); [numc,denc] = feedback(numo,deno,hnum,hden,-1); bode(cnum,cden);
  • 7. DESIGN UNCOMPENSATEDAND COMPENSATED SYSTEMS sys1 = tf(K*gnum,gden); sys2 = tf(numo,deno); [mag1,ph1,w]=bode(K*gnum,gden,logspace(-1,2,500)); [mag2,ph2,w]=bode(numo,deno,logspace(-1,2,500)); subplot(211); semilogx(w,20*log10(mag1),'r', w,20*log10(mag2),'b'); title('Bode Diagrams'); ylabel('Magnitude (dB)'); legend('uncompensated','compensated', -1); subplot(212); semilogx(w,ph1,'r', w,ph2,'b'); ylabel('Phase (deg)'); xlabel('Frequency (rad/sec)'); legend('uncompensated','compensated', -1); MATLAB CODING
  • 9. For step response of uncompensated and compensated system figure; sys1c = tf(gnumc,gdenc); sys2c = tf(numc,denc); step(sys1c,sys2c);grid; legend('uncompensated','compensated',-1); MATLAB coding: Time (sec.) Amplitude Step Response 0 2 4 6 8 10 12 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 uncompensated compensated
  • 10. CODING FOR UNCOMPENSATED AND COMPENSATED SYSTEMS DUE TO UNIT RAMP INPUT: t=0:0.01:5; y = t; [y1,x1]=step(gnumc,conv(gdenc,[1 0]),t); [y2,x2]=step(numc,conv(denc,[1 0]),t); [y3,x3]=step(numc,denc,t); [y4,x4]=step(gnumc,gdenc,t); plot(t,y1,'r',t,y2,'b',t,y,'g');grid; xlabel('Time (sec)'); title('Unit Ramp Input response'); legend('uncompensated', 'compensated', 'desired',-1);
  • 11. RESPONSE 0 1 2 3 4 5 0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5 Time (sec) Unit Ramp Input response uncompensated compensated desired
  • 12. APPLICATION Lead–lag compensators influence disciplines as varied as robotics, satellite control and laser frequency stabilization. They are an important building block in analog control systems but it can also be used in digital control Controllers are used to improve system parameters but it is also be done by compensators as well.