Comparing the Effectiveness of Feedback and Load Compensation Techniques in Controlling the Disturbed State of Nominal-T Configuration

Size: px
Start display at page:

Download "Comparing the Effectiveness of Feedback and Load Compensation Techniques in Controlling the Disturbed State of Nominal-T Configuration"

Transcription

1 Comparing the Effectiveness of Feedback and Load Compensation Techniques in Controlling the Disturbed State of Nominal-T Configuration Thomas O. Ale Abstract Stability of Power system is the ability of a system, for a given initial operating condition, to regain a state of operating equilibrium after being subjected to a physical disturbance, with most system variables bounded so that practically the entire system remains intact. This research work stated clearly the effectiveness of the feedback and load compensation techniques in stabilizing a disturbed state of a medium transmission line using a Nominal-T configuration network. In order to achieve the set objectives, Osogbo - Akure transmission line data was obtained from Akure 132kV transmission substation. This configuration was modeled into transfer s, the compensator circuit which happens to be the phase lag circuit was also modeled. The transfer function model contained the line s extracted from this transmission substation logbook. A state space model was obtained from the transfer function model with a code written in MATLAB environment. The effectiveness of these compensation techniques were compared. The result revealed that load compensation technique offered a perfect compensation to unit step disturbance and unit impulse disturbance. While feedback compensation technique provides perfect compensation to unit impulse disturbance only. Index Terms Medium Transmission Line; Nominal-T Configuration; Compensation Technique; Transfer Function Model; State Space Model; System Response; MATLAB. I. INTRODUCTION Compensation is a very paramount tool for system control engineers, when debating on how to make an unstable system to become stable. This tool is imperative in the sense that an unstable and disturbed system can be compensated for, so that the optimal performance and operation of the system can be fully achieved. There are three techniques by which compensation of a system can be achieved, these are: series technique, feedback technique and load technique [1]. But as stated earlier on this research work focused mainly on two of these techniques; feedback and load technique. The technique here is being conceived as the way and manner in which the compensating network is positioned relative to the controlled system, intended to be compensated. Feedback technique is the process by which the compensating network is positioned in the feedback path relative to the controlled system that is in the forward path. Load technique is an embedded technique in the sense that, two techniques were employed here. In nutshell, load Published on July 31, T. O. Ale is with Electrical & Electronics Engineering Department, Federal University of Technology Akure, Ondo State, Nigeria. ( toale@futa.edu.ng, aleto04@yahoo.com) technique is a technique that combined series and feedback techniques to compensate for the controlled system. Compensation is needed in any controlled system to improve the performance of the system which is classified into transient performance and steady state performance [1]. But the compensation is considered in this research work to make the disturbed state of Nominal-T configuration to be stable. According to [1], compensator circuit is classified as phase lag circuit, phase lead circuit and phase lag-lead circuit. But phase lag circuit is considered in this research work, the reason being that the circuit provides the better steady state performance of a system, slower response to disturbance and reduction in bandwidth leading to large settling time. According to [3], phase lag circuit yields an appreciable improvement in steady state accuracy at the expense of increasing the transient response time. Fig. 1. Feedback Compensation Technique Fig. 2. Load Compensation Technique Fig. 3. Phase lag Network II. METHODOLOGY The methodology employed in this research work involved modeling the Nominal-T configuration into transfer function model and state space model [4]. As stated earlier on, the transfer function model of the Nominal-T configuration was obtained through the line s extracted from the data obtained. While the state space model was obtained through the conversion of the transfer DOI: 48

2 function model using MATLAB script file found in MATLAB environment. There is transfer function model for the compensated system and the uncompensated system; likewise, there is state space model for the compensated and the uncompensated system. For the analysis, a code was written in MATLAB object for the two system models using impulse and step input signals to obtained impulse and step response to be analyzed. It should be stressed here that the uncompensated system represents the disturbed state of the system and the compensated system represents the designed compensator using Fig. 1, 2 and 3 respectively. T fc (s) = 2s s s s The load compensation technique (Fig. 2) was calculated using block in cascade approach because the outcome of feedback technique is in series with the compensated system; this was obtained as shown in (4). T lc (s) = (2s )(s ) (0.495s s s )(s ) (4) As part of the analysis, the disturbed state in (1) was converted to state space model to check for the controllability and observability of the disturbed state, this was achieved in MATLAB environment. A. M-file written to take the transfer function model of the disturbed state to state space model to check for controllability and observability (3) clear all, clc Fig. 4. Nominal-T Configuration Fig. 4 was modeled into transfer function model using the extracted line s of the transmission line used as case study. The line s values are 2.43Ω, 69.98mH and µF respectively. These values were used to obtain the transfer function model equation shown in (1). I r (s) = 4V s (s) + 2D s (s) s s s s s+2 (1) Where; V s (s) represents the sending end voltage (measured in Volts.) D s (s) represents the disturbed (which is inform of voltage.) I r (s) represents the receiving end current (measured in Amps.) s represents the complex frequency variable Equation 1 revealed that the Nominal-T configuration modeled has two effects on its transfer function model; the normal state and the disturbed state. Since there is present of disturbed state in the transfer function model equation, there is needs for compensation of the disturbed part of the equation. To achieve this, a compensator circuit was designed with Fig. 3 using root locus technique to obtain the transfer function model of the compensator circuit shown in (2). Vr=126420; % receiving voltage [V] % an arbitrary value assumed Ds=n*Vr; % disturbed value [V] s=tf ('s'); % creation of transfer function from Laplace operator sys_tf=2*ds/ (0.165*s^ *s+2); model of the disturbed state % to create ss model from tf model of the disturbed state % state space model of the disturbed state % to obtain the observability and its rank Ob=obsv (sys_ss); % control of the system from output r_ob=rank(ob); % rank of the observability matrix % to obtain the controllability and its rank co=ctrb(sys_ss); % control of the system from input r_co=rank (co); % rank of the controllability matrix T c (s) = s s (2) The transfer function model of the compensator circuit represents the compensated system while the uncompensated system is for the disturbed state found in the transfer function model of the Nominal-T configuration. So the overall transfer function model is obtained for the feedback compensation technique and the load compensation technique. The overall transfer function model for feedback compensation technique was calculated using the closed loop transfer function formula and was obtained as shown in (3). DOI: 49

3 B. M-file written to obtain the step response of the disturbed state for transfer function model and state space model clear all, clc, close all entry Vr=126420; % receiving end of the line % an assumed value for the disturbance Ds=n*Vr; % disturbed value % to create the system tf model s=tf ('s'); sys_tf=2*ds/ (0.165*s^ *s+2); % to create the system ss model % to obtain the step response of the tf model and ss model step (sys_tf,'g'); xlabel ('Time'); model', 'location, Southeast'); title('step response for disturbed state in TF MODEL'); step(sys_ss,'y'); model', 'location, Southeast'); title('step response for disturbed state in SS MODEL'); C. M-file written to obtain the impulse response of the disturbed state for transfer function model and state space model. clear all, clc, close all entry Vr=126420; % receiving end of the line % an assumed value for the disturbance Ds=n*Vr; % disturbed value % to create the system tf model % to create the system ss model % to obtain the impulse response of the tf model and ss model impulse(sys_tf,'g'); model', 'location','southeast'); title('impulse response for disturbed state in TF MODEL'); impulse(sys_ss,'y'); model', 'location','southeast'); title('impulse response for disturbed state in SS MODEL'); After writing an m-file to generate the nature of response for the disturbed state of Nominal-T configuration [2] in the two models used in this research work, the next step was to write an m-file to compare the response of the two compensation techniques, to see which one will provide effective compensation and also to determine the level of compensation provided by these two compensation technique. D. M-file written to obtain the step response for the compensation provided by feedback compensation technique for the disturbed state response obtained. sys_tf=(2*s )/(0.495*s^ *s^ *s ); % to obtain the step response for transfer step(sys_tf,'g'); title('step response for feedback compensation in TF model'); step(sys_ss,'y'); title('step response for feedback compensation in SS model'); E. M-file written to obtain the impulse response provided by the feedback compensation technique to the disturbed state of the configuration. sys_tf=(2*s )/(0.495*s^ *s^ *s ); % to obtain the impulse response for transfer impulse(sys_tf,'g'); title('impulse response for feedback compensation in TF model'); impulse(sys_ss,'y'); title('impulse response for feedback compensation in SS model'); DOI: 50

4 F. M-file written to obtain the step response provided by load compensation technique to the disturbed state of the configuration. sys_tf=(2*s )*(s )/(0.495*s^ *s^ *s )*(s ); % to obtain the step response for transfer step(sys_tf,'g'); title('step response for load compensation in TF model'); step(sys_ss,'y'); title('step response for load compensation in SS model'); G. M-file written to obtain the impulse response provided by load compensation technique for the disturbed state of the configuration. sys_tf=(2*s )*(s )/(0.495*s^ *s^ *s )*(s ); % to obtain the impulse response for transfer impulse(sys_tf,'g'); title('impulse response for load compensation in TF model'); impulse(sys_ss,'y'); title('impulse response for load compensation in SS model'); H. M-file written to show the level of compensation provided by feedback compensation to the disturbed state of the configuration using step input % creation of transfer model for I. M-file written to show the level of compensation provided by feedback compensation to the disturbed state of the configuration using impulse input. % creation of transfer model for % defining the tf model for feedback compensated state sys_tf_fb=(2*s )/(0.495*s^ *s^ *s ); % to obtain the step response for step(sys_ss,'r',sys_ss_fb,'g'); legend(' ',' compensated title('compensation level shown by feedback % defining the tf model for feedback compensated state sys_tf_fb=(2*s )/(0.495*s^ *s^ *s ); % to obtain the impulse response for impulse(sys_ss,'r',sys_ss_fb,'g'); legend(' ',' compensated title('compensation level shown by feedback DOI: 51

5 J. M-file written to show the level of compensation provided by load compensation to the disturbed state of the configuration using step input % creation of transfer model for for controllability and observability, because if the state of a system is not controllable, then there is no point in trying to compensate for the disturbed state. But from the script file, it was discovered that the disturbed state of the network is controllable and observable, because it is full of rank [1]. % defining the tf model for load compensated state sys_tf_fb=(2*s )*(s )/(0.495*s^ *s^ *s )*(s ); % to obtain the step response for step(sys_ss,'r',sys_ss_fb,'g'); legend(' ',' compensated title('compensation level shown by load K. M-file written to show the level of compensation provided by load compensation to the disturbed state using impulse input. Fig.5. Disturbed state response in TF and SS model. (a: Step Response, b: Impulse Response) % creation of transfer model for % defining the tf model for load compensated state sys_tf_fb=(2*s )*(s )/(0.495*s^ *s^ *s )*(s ); % to obtain the impulse response for impulse(sys_ss,'r',sys_ss_fb,'g'); legend(' ',' compensated title('compensation level shown by load III. RESULTS AND DISCUSSION After analyzing the two models in MATLAB environment, the following responses were obtained. Also, the disturbed state of Nominal-T configuration was taken from transfer function model to state space model to check DOI: 52

6 Fig. 6. Feedback compensation response in TF and SS model (a: Step Response, b: Impulse Response) Fig. 8. Level of compensation provided by feedback technique (a: Step Response, b: Impulse Response) Fig. 7. Load compensation response in TF and SS model (a: Step Response, b: Impulse Response) Fig. 9. Level of compensation provided by load technique (a: Step Response, b: Impulse Response) Fig. 5 shows the nature of response obtained for the disturbed state of Nominal-T configuration when modeled in transfer function model and state space model using step and impulse input. It is obvious that the response is oscillatory in nature with high steady state value of the order of 2.53x10 5 and settling time of 44.3seconds. These two specifications of the disturbed state indicate that the system is prone to failure and collapse, thereby reducing the system optimal performance. So there are needs for compensation to correct these two specification defects presenting itself in the disturbed state. Fig. 6 shows the nature of response obtained as the consequence of using feedback compensation technique to compensate for the disturbed state both in transfer function model and state space model using step input and impulse input. From the figure, with step input it is obvious that the compensation provided by this technique has succeeded in DOI: 53

7 reducing the steady state value from the stated value to 0.2. Also the bandwidth present in the disturbed state has been reduced but at the expense of the settling time, which is now 450seconds. This implies that feedback compensation will provide a rapid and fast stability to any disturbance be it unit step disturbance or unit impulse disturbance [1]. Fig. 7 shows the response obtained when load compensation technique was used to compensate for the disturbed state of the configuration. From the figure, the compensation technique here has succeeded in reducing the oscillatory nature of the disturbed state. The settling time provided by this compensation technique was smaller than that of the feedback compensation techniques, which was of the order of 3.91seconds. Also, the compensation technique provides a better steady state value to unit step disturbance and unit impulse disturbance. As measured from the response, the steady state is of the value of 7.23µ. Fig. 8 and 9 show the level of compensation provided by feedback compensation and load compensation technique. It is obvious that load compensation technique provides a perfect compensation to unit step disturbance and unit impulse disturbance. Also, feedback compensation technique provides a perfect compensation to unit impulse disturbance that leads to oscillatory transient disturbance. But for disturbance originating as a result of unit step input, feedback compensation takes a longer time to settle down as obvious from the settling time value. IV. CONCLUSION So far, the effectiveness of feedback and load compensation techniques in compensating for the disturbed state of Nominal-T configuration has been compared. And it can be concluded that load compensation technique provides a perfect compensation to any form of disturbance that emanates within the transmission station. This is also true from the fact that load compensation technique combines the effect of series compensation and feedback compensation to give a perfect compensation of any nature of disturbance emanating from the transmission station. REFERENCES [1] SAEED S. H. (2012): Automatic control systems (with MATLAB programs), S.K. Katara and sons, seventh revised edition. [2] SEYMOUR J. (2000): Seven types of power problems, APC white papers, Electric Power Research Institute, first revision, the Cost of Power Disturbances to industrial and Digital Economy Companies, [3] SRINDHI, R. (2006): Faculty of Mechanical Engineering, SJCE Mysore [4] SAMMY O. and MICHAEL B. (2007): MATLAB Control Systems Toolbox Compendium. ETH Zurich edition. Thomas Olabode Ale completed his tertiary education in Federal University of Technology Akure with Second Class Upper Division in Electrical and Electronics Engineering in He had his Master of Engineering in Electrical and Electronics Engineering (Power Option) in He is a PhD holder in Power Systems Engineering. Dr. Ale is a Corporate Member, Nigerian Society of Engineers, a registered member of the Council for the Regulation of Engineering in Nigeria (COREN). He is a lecturer at Federal University of Technology, Akure. He has published papers, conference proceedings and research findings at both Undergraduate and Postgraduate programmes. DOI: 54

EEE 184 Project: Option 1

EEE 184 Project: Option 1 EEE 184 Project: Option 1 Date: November 16th 2012 Due: December 3rd 2012 Work Alone, show your work, and comment your results. Comments, clarity, and organization are important. Same wrong result or same

More information

Unit 8: Part 2: PD, PID, and Feedback Compensation

Unit 8: Part 2: PD, PID, and Feedback Compensation Ideal Derivative Compensation (PD) Lead Compensation PID Controller Design Feedback Compensation Physical Realization of Compensation Unit 8: Part 2: PD, PID, and Feedback Compensation Engineering 5821:

More information

Feedback design for the Buck Converter

Feedback design for the Buck Converter Feedback design for the Buck Converter Portland State University Department of Electrical and Computer Engineering Portland, Oregon, USA December 30, 2009 Abstract In this paper we explore two compensation

More information

Converter System Modeling via MATLAB/Simulink

Converter System Modeling via MATLAB/Simulink Converter System Modeling via MATLAB/Simulink A powerful environment for system modeling and simulation MATLAB: programming and scripting environment Simulink: block diagram modeling environment that runs

More information

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version Norman S. Nise California State Polytechnic University, Pomona John Wiley fir Sons, Inc. Contents PREFACE, vii 1. INTRODUCTION, 1

More information

Root Locus Design Example #4

Root Locus Design Example #4 Root Locus Design Example #4 A. Introduction The plant model represents a linearization of the heading dynamics of a 25, ton tanker ship under empty load conditions. The reference input signal R(s) is

More information

EE C128 / ME C134 Fall 2014 HW 8 - Solutions. HW 8 - Solutions

EE C128 / ME C134 Fall 2014 HW 8 - Solutions. HW 8 - Solutions EE C28 / ME C34 Fall 24 HW 8 - Solutions HW 8 - Solutions. Transient Response Design via Gain Adjustment For a transfer function G(s) = in negative feedback, find the gain to yield a 5% s(s+2)(s+85) overshoot

More information

CONTROL * ~ SYSTEMS ENGINEERING

CONTROL * ~ SYSTEMS ENGINEERING CONTROL * ~ SYSTEMS ENGINEERING H Fourth Edition NormanS. Nise California State Polytechnic University, Pomona JOHN WILEY& SONS, INC. Contents 1. Introduction 1 1.1 Introduction, 2 1.2 A History of Control

More information

Inverted Pendulum: State-Space Methods for Controller Design

Inverted Pendulum: State-Space Methods for Controller Design 1 de 12 18/10/2015 22:45 Tips Effects TIPS ABOUT BASICS HARDWARE INDEX NEXT INTRODUCTION CRUISE CONTROL MOTOR SPEED MOTOR POSITION SYSTEM MODELING ANALYSIS Inverted Pendulum: State-Space Methods for Controller

More information

Power System Analysis Prof. A. K. Sinha Department of Electrical Engineering Indian Institute of Technology, Kharagpur

Power System Analysis Prof. A. K. Sinha Department of Electrical Engineering Indian Institute of Technology, Kharagpur Power System Analysis Prof. A. K. Sinha Department of Electrical Engineering Indian Institute of Technology, Kharagpur Lecture - 9 Transmission Line Steady State Operation Welcome to lesson 9, in Power

More information

ECE 585 Power System Stability

ECE 585 Power System Stability Homework 1, Due on January 29 ECE 585 Power System Stability Consider the power system below. The network frequency is 60 Hz. At the pre-fault steady state (a) the power generated by the machine is 400

More information

EE C128 / ME C134 Fall 2014 HW 6.2 Solutions. HW 6.2 Solutions

EE C128 / ME C134 Fall 2014 HW 6.2 Solutions. HW 6.2 Solutions EE C28 / ME C34 Fall 24 HW 6.2 Solutions. PI Controller For the system G = K (s+)(s+3)(s+8) HW 6.2 Solutions in negative feedback operating at a damping ratio of., we are going to design a PI controller

More information

Chapter 3 AUTOMATIC VOLTAGE CONTROL

Chapter 3 AUTOMATIC VOLTAGE CONTROL Chapter 3 AUTOMATIC VOLTAGE CONTROL . INTRODUCTION TO EXCITATION SYSTEM The basic function of an excitation system is to provide direct current to the field winding of the synchronous generator. The excitation

More information

ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 2010/2011 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques

ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 2010/2011 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques CAIRO UNIVERSITY FACULTY OF ENGINEERING ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 00/0 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques [] For the following system, Design a compensator such

More information

Course Summary. The course cannot be summarized in one lecture.

Course Summary. The course cannot be summarized in one lecture. Course Summary Unit 1: Introduction Unit 2: Modeling in the Frequency Domain Unit 3: Time Response Unit 4: Block Diagram Reduction Unit 5: Stability Unit 6: Steady-State Error Unit 7: Root Locus Techniques

More information

PID Control. Objectives

PID Control. Objectives PID Control Objectives The objective of this lab is to study basic design issues for proportional-integral-derivative control laws. Emphasis is placed on transient responses and steady-state errors. The

More information

Performance of Feedback Control Systems

Performance of Feedback Control Systems Performance of Feedback Control Systems Design of a PID Controller Transient Response of a Closed Loop System Damping Coefficient, Natural frequency, Settling time and Steady-state Error and Type 0, Type

More information

Dynamic Compensation using root locus method

Dynamic Compensation using root locus method CAIRO UNIVERSITY FACULTY OF ENGINEERING ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 00/0 CONTROL ENGINEERING SHEET 9 Dynamic Compensation using root locus method [] (Final00)For the system shown in the

More information

(Refer Slide Time: 1:42)

(Refer Slide Time: 1:42) Control Engineering Prof. Madan Gopal Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture - 21 Basic Principles of Feedback Control (Contd..) Friends, let me get started

More information

Chapter 9: Controller design

Chapter 9: Controller design Chapter 9. Controller Design 9.1. Introduction 9.2. Effect of negative feedback on the network transfer functions 9.2.1. Feedback reduces the transfer function from disturbances to the output 9.2.2. Feedback

More information

Control Systems. EC / EE / IN. For

Control Systems.   EC / EE / IN. For Control Systems For EC / EE / IN By www.thegateacademy.com Syllabus Syllabus for Control Systems Basic Control System Components; Block Diagrammatic Description, Reduction of Block Diagrams. Open Loop

More information

Power System Operations and Control Prof. S.N. Singh Department of Electrical Engineering Indian Institute of Technology, Kanpur. Module 3 Lecture 8

Power System Operations and Control Prof. S.N. Singh Department of Electrical Engineering Indian Institute of Technology, Kanpur. Module 3 Lecture 8 Power System Operations and Control Prof. S.N. Singh Department of Electrical Engineering Indian Institute of Technology, Kanpur Module 3 Lecture 8 Welcome to lecture number 8 of module 3. In the previous

More information

Two-Port Networks Admittance Parameters CHAPTER16 THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO:

Two-Port Networks Admittance Parameters CHAPTER16 THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO: CHAPTER16 Two-Port Networks THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO: Calculate the admittance, impedance, hybrid, and transmission parameter for two-port networks. Convert

More information

6.302 Feedback Systems Recitation 16: Compensation Prof. Joel L. Dawson

6.302 Feedback Systems Recitation 16: Compensation Prof. Joel L. Dawson Bode Obstacle Course is one technique for doing compensation, or designing a feedback system to make the closed-loop behavior what we want it to be. To review: - G c (s) G(s) H(s) you are here! plant For

More information

Example: DC Motor Speed Modeling

Example: DC Motor Speed Modeling Page 1 of 5 Example: DC Motor Speed Modeling Physical setup and system equations Design requirements MATLAB representation and open-loop response Physical setup and system equations A common actuator in

More information

QFT Framework for Robust Tuning of Power System Stabilizers

QFT Framework for Robust Tuning of Power System Stabilizers 45-E-PSS-75 QFT Framework for Robust Tuning of Power System Stabilizers Seyyed Mohammad Mahdi Alavi, Roozbeh Izadi-Zamanabadi Department of Control Engineering, Aalborg University, Denmark Correspondence

More information

EE 422G - Signals and Systems Laboratory

EE 422G - Signals and Systems Laboratory EE 4G - Signals and Systems Laboratory Lab 9 PID Control Kevin D. Donohue Department of Electrical and Computer Engineering University of Kentucky Lexington, KY 40506 April, 04 Objectives: Identify the

More information

Linear State Feedback Controller Design

Linear State Feedback Controller Design Assignment For EE5101 - Linear Systems Sem I AY2010/2011 Linear State Feedback Controller Design Phang Swee King A0033585A Email: king@nus.edu.sg NGS/ECE Dept. Faculty of Engineering National University

More information

CYBER EXPLORATION LABORATORY EXPERIMENTS

CYBER EXPLORATION LABORATORY EXPERIMENTS CYBER EXPLORATION LABORATORY EXPERIMENTS 1 2 Cyber Exploration oratory Experiments Chapter 2 Experiment 1 Objectives To learn to use MATLAB to: (1) generate polynomial, (2) manipulate polynomials, (3)

More information

R a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies.

R a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies. SET - 1 II B. Tech II Semester Supplementary Examinations Dec 01 1. a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies..

More information

CHAPTER 1 Basic Concepts of Control System. CHAPTER 6 Hydraulic Control System

CHAPTER 1 Basic Concepts of Control System. CHAPTER 6 Hydraulic Control System CHAPTER 1 Basic Concepts of Control System 1. What is open loop control systems and closed loop control systems? Compare open loop control system with closed loop control system. Write down major advantages

More information

Critical clearing time evaluation of Nigerian 330kV transmission system

Critical clearing time evaluation of Nigerian 330kV transmission system American Journal of Electrical Power and Energy Systems 2013; 2(6): 123-128 Published online October 20, 2013 (http://www.sciencepublishinggroup.com/j/epes) doi: 10.11648/j.epes.20130206.11 Critical clearing

More information

VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur

VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur 603 203. DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING SUBJECT QUESTION BANK : EC6405 CONTROL SYSTEM ENGINEERING SEM / YEAR: IV / II year

More information

Outline. Classical Control. Lecture 5

Outline. Classical Control. Lecture 5 Outline Outline Outline 1 What is 2 Outline What is Why use? Sketching a 1 What is Why use? Sketching a 2 Gain Controller Lead Compensation Lag Compensation What is Properties of a General System Why use?

More information

Journal of Physics: Conference Series. Related content PAPER OPEN ACCESS

Journal of Physics: Conference Series. Related content PAPER OPEN ACCESS Journal of Physics: Conference Series PAPER OPEN ACCESS Adaptive system for automatic stabilization of the power factor for electric drives of separation device by means of serially connected capacitors

More information

Simulating a Power System

Simulating a Power System Simulating a Power System Presented by Prof. Tyrone Fernando School of Electrical and Electronic Engineering (EECE), University of Western Australia (UWA) 1. Motivations In an actual power system, it is

More information

System Modeling: Motor position, θ The physical parameters for the dc motor are:

System Modeling: Motor position, θ The physical parameters for the dc motor are: Dept. of EEE, KUET, Sessional on EE 3202: Expt. # 2 2k15 Batch Experiment No. 02 Name of the experiment: Modeling of Physical systems and study of their closed loop response Objective: (i) (ii) (iii) (iv)

More information

Table of Laplacetransform

Table of Laplacetransform Appendix Table of Laplacetransform pairs 1(t) f(s) oct), unit impulse at t = 0 a, a constant or step of magnitude a at t = 0 a s t, a ramp function e- at, an exponential function s + a sin wt, a sine fun

More information

Time Response of Systems

Time Response of Systems Chapter 0 Time Response of Systems 0. Some Standard Time Responses Let us try to get some impulse time responses just by inspection: Poles F (s) f(t) s-plane Time response p =0 s p =0,p 2 =0 s 2 t p =

More information

EC CONTROL SYSTEM UNIT I- CONTROL SYSTEM MODELING

EC CONTROL SYSTEM UNIT I- CONTROL SYSTEM MODELING EC 2255 - CONTROL SYSTEM UNIT I- CONTROL SYSTEM MODELING 1. What is meant by a system? It is an arrangement of physical components related in such a manner as to form an entire unit. 2. List the two types

More information

Transient response via gain adjustment. Consider a unity feedback system, where G(s) = 2. The closed loop transfer function is. s 2 + 2ζωs + ω 2 n

Transient response via gain adjustment. Consider a unity feedback system, where G(s) = 2. The closed loop transfer function is. s 2 + 2ζωs + ω 2 n Design via frequency response Transient response via gain adjustment Consider a unity feedback system, where G(s) = ωn 2. The closed loop transfer function is s(s+2ζω n ) T(s) = ω 2 n s 2 + 2ζωs + ω 2

More information

Cascade Control of a Continuous Stirred Tank Reactor (CSTR)

Cascade Control of a Continuous Stirred Tank Reactor (CSTR) Journal of Applied and Industrial Sciences, 213, 1 (4): 16-23, ISSN: 2328-4595 (PRINT), ISSN: 2328-469 (ONLINE) Research Article Cascade Control of a Continuous Stirred Tank Reactor (CSTR) 16 A. O. Ahmed

More information

Homework Assignment 3

Homework Assignment 3 ECE382/ME482 Fall 2008 Homework 3 Solution October 20, 2008 1 Homework Assignment 3 Assigned September 30, 2008. Due in lecture October 7, 2008. Note that you must include all of your work to obtain full

More information

APPLICATIONS FOR ROBOTICS

APPLICATIONS FOR ROBOTICS Version: 1 CONTROL APPLICATIONS FOR ROBOTICS TEX d: Feb. 17, 214 PREVIEW We show that the transfer function and conditions of stability for linear systems can be studied using Laplace transforms. Table

More information

The output voltage is given by,

The output voltage is given by, 71 The output voltage is given by, = (3.1) The inductor and capacitor values of the Boost converter are derived by having the same assumption as that of the Buck converter. Now the critical value of the

More information

AN INTRODUCTION TO THE CONTROL THEORY

AN INTRODUCTION TO THE CONTROL THEORY Open-Loop controller An Open-Loop (OL) controller is characterized by no direct connection between the output of the system and its input; therefore external disturbance, non-linear dynamics and parameter

More information

Due Wednesday, February 6th EE/MFS 599 HW #5

Due Wednesday, February 6th EE/MFS 599 HW #5 Due Wednesday, February 6th EE/MFS 599 HW #5 You may use Matlab/Simulink wherever applicable. Consider the standard, unity-feedback closed loop control system shown below where G(s) = /[s q (s+)(s+9)]

More information

Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: Student ID number... Signature...

Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: Student ID number... Signature... Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: 29..23 Given and family names......................solutions...................... Student ID number..........................

More information

ME 475/591 Control Systems Final Exam Fall '99

ME 475/591 Control Systems Final Exam Fall '99 ME 475/591 Control Systems Final Exam Fall '99 Closed book closed notes portion of exam. Answer 5 of the 6 questions below (20 points total) 1) What is a phase margin? Under ideal circumstances, what does

More information

Project Lab Report. Michael Hall. Hao Zhu. Neil Nevgi. Station 6. Ta: Yan Cui

Project Lab Report. Michael Hall. Hao Zhu. Neil Nevgi. Station 6. Ta: Yan Cui Project Lab Report Michael Hall Hao Zhu Neil Nevgi Station 6 Ta: Yan Cui Nov. 12 th 2012 Table of Contents: Executive Summary 3 Modeling Report.4-7 System Identification 7-11 Control Design..11-15 Simulation

More information

Module 6 : Preventive, Emergency and Restorative Control. Lecture 27 : Normal and Alert State in a Power System. Objectives

Module 6 : Preventive, Emergency and Restorative Control. Lecture 27 : Normal and Alert State in a Power System. Objectives Module 6 : Preventive, Emergency and Restorative Control Lecture 27 : Normal and Alert State in a Power System Objectives In this lecture you will learn the following Different states in a power system

More information

Chapter 7. Digital Control Systems

Chapter 7. Digital Control Systems Chapter 7 Digital Control Systems 1 1 Introduction In this chapter, we introduce analysis and design of stability, steady-state error, and transient response for computer-controlled systems. Transfer functions,

More information

Automatic Control II Computer exercise 3. LQG Design

Automatic Control II Computer exercise 3. LQG Design Uppsala University Information Technology Systems and Control HN,FS,KN 2000-10 Last revised by HR August 16, 2017 Automatic Control II Computer exercise 3 LQG Design Preparations: Read Chapters 5 and 9

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 Electrical and Electronics Engineering TUTORIAL QUESTION BAN Course Name : CONTROL SYSTEMS Course Code : A502 Class : III

More information

Control System. Contents

Control System. Contents Contents Chapter Topic Page Chapter- Chapter- Chapter-3 Chapter-4 Introduction Transfer Function, Block Diagrams and Signal Flow Graphs Mathematical Modeling Control System 35 Time Response Analysis of

More information

Automatic Control Systems

Automatic Control Systems Automatic Control Systems Edited by Dr. Yuri Sokolov Contributing Authors: Dr. Victor Iliushko, Dr. Emaid A. Abdul-Retha, Mr. Sönke Dierks, Dr. Pascual Marqués. Published by Marques Aviation Ltd Southport,

More information

Homework 7 - Solutions

Homework 7 - Solutions Homework 7 - Solutions Note: This homework is worth a total of 48 points. 1. Compensators (9 points) For a unity feedback system given below, with G(s) = K s(s + 5)(s + 11) do the following: (c) Find the

More information

Minimax Approximation Synthesis in PSS Design by Embedding

Minimax Approximation Synthesis in PSS Design by Embedding Minimax Approximation Synthesis in PSS Design by Embedding Gravitational Search Algorithm Dr. Akash Saxena Department of Electrical Engineering Swami Keshvanand Institute of Technology Jaipur, India Power

More information

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad ELECTRICAL AND ELECTRONICS ENGINEERING TUTORIAL QUESTION BANK

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad ELECTRICAL AND ELECTRONICS ENGINEERING TUTORIAL QUESTION BANK Course Name Course Code Class Branch INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad -500 043 ELECTRICAL AND ELECTRONICS ENGINEERING TUTORIAL QUESTION BAN : CONTROL SYSTEMS : A50 : III B. Tech

More information

Dr Ian R. Manchester Dr Ian R. Manchester AMME 3500 : Review

Dr Ian R. Manchester Dr Ian R. Manchester AMME 3500 : Review Week Date Content Notes 1 6 Mar Introduction 2 13 Mar Frequency Domain Modelling 3 20 Mar Transient Performance and the s-plane 4 27 Mar Block Diagrams Assign 1 Due 5 3 Apr Feedback System Characteristics

More information

Review: transient and steady-state response; DC gain and the FVT Today s topic: system-modeling diagrams; prototype 2nd-order system

Review: transient and steady-state response; DC gain and the FVT Today s topic: system-modeling diagrams; prototype 2nd-order system Plan of the Lecture Review: transient and steady-state response; DC gain and the FVT Today s topic: system-modeling diagrams; prototype 2nd-order system Plan of the Lecture Review: transient and steady-state

More information

Systems Analysis and Control

Systems Analysis and Control Systems Analysis and Control Matthew M. Peet Arizona State University Lecture 21: Stability Margins and Closing the Loop Overview In this Lecture, you will learn: Closing the Loop Effect on Bode Plot Effect

More information

Contents. PART I METHODS AND CONCEPTS 2. Transfer Function Approach Frequency Domain Representations... 42

Contents. PART I METHODS AND CONCEPTS 2. Transfer Function Approach Frequency Domain Representations... 42 Contents Preface.............................................. xiii 1. Introduction......................................... 1 1.1 Continuous and Discrete Control Systems................. 4 1.2 Open-Loop

More information

Root Locus Design Example #3

Root Locus Design Example #3 Root Locus Design Example #3 A. Introduction The system represents a linear model for vertical motion of an underwater vehicle at zero forward speed. The vehicle is assumed to have zero pitch and roll

More information

SAMPLE SOLUTION TO EXAM in MAS501 Control Systems 2 Autumn 2015

SAMPLE SOLUTION TO EXAM in MAS501 Control Systems 2 Autumn 2015 FACULTY OF ENGINEERING AND SCIENCE SAMPLE SOLUTION TO EXAM in MAS501 Control Systems 2 Autumn 2015 Lecturer: Michael Ruderman Problem 1: Frequency-domain analysis and control design (15 pt) Given is a

More information

Dynamics and control of mechanical systems

Dynamics and control of mechanical systems Dynamics and control of mechanical systems Date Day 1 (03/05) - 05/05 Day 2 (07/05) Day 3 (09/05) Day 4 (11/05) Day 5 (14/05) Day 6 (16/05) Content Review of the basics of mechanics. Kinematics of rigid

More information

A FEEDBACK STRUCTURE WITH HIGHER ORDER DERIVATIVES IN REGULATOR. Ryszard Gessing

A FEEDBACK STRUCTURE WITH HIGHER ORDER DERIVATIVES IN REGULATOR. Ryszard Gessing A FEEDBACK STRUCTURE WITH HIGHER ORDER DERIVATIVES IN REGULATOR Ryszard Gessing Politechnika Śl aska Instytut Automatyki, ul. Akademicka 16, 44-101 Gliwice, Poland, fax: +4832 372127, email: gessing@ia.gliwice.edu.pl

More information

The LR Series Circuit Tutorial Sheet 2 circuits with applied ramp voltages

The LR Series Circuit Tutorial Sheet 2 circuits with applied ramp voltages The L Series Circuit Tutorial Sheet 2 circuits with applied ramp voltages Learning Outcomes, Background information, Prerequisites and how to load and run the accompanying applet are all dealt with either

More information

Regulated DC-DC Converter

Regulated DC-DC Converter Regulated DC-DC Converter Zabir Ahmed Lecturer, BUET Jewel Mohajan Lecturer, BUET M A Awal Graduate Research Assistant NSF FREEDM Systems Center NC State University Former Lecturer, BUET 1 Problem Statement

More information

Design of a Lead Compensator

Design of a Lead Compensator Design of a Lead Compensator Dr. Bishakh Bhattacharya Professor, Department of Mechanical Engineering IIT Kanpur Joint Initiative of IITs and IISc - Funded by MHRD The Lecture Contains Standard Forms of

More information

Module 5: Design of Sampled Data Control Systems Lecture Note 8

Module 5: Design of Sampled Data Control Systems Lecture Note 8 Module 5: Design of Sampled Data Control Systems Lecture Note 8 Lag-lead Compensator When a single lead or lag compensator cannot guarantee the specified design criteria, a laglead compensator is used.

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Report

More information

1 Chapter 9: Design via Root Locus

1 Chapter 9: Design via Root Locus 1 Figure 9.1 a. Sample root locus, showing possible design point via gain adjustment (A) and desired design point that cannot be met via simple gain adjustment (B); b. responses from poles at A and B 2

More information

FEEDBACK CONTROL SYSTEMS

FEEDBACK CONTROL SYSTEMS FEEDBAC CONTROL SYSTEMS. Control System Design. Open and Closed-Loop Control Systems 3. Why Closed-Loop Control? 4. Case Study --- Speed Control of a DC Motor 5. Steady-State Errors in Unity Feedback Control

More information

Proportional plus Integral (PI) Controller

Proportional plus Integral (PI) Controller Proportional plus Integral (PI) Controller 1. A pole is placed at the origin 2. This causes the system type to increase by 1 and as a result the error is reduced to zero. 3. Originally a point A is on

More information

Robust Performance Example #1

Robust Performance Example #1 Robust Performance Example # The transfer function for a nominal system (plant) is given, along with the transfer function for one extreme system. These two transfer functions define a family of plants

More information

9. Two-Degrees-of-Freedom Design

9. Two-Degrees-of-Freedom Design 9. Two-Degrees-of-Freedom Design In some feedback schemes we have additional degrees-offreedom outside the feedback path. For example, feed forwarding known disturbance signals or reference signals. In

More information

Lecture 12. Upcoming labs: Final Exam on 12/21/2015 (Monday)10:30-12:30

Lecture 12. Upcoming labs: Final Exam on 12/21/2015 (Monday)10:30-12:30 289 Upcoming labs: Lecture 12 Lab 20: Internal model control (finish up) Lab 22: Force or Torque control experiments [Integrative] (2-3 sessions) Final Exam on 12/21/2015 (Monday)10:30-12:30 Today: Recap

More information

Lecture 25: Tue Nov 27, 2018

Lecture 25: Tue Nov 27, 2018 Lecture 25: Tue Nov 27, 2018 Reminder: Lab 3 moved to Tuesday Dec 4 Lecture: review time-domain characteristics of 2nd-order systems intro to control: feedback open-loop vs closed-loop control intro to

More information

Lecture 17 Date:

Lecture 17 Date: Lecture 17 Date: 27.10.2016 Feedback and Properties, Types of Feedback Amplifier Stability Gain and Phase Margin Modification Elements of Feedback System: (a) The feed forward amplifier [H(s)] ; (b) A

More information

CBE495 LECTURE IV MODEL PREDICTIVE CONTROL

CBE495 LECTURE IV MODEL PREDICTIVE CONTROL What is Model Predictive Control (MPC)? CBE495 LECTURE IV MODEL PREDICTIVE CONTROL Professor Dae Ryook Yang Fall 2013 Dept. of Chemical and Biological Engineering Korea University * Some parts are from

More information

Time Response Analysis (Part II)

Time Response Analysis (Part II) Time Response Analysis (Part II). A critically damped, continuous-time, second order system, when sampled, will have (in Z domain) (a) A simple pole (b) Double pole on real axis (c) Double pole on imaginary

More information

DESIGN MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT. Dr. Eman Azab Assistant Professor Office: C

DESIGN MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT. Dr. Eman Azab Assistant Professor Office: C MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT DESIGN Dr. Eman Azab Assistant Professor Office: C3.315 E-mail: eman.azab@guc.edu.eg 1 TWO STAGE CMOS OP-AMP It consists of two stages: First

More information

Digital Control Engineering Analysis and Design

Digital Control Engineering Analysis and Design Digital Control Engineering Analysis and Design M. Sami Fadali Antonio Visioli AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO Academic Press is

More information

6.302 Feedback Systems

6.302 Feedback Systems MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.302 Feedback Systems Fall Term 2005 Issued : November 18, 2005 Lab 2 Series Compensation in Practice Due

More information

AC Circuits Homework Set

AC Circuits Homework Set Problem 1. In an oscillating LC circuit in which C=4.0 μf, the maximum potential difference across the capacitor during the oscillations is 1.50 V and the maximum current through the inductor is 50.0 ma.

More information

(b) A unity feedback system is characterized by the transfer function. Design a suitable compensator to meet the following specifications:

(b) A unity feedback system is characterized by the transfer function. Design a suitable compensator to meet the following specifications: 1. (a) The open loop transfer function of a unity feedback control system is given by G(S) = K/S(1+0.1S)(1+S) (i) Determine the value of K so that the resonance peak M r of the system is equal to 1.4.

More information

Improving the Control System for Pumped Storage Hydro Plant

Improving the Control System for Pumped Storage Hydro Plant 011 International Conference on Computer Communication and Management Proc.of CSIT vol.5 (011) (011) IACSIT Press, Singapore Improving the Control System for Pumped Storage Hydro Plant 1 Sa ad. P. Mansoor

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUESTION BANK SUB.NAME : CONTROL SYSTEMS BRANCH : ECE YEAR : II SEMESTER: IV 1. What is control system? 2. Define open

More information

Introduction to Process Control

Introduction to Process Control Introduction to Process Control For more visit :- www.mpgirnari.in By: M. P. Girnari (SSEC, Bhavnagar) For more visit:- www.mpgirnari.in 1 Contents: Introduction Process control Dynamics Stability The

More information

Power System Stability and Control. Dr. B. Kalyan Kumar, Department of Electrical Engineering, Indian Institute of Technology Madras, Chennai, India

Power System Stability and Control. Dr. B. Kalyan Kumar, Department of Electrical Engineering, Indian Institute of Technology Madras, Chennai, India Power System Stability and Control Dr. B. Kalyan Kumar, Department of Electrical Engineering, Indian Institute of Technology Madras, Chennai, India Contents Chapter 1 Introduction to Power System Stability

More information

Bandwidth of op amps. R 1 R 2 1 k! 250 k!

Bandwidth of op amps. R 1 R 2 1 k! 250 k! Bandwidth of op amps An experiment - connect a simple non-inverting op amp and measure the frequency response. From the ideal op amp model, we expect the amp to work at any frequency. Is that what happens?

More information

Lecture 6 Classical Control Overview IV. Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore

Lecture 6 Classical Control Overview IV. Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore Lecture 6 Classical Control Overview IV Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore Lead Lag Compensator Design Dr. Radhakant Padhi Asst.

More information

Mathematical Modeling and Dynamic Simulation of DC Motors using MATLAB/Simulink Environment

Mathematical Modeling and Dynamic Simulation of DC Motors using MATLAB/Simulink Environment Mathematical Modeling and Dynamic Simulation of DC Motors using MATLAB/Simulink Environment K. Kalaiselvi 1, K.Abinaya 2, P. Ramesh Babu 3 1,2 Under Graduate Scholar, Department of EEE, Saranathan College

More information

Design via Root Locus

Design via Root Locus Design via Root Locus I 9 Chapter Learning Outcomes J After completing this chapter the student will be able to: Use the root locus to design cascade compensators to improve the steady-state error (Sections

More information

Chapter 9: Transient Stability

Chapter 9: Transient Stability Chapter 9: Transient Stability 9.1 Introduction The first electric power system was a dc system built by Edison in 1882. The subsequent power systems that were constructed in the late 19 th century were

More information

Control Systems I Lecture 10: System Specifications

Control Systems I Lecture 10: System Specifications Control Systems I Lecture 10: System Specifications Readings: Guzzella, Chapter 10 Emilio Frazzoli Institute for Dynamic Systems and Control D-MAVT ETH Zürich November 24, 2017 E. Frazzoli (ETH) Lecture

More information

Dynamic simulation of a five-bus system

Dynamic simulation of a five-bus system ELEC0047 - Power system dynamics, control and stability Dynamic simulation of a five-bus system Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct November 2017 1 / 16 System modelling

More information

Performance Of Power System Stabilizerusing Fuzzy Logic Controller

Performance Of Power System Stabilizerusing Fuzzy Logic Controller IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 3 Ver. I (May Jun. 2014), PP 42-49 Performance Of Power System Stabilizerusing Fuzzy

More information

Bangladesh University of Engineering and Technology. EEE 402: Control System I Laboratory

Bangladesh University of Engineering and Technology. EEE 402: Control System I Laboratory Bangladesh University of Engineering and Technology Electrical and Electronic Engineering Department EEE 402: Control System I Laboratory Experiment No. 4 a) Effect of input waveform, loop gain, and system

More information