Exercise 4: 2.order Systems (Solutions)

Size: px
Start display at page:

Download "Exercise 4: 2.order Systems (Solutions)"

Transcription

1 Exercise 4: 2.order Systems (Solutions) A second order transfer function is given on the form: Where is the gain zeta is the relative damping factor [rad/s] is the undamped resonance frequency. The value of is critical for stability of the system: Faculty of Technology, Postboks 203, Kjølnes ring 56, N-3901 Porsgrunn, Norway. Tel: Fax:

2 2 The overshoot factor ( oversvingsfaktoren ) of the step response is defined as: MathScript: We can easily implement and analyze 2.order systems in MathScript using built-in functions. Example: We have the following 2.order system: i.e., We can use the tf function or the sys_order2 function in MathScript: num=[1]; den=[1, 1, 1]; H = tf(num, den) step(h) or: dr = 1 wn = 1 [num, den] = sys_order2(wn, dr) H = tf(num, den) step(h) This should give the same results. [End of Example] Task 1: Basic 2.order properties Given the following transfer function: Task 1.1 Find the following parameters (pen and paper): The gain The relative damping factor The undamped resonance frequency [rad/s]

3 3 Based on the general case: We get: The undamped resonance frequency [rad/s]: The relative damping factor : The gain Task 2: Response Time Given the following transfer function: Task 2.1 Find the total response time for the given system. Note! The response time for a 2.order system is approximately: We do the following: The total response time for the given system is: Where

4 4 We need to find : We have: This means: Then we get: Task 3: Transfer function to Differential equation Given the following transfer function: Task 3.1 Find the differential equation for the system. We do as follows: [ ] [ ] This gives: This gives the following differential equation: Task 4: 2.order transfer functions Task 4.1 Define the transfer function below using the tf and the sys_order2 functions (2 different methods that should give the same results).

5 5 Set Do you get the same results using tf() and sys_order2()? clear clc K = 1; w = 1; z = 1; num = [K]; den = [(1/w)^2, 2*z*(1/w), 1]; H = tf(num, den) step(h) or: clear clc dr = 1 wn = 1 H = sys_order2(wn, dr) step(h) Task 4.2 Plot the step response (use the step function in MathScript) for different values of. Select follows: as Explain the results.

6 6 We see the results are as expected. gives a underdamped system gives a critically damped system gives a overdamped system Task 5: More 2.order transfer functions For the transfer functions given below, find the following parameters: The gain The relative damping factor The undamped resonance frequency [rad/s] You may also try to implement the systems in MathScript and perform a step response. Task 5.1 Based on the general case: We get:

7 7 1. The undamped resonance frequency [rad/s]: ( has no relevance) 2. The relative damping factor : 3. The gain 4. The overshoot factor : Task 5.2 Based on the general case: We transform our transfer function as follows: Then we get: 1. The undamped resonance frequency [rad/s]: ( has no relevance) 2. The relative damping factor :

8 8 3. The gain 4. The overshoot factor : MathScript Code: clear clc % System 1 num1 = [5]; den1 = [1, 4, 1] H1 = tf(num1, den1) figure(1) step(h1) % System 1 num2 = [9]; den2 = [3, 4, 2] H2 = tf(num2, den2) figure(2) step(h2) Task 6: Differential equation to Transfer function Given the following differential equation: Task 6.1 Find the transfer function: We get:

9 9 Further: [ ] This gives the following transfer function: Task 7: Stability Given the following system: Task 7.1 Find poles and zeroes for the system (check your answer using MathScript) and draw them in the complex plane. Tip! In MathScript you can use the built-in functions poles(), zero() and pzgraph(). Solutions: Zeros: Poles:

10 10 MathScript: MathScript code: clear clc % Transfer function num = 5*[10, -1]; den1 = [2, 1]; den2 = [5, 1]; den = conv(den1,den2); H = tf(num, den) p = poles(h) z = zero(h) pzmap(h) We get the same answer in MathScript. Task 7.2 Is the system stable or not? Why/Why not? The system is stable because both the poles are in the left half plane. Task 8: Mass-spring-damper system Given the following system: is the position is the speed/velocity is the acceleration F is the Force (control signal, u) d and k are constants Task 8.1 Draw a block diagram for the system using pen and paper.

11 11 The block diagram becomes: You may also use this notation: Task 8.2 Based on the block diagram, find the transfer function for the system. Where the force may be denoted as the control signal. Set the transfer function on the on the following standard form: Find, and as functions of, and. In order to find the transfer function for the system, we need to use the serial and feedback rules.

12 12 We start by using the serial rule: Next, we use the feedback rule: Next, we use the serial rule: Finally, we use the feedback rule: Or if we want it on the standard 2.order form: We get: This means: Task 8.3 Simulate the system in MathScript (step response). Try with different values for, and.

13 13 MathScript code: % Mass-spring-damper system clear clc % Define variables m = 1; d = 1; k = 1; % Define Transfer function num = 1/m ; den = [1, (d/m), (k/m)]; H = tf(num, den); % Step Response step(h) This gives the following results: Additional Resources Here you will find tutorials, additional exercises, etc.

Exercise 8: Frequency Response

Exercise 8: Frequency Response Exercise 8: Frequency Response Introduction We can find the frequency response of a system by exciting the system with a sinusoidal signal of amplitude A and frequency ω [rad/s] (Note: ω = 2πf) and observing

More information

LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis

LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis 4.1 Transient Response and Steady-State Response The time response of a control system consists of two parts: the transient

More information

MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position

MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position University of California, Irvine Department of Mechanical and Aerospace Engineering Goals Understand how to implement and tune a PD

More information

[ á{tå TÄàt. Chapter Four. Time Domain Analysis of control system

[ á{tå TÄàt. Chapter Four. Time Domain Analysis of control system Chapter Four Time Domain Analysis of control system The time response of a control system consists of two parts: the transient response and the steady-state response. By transient response, we mean that

More information

CONTENTS. Cambridge University Press Vibration of Mechanical Systems Alok Sinha Table of Contents More information

CONTENTS. Cambridge University Press Vibration of Mechanical Systems Alok Sinha Table of Contents More information CONTENTS Preface page xiii 1 Equivalent Single-Degree-of-Freedom System and Free Vibration... 1 1.1 Degrees of Freedom 3 1.2 Elements of a Vibratory System 5 1.2.1 Mass and/or Mass-Moment of Inertia 5

More information

Introduction to PID Control

Introduction to PID Control Introduction to PID Control Introduction This introduction will show you the characteristics of the each of proportional (P), the integral (I), and the derivative (D) controls, and how to use them to obtain

More information

EE 42/100: Lecture 8. 1 st -Order RC Transient Example, Introduction to 2 nd -Order Transients. EE 42/100 Summer 2012, UC Berkeley T.

EE 42/100: Lecture 8. 1 st -Order RC Transient Example, Introduction to 2 nd -Order Transients. EE 42/100 Summer 2012, UC Berkeley T. EE 42/100: Lecture 8 1 st -Order RC Transient Example, Introduction to 2 nd -Order Transients Circuits with non-dc Sources Recall that the solution to our ODEs is Particular solution is constant for DC

More information

Lab 11. Speed Control of a D.C. motor. Motor Characterization

Lab 11. Speed Control of a D.C. motor. Motor Characterization Lab 11. Speed Control of a D.C. motor Motor Characterization Motor Speed Control Project 1. Generate PWM waveform 2. Amplify the waveform to drive the motor 3. Measure motor speed 4. Estimate motor parameters

More information

EC CONTROL SYSTEMS ENGINEERING

EC CONTROL SYSTEMS ENGINEERING 1 YEAR / SEM: II / IV EC 1256. CONTROL SYSTEMS ENGINEERING UNIT I CONTROL SYSTEM MODELING PART-A 1. Define open loop and closed loop systems. 2. Define signal flow graph. 3. List the force-voltage analogous

More information

Figure 1: Unity Feedback System. The transfer function of the PID controller looks like the following:

Figure 1: Unity Feedback System. The transfer function of the PID controller looks like the following: Islamic University of Gaza Faculty of Engineering Electrical Engineering department Control Systems Design Lab Eng. Mohammed S. Jouda Eng. Ola M. Skeik Experiment 3 PID Controller Overview This experiment

More information

ω d = driving frequency, F m = amplitude of driving force, b = damping constant and ω = natural frequency of undamped, undriven oscillator.

ω d = driving frequency, F m = amplitude of driving force, b = damping constant and ω = natural frequency of undamped, undriven oscillator. Physics 121H Fall 2015 Homework #14 16-November-2015 Due Date : 23-November-2015 Reading : Chapter 15 Note: Problems 7 & 8 are tutorials dealing with damped and driven oscillations, respectively. It may

More information

Lecture 18 Stability of Feedback Control Systems

Lecture 18 Stability of Feedback Control Systems 16.002 Lecture 18 Stability of Feedback Control Systems May 9, 2008 Today s Topics Stabilizing an unstable system Stability evaluation using frequency responses Take Away Feedback systems stability can

More information

EC6405 - CONTROL SYSTEM ENGINEERING Questions and Answers Unit - II Time Response Analysis Two marks 1. What is transient response? The transient response is the response of the system when the system

More information

Chapter 8. Natural and Step Responses of RLC Circuits

Chapter 8. Natural and Step Responses of RLC Circuits Chapter 8. Natural and Step Responses of RLC Circuits By: FARHAD FARADJI, Ph.D. Assistant Professor, Electrical Engineering, K.N. Toosi University of Technology http://wp.kntu.ac.ir/faradji/electriccircuits1.htm

More information

EE 42/100 Lecture 18: RLC Circuits. Rev A 3/17/2010 (3:48 PM) Prof. Ali M. Niknejad

EE 42/100 Lecture 18: RLC Circuits. Rev A 3/17/2010 (3:48 PM) Prof. Ali M. Niknejad A. M. Niknejad University of California, Berkeley EE 100 / 42 Lecture 18 p. 1/19 EE 42/100 Lecture 18: RLC Circuits ELECTRONICS Rev A 3/17/2010 (3:48 PM) Prof. Ali M. Niknejad University of California,

More information

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control 264 Lab next week: Lecture 10 Lab 17: Proportional Control Lab 18: Proportional-Integral Control (1/2) Agenda: Control design fundamentals Objectives (Tracking, disturbance/noise rejection, robustness)

More information

Vibration of Mechanical Systems

Vibration of Mechanical Systems Vibration of Mechanical Systems This is a textbook for a first course in mechanical vibrations. There are many books in this area that try to include everything, thus they have become exhaustive compendiums

More information

Frequency Response Analysis and Design Tutorial

Frequency Response Analysis and Design Tutorial 1 of 13 1/11/2011 5:43 PM Frequency Response Analysis and Design Tutorial I. Bode plots [ Gain and phase margin Bandwidth frequency Closed loop response ] II. The Nyquist diagram [ Closed loop stability

More information

MATLAB and Simulink in Mechatronics Education*

MATLAB and Simulink in Mechatronics Education* Int. J. Engng Ed. Vol. 21, No. 5, pp. 896±905, 2005 0949-149X/91 $3.00+0.00 Printed in Great Britain. # 2005 TEMPUS Publications. MATLAB and Simulink in Mechatronics Education* A. ALBAGUL, OTHMAN O. KHALIFA

More information

Conventional geophone topologies and their intrinsic physical limitations, determined

Conventional geophone topologies and their intrinsic physical limitations, determined Magnetic innovation in velocity sensing Low -frequency with passive Conventional geophone topologies and their intrinsic physical limitations, determined by the mechanical construction, limit their velocity

More information

Automatic Control Systems 2017 Spring Semester

Automatic Control Systems 2017 Spring Semester Automatic Control Systems 2017 Spring Semester Assignment Set 1 Dr. Kalyana C. Veluvolu Deadline: 11-APR - 16:00 hours @ IT1-815 1) Find the transfer function / for the following system using block diagram

More information

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS ANNA UNIVERSITY :: CHENNAI - 600 025 MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS Time: 3hrs Max Marks: 100 Answer all Questions PART - A (10

More information

EE422G Solution to Homework #8

EE422G Solution to Homework #8 EE4G Solution to Homework #8. MATLAB >> H = tf([ 4],[ 6 6]); >> H = tf([ ],[ - 5 5 4]); >> step(h).7 Step Response.6.5 Amplitude.4... 4 5 6 >> step(h) Time (sec).5 Step Response.5 Amplitude.5.5.5..5..5..5.4.45

More information

Lecture 7:Examples using compensators

Lecture 7:Examples using compensators Lecture :Examples using compensators Venkata Sonti Department of Mechanical Engineering Indian Institute of Science Bangalore, India, This draft: March, 8 Example :Spring Mass Damper with step input Consider

More information

Math 240: Spring-Mass Systems

Math 240: Spring-Mass Systems Math 240: Spring-Mass Systems Ryan Blair University of Pennsylvania Wednesday December 5, 2012 Ryan Blair (U Penn) Math 240: Spring-Mass Systems Wednesday December 5, 2012 1 / 13 Outline 1 Today s Goals

More information

Oscillations II: Damped and/or Driven Oscillations

Oscillations II: Damped and/or Driven Oscillations Oscillations II: Damped and/or Driven Oscillations Michael Fowler 3/4/9 Introducing Damping We ll assume the damping force is proportional to the velocity, and, of course, in the opposite direction. Then

More information

EEL2216 Control Theory CT2: Frequency Response Analysis

EEL2216 Control Theory CT2: Frequency Response Analysis EEL2216 Control Theory CT2: Frequency Response Analysis 1. Objectives (i) To analyse the frequency response of a system using Bode plot. (ii) To design a suitable controller to meet frequency domain and

More information

EECS40 RLC Lab guide

EECS40 RLC Lab guide EECS40 RLC Lab guide Introduction Second-Order Circuits Second order circuits have both inductor and capacitor components, which produce one or more resonant frequencies, ω0. In general, a differential

More information

ME451: Control Systems. Course roadmap

ME451: Control Systems. Course roadmap ME451: Control Systems Lecture 20 Root locus: Lead compensator design Dr. Jongeun Choi Department of Mechanical Engineering Michigan State University Fall 2008 1 Modeling Course roadmap Analysis Design

More information

The Discussion of this exercise covers the following points: Angular position control block diagram and fundamentals. Power amplifier 0.

The Discussion of this exercise covers the following points: Angular position control block diagram and fundamentals. Power amplifier 0. Exercise 6 Motor Shaft Angular Position Control EXERCISE OBJECTIVE When you have completed this exercise, you will be able to associate the pulses generated by a position sensing incremental encoder with

More information

, answer the next six questions.

, answer the next six questions. Frequency Response Problems Conceptual Questions 1) T/F Given f(t) = A cos (ωt + θ): The amplitude of the output in sinusoidal steady-state increases as K increases and decreases as ω increases. 2) T/F

More information

LC Resonant Circuits Dr. Roger King June Introduction

LC Resonant Circuits Dr. Roger King June Introduction LC Resonant Circuits Dr. Roger King June 01 Introduction Second-order systems are important in a wide range of applications including transformerless impedance-matching networks, frequency-selective networks,

More information

The period is the time required for one complete oscillation of the function.

The period is the time required for one complete oscillation of the function. Trigonometric Curves with Sines & Cosines + Envelopes Terminology: AMPLITUDE the maximum height of the curve For any periodic function, the amplitude is defined as M m /2 where M is the maximum value and

More information

JNTUWORLD. 6 The unity feedback system whose open loop transfer function is given by G(s)=K/s(s 2 +6s+10) Determine: (i) Angles of asymptotes *****

JNTUWORLD. 6 The unity feedback system whose open loop transfer function is given by G(s)=K/s(s 2 +6s+10) Determine: (i) Angles of asymptotes ***** Code: 9A050 III B. Tech I Semester (R09) Regular Eaminations, November 0 Time: hours Ma Marks: 70 (a) What is a mathematical model of a physical system? Eplain briefly. (b) Write the differential equations

More information

CHAPTER 6 INTRODUCTION TO SYSTEM IDENTIFICATION

CHAPTER 6 INTRODUCTION TO SYSTEM IDENTIFICATION CHAPTER 6 INTRODUCTION TO SYSTEM IDENTIFICATION Broadly speaking, system identification is the art and science of using measurements obtained from a system to characterize the system. The characterization

More information

the pilot valve effect of

the pilot valve effect of Actiive Feedback Control and Shunt Damping Example 3.2: A servomechanism incorporating a hydraulic relay with displacement feedback throughh a dashpot and spring assembly is shown below. [Control System

More information

Exam Signal Detection and Noise

Exam Signal Detection and Noise Exam Signal Detection and Noise Tuesday 27 January 2015 from 14:00 until 17:00 Lecturer: Sense Jan van der Molen Important: It is not allowed to use a calculator. Complete each question on a separate piece

More information

Välkomna till TSRT15 Reglerteknik Föreläsning 8

Välkomna till TSRT15 Reglerteknik Föreläsning 8 Välkomna till TSRT15 Reglerteknik Föreläsning 8 Summary of lecture 7 More Bode plot computations Lead-lag design Unstable zeros - frequency plane interpretation Summary of last lecture 2 W(s) H(s) R(s)

More information

Infinite Impulse Response Filters

Infinite Impulse Response Filters 6 Infinite Impulse Response Filters Ren Zhou In this chapter we introduce the analysis and design of infinite impulse response (IIR) digital filters that have the potential of sharp rolloffs (Tompkins

More information

Experiment Number 2. Revised: Summer 2013 PLECS RC, RL, and RLC Simulations

Experiment Number 2. Revised: Summer 2013 PLECS RC, RL, and RLC Simulations Preface: Experiment Number 2 Revised: Summer 2013 PLECS RC, RL, and RLC Simulations Preliminary exercises are to be done and submitted individually Laboratory simulation exercises are to be done individually

More information

High-speed Serial Interface

High-speed Serial Interface High-speed Serial Interface Lect. 9 PLL (Introduction) 1 Block diagram Where are we today? Serializer Tx Driver Channel Rx Equalizer Sampler Deserializer PLL Clock Recovery Tx Rx 2 Clock Clock: Timing

More information

Dr Ian R. Manchester

Dr Ian R. Manchester Week Content Notes 1 Introduction 2 Frequency Domain Modelling 3 Transient Performance and the s-plane 4 Block Diagrams 5 Feedback System Characteristics Assign 1 Due 6 Root Locus 7 Root Locus 2 Assign

More information

Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor

Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor 2.737 Mechatronics Dept. of Mechanical Engineering Massachusetts Institute of Technology Cambridge, MA0239 Topics Motor modeling

More information

Readings: FC: p : lead compensation. 9/9/2011 Classical Control 1

Readings: FC: p : lead compensation. 9/9/2011 Classical Control 1 MM0 Frequency Response Design Readings: FC: p389-407: lead compensation 9/9/20 Classical Control What Have We Talked about in MM9? Control design based on Bode plot Stability margins (Gain margin and phase

More information

Rotary Motion Servo Plant: SRV02. Rotary Experiment #03: Speed Control. SRV02 Speed Control using QuaRC. Student Manual

Rotary Motion Servo Plant: SRV02. Rotary Experiment #03: Speed Control. SRV02 Speed Control using QuaRC. Student Manual Rotary Motion Servo Plant: SRV02 Rotary Experiment #03: Speed Control SRV02 Speed Control using QuaRC Student Manual Table of Contents 1. INTRODUCTION...1 2. PREREQUISITES...1 3. OVERVIEW OF FILES...2

More information

JUNE 2014 Solved Question Paper

JUNE 2014 Solved Question Paper JUNE 2014 Solved Question Paper 1 a: Explain with examples open loop and closed loop control systems. List merits and demerits of both. Jun. 2014, 10 Marks Open & Closed Loop System - Advantages & Disadvantages

More information

Physics 132 Quiz # 23

Physics 132 Quiz # 23 Name (please (please print) print) Physics 132 Quiz # 23 I. I. The The current in in an an ac ac circuit is is represented by by a phasor.the value of of the the current at at some time time t t is is

More information

EE 435. Lecture 16. Compensation Systematic Two-Stage Op Amp Design

EE 435. Lecture 16. Compensation Systematic Two-Stage Op Amp Design EE 435 Lecture 16 Compensation Systematic Two-Stage Op Amp Design Review from last lecture Review of Basic Concepts Pole Locations and Stability Theorem: A system is stable iff all closed-loop poles lie

More information

Experiment Number 2. Revised: Fall 2018 PLECS RC, RL, and RLC Simulations

Experiment Number 2. Revised: Fall 2018 PLECS RC, RL, and RLC Simulations Experiment Number 2 Revised: Fall 2018 PLECS RC, RL, and RLC Simulations Preface: Experiment number 2 will be held in CLC room 105, 106, or 107. Your TA will let you know Preliminary exercises are to be

More information

C O N T R O L S Y S T E M EX-602/ EE 801

C O N T R O L S Y S T E M EX-602/ EE 801 PRACTICAL WORK BOOK C O N T R O L S Y S T E M EX-602/ EE 801 Name: Enrollment No: Branch: Semester: Batch: Department of Electrical Engineering Name of Laboratory : Control System Lab Subject Code : EX

More information

Reduction of Multiple Subsystems

Reduction of Multiple Subsystems Reduction of Multiple Subsystems Ref: Control System Engineering Norman Nise : Chapter 5 Chapter objectives : How to reduce a block diagram of multiple subsystems to a single block representing the transfer

More information

Produced in cooperation with. Revision: May 26, Overview

Produced in cooperation with. Revision: May 26, Overview Lab Aignment 6: Tranfer Function Analyi Reviion: May 6, 007 Produced in cooperation with www.digilentinc.com Overview In thi lab, we will employ tranfer function to determine the frequency repone and tranient

More information

Bode Plots. Hamid Roozbahani

Bode Plots. Hamid Roozbahani Bode Plots Hamid Roozbahani A Bode plot is a graph of the transfer function of a linear, time-invariant system versus frequency, plotted with a logfrequency axis, to show the system's frequency response.

More information

15EI303L- CONTROL SYSTEMS ENGINEERING LABORATORY

15EI303L- CONTROL SYSTEMS ENGINEERING LABORATORY 15EI303L- CONTROL SYSTEMS ENGINEERING LABORATORY Department of Electronics and Instrumentation Engineering Faculty of Engineering and Technology Department of Electronics and Instrumentation Engineering

More information

Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #1 Sinusoids, Transforms and Transfer Functions

Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #1 Sinusoids, Transforms and Transfer Functions Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Homework #1 Sinusoids, Transforms and Transfer Functions Assigned on Friday, February 2, 2018 Due on Friday, February 9, 2018, by

More information

Intermediate Lateral Autopilots (I) Yaw orientation control

Intermediate Lateral Autopilots (I) Yaw orientation control Intermediate Lateral Autopilots (I) Yaw orientation control Yaw orientation autopilot Lateral autopilot for yaw maneuver Designed to have the aircraft follow the pilot's yaw rate command or hold the aircraft

More information

Course Outline. Time vs. Freq. Domain Analysis. Frequency Response. Amme 3500 : System Dynamics & Control. Design via Frequency Response

Course Outline. Time vs. Freq. Domain Analysis. Frequency Response. Amme 3500 : System Dynamics & Control. Design via Frequency Response Course Outline Amme 35 : System Dynamics & Control Design via Frequency Response Week Date Content Assignment Notes Mar Introduction 2 8 Mar Frequency Domain Modelling 3 5 Mar Transient Performance and

More information

FlexLab and LevLab: A Portable Lab for Dynamics and Control Teaching

FlexLab and LevLab: A Portable Lab for Dynamics and Control Teaching FlexLab and LevLab: A Portable Lab for Dynamics and Control Teaching Lei Zhou, Mohammad Imani Nejad, David L. Trumper Department of Mechanical Engineering, Massachusetts Institute of Technology, Cambridge,

More information

EGR/MA265, Math Tools for Engineering Problem Solving Final Exam, 2013

EGR/MA265, Math Tools for Engineering Problem Solving Final Exam, 2013 EGR/MA265, Math Tools for Engineering Problem Solving Final Exam, 2013 Name and section: Instructors name: 1. Do not open this exam until you are told to do so. 2. This exam has 14 pages including this

More information

1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal.

1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal. Control Systems (EC 334) 1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal. 2.List out the different frequency

More information

ECE317 Homework 7. where

ECE317 Homework 7. where ECE317 Homework 7 Problem 1: Consider a system with loop gain, T(s), given by: where T(s) = 300(1+s)(1+ s 40 ) 1) Determine whether the system is stable by finding the closed loop poles of the system using

More information

Problem set: Exercises in nodal analysis, MOTC, and broadband circuits. Problem 1 Take a highly simplified model of a bipolar transistor as below B

Problem set: Exercises in nodal analysis, MOTC, and broadband circuits. Problem 1 Take a highly simplified model of a bipolar transistor as below B Problem set: Exercises in nodal analysis, MOTC, and broadband circuits Problem 1 Take a highly simplified model of a bipolar transistor as below B C Cbe gmvbe E m qi c / Where g = kt and Cbe = g m τ f,

More information

Filter Considerations for the IBC

Filter Considerations for the IBC APPLICATION NOTE AN:202 Filter Considerations for the IBC Mike DeGaetano Application Engineering Contents Page Introduction 1 IBC Attributes 1 Input Filtering Considerations 2 Damping and Converter Bandwidth

More information

EXPERIMENT 8: LRC CIRCUITS

EXPERIMENT 8: LRC CIRCUITS EXPERIMENT 8: LRC CIRCUITS Equipment List S 1 BK Precision 4011 or 4011A 5 MHz Function Generator OS BK 2120B Dual Channel Oscilloscope V 1 BK 388B Multimeter L 1 Leeds & Northrup #1532 100 mh Inductor

More information

While the Riso circuit is both simple to implement and design it has a big disadvantage in precision circuits. The voltage drop from Riso is

While the Riso circuit is both simple to implement and design it has a big disadvantage in precision circuits. The voltage drop from Riso is Hello, and welcome to part six of the TI Precision Labs on op amp stability. This lecture will describe the Riso with dual feedback stability compensation method. From 5: The previous videos discussed

More information

CHAPTER 9 FEEDBACK. NTUEE Electronics L.H. Lu 9-1

CHAPTER 9 FEEDBACK. NTUEE Electronics L.H. Lu 9-1 CHAPTER 9 FEEDBACK Chapter Outline 9.1 The General Feedback Structure 9.2 Some Properties of Negative Feedback 9.3 The Four Basic Feedback Topologies 9.4 The Feedback Voltage Amplifier (Series-Shunt) 9.5

More information

856 Feedback Networks: Theory and Circuit Applications. Butterworth MFM response, 767 Butterworth response, 767

856 Feedback Networks: Theory and Circuit Applications. Butterworth MFM response, 767 Butterworth response, 767 Index I/O transfer admittance, 448 N stage cascade, 732, 734 S-parameter characterization, 226 ω max, 204 π-type, 148 π-type network model, 137 c-parameter, 151, 153 c-parameter matrix, 154 g-parameter

More information

CLC440 High Speed, Low Power, Voltage Feedback Op Amp

CLC440 High Speed, Low Power, Voltage Feedback Op Amp CLC440 High Speed, Low Power, Voltage Feedback Op Amp General Description The CLC440 is a wideband, low power, voltage feedback op amp that offers 750MHz unity-gain bandwidth, 1500V/µs slew rate, and 90mA

More information

Load Observer and Tuning Basics

Load Observer and Tuning Basics Load Observer and Tuning Basics Feature Use & Benefits Mark Zessin Motion Solution Architect Rockwell Automation PUBLIC INFORMATION Rev 5058-CO900E Questions Addressed Why is Motion System Tuning Necessary?

More information

Modeling Amplifiers as Analog Filters Increases SPICE Simulation Speed

Modeling Amplifiers as Analog Filters Increases SPICE Simulation Speed Modeling Amplifiers as Analog Filters Increases SPICE Simulation Speed By David Karpaty Introduction Simulation models for amplifiers are typically implemented with resistors, capacitors, transistors,

More information

ELEC3104: Digital Signal Processing Session 1, 2013 LABORATORY 3: IMPULSE RESPONSE, FREQUENCY RESPONSE AND POLES/ZEROS OF SYSTEMS

ELEC3104: Digital Signal Processing Session 1, 2013 LABORATORY 3: IMPULSE RESPONSE, FREQUENCY RESPONSE AND POLES/ZEROS OF SYSTEMS ELEC3104: Digital Signal Processing Session 1, 2013 The University of New South Wales School of Electrical Engineering and Telecommunications LABORATORY 3: IMPULSE RESPONSE, FREQUENCY RESPONSE AND POLES/ZEROS

More information

Dynamic Vibration Absorber

Dynamic Vibration Absorber Part 1B Experimental Engineering Integrated Coursework Location: DPO Experiment A1 (Short) Dynamic Vibration Absorber Please bring your mechanics data book and your results from first year experiment 7

More information

Thursday, 1/23/19 Automatic Gain Control As previously shown, 1 0 is a nonlinear system that produces a limit cycle with a distorted sinusoid for

Thursday, 1/23/19 Automatic Gain Control As previously shown, 1 0 is a nonlinear system that produces a limit cycle with a distorted sinusoid for Thursday, 1/23/19 Automatic Gain Control As previously shown, 1 0 is a nonlinear system that produces a limit cycle with a distorted sinusoid for x(t), which is not a very good sinusoidal oscillator. A

More information

PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM KIT

PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM KIT Eniko T. Enikov, University of Arizona Estelle Eke, California State University Sacramento PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM

More information

(A) Based on the second-order FRF provided, determine appropriate values for ω n, ζ, and K. ω n =500 rad/s; ζ=0.1; K=0.

(A) Based on the second-order FRF provided, determine appropriate values for ω n, ζ, and K. ω n =500 rad/s; ζ=0.1; K=0. ME35 Homework # Due: 1/1/1 Problem #1 (3%) A co-worker brings you an accelerometer spec sheet with the following frequency response function (FRF):. s G accelerometer = [volt +.1 jω.1 ω m ] (A) Based on

More information

Characterizing the Frequency Response of a Damped, Forced Two-Mass Mechanical Oscillator

Characterizing the Frequency Response of a Damped, Forced Two-Mass Mechanical Oscillator Characterizing the Frequency Response of a Damped, Forced Two-Mass Mechanical Oscillator Shanel Wu Harvey Mudd College 3 November 013 Abstract A two-mass oscillator was constructed using two carts, springs,

More information

Introduction to Signals and Systems Lecture #9 - Frequency Response. Guillaume Drion Academic year

Introduction to Signals and Systems Lecture #9 - Frequency Response. Guillaume Drion Academic year Introduction to Signals and Systems Lecture #9 - Frequency Response Guillaume Drion Academic year 2017-2018 1 Transmission of complex exponentials through LTI systems Continuous case: LTI system where

More information

Ver. 4/5/2002, 1:11 PM 1

Ver. 4/5/2002, 1:11 PM 1 Mechatronics II Laboratory Exercise 6 PID Design The purpose of this exercise is to study the effects of a PID controller on a motor-load system. Although not a second-order system, a PID controlled motor-load

More information

Feedback (and control) systems

Feedback (and control) systems Feedback (and control) systems Stability and performance Copyright 2007-2008 Stevens Institute of Technology - All rights reserved 22-1/23 Behavior of Under-damped System Y() s s b y 0 M s 2n y0 2 2 2

More information

ECE 205 Dynamical Systems Spring

ECE 205 Dynamical Systems Spring ECE 205 Dynamical Systems Spring 2010-11 C. A. Berry ECE 205 Dynamical Systems Spring 2011-2012 Instructor: Carlotta Berry (berry123) Moench Hall, D-211 (812) 877-8657 Course Information Description: 3R-3L-4C

More information

Chapter 13 Tuned-Mass Dampers. CIE Structural Control 1

Chapter 13 Tuned-Mass Dampers. CIE Structural Control 1 Chapter 13 Tuned-Mass Dampers 1 CONTENT 1. Introduction 2. Theory of Undamped Tuned-mass Dampers Under Harmonic Loading 3. Theory of Undamped Tuned-mass Dampers Under Harmonic Base Motion 4. Theory of

More information

3/23/2015. Chapter 11 Oscillations and Waves. Contents of Chapter 11. Contents of Chapter Simple Harmonic Motion Spring Oscillations

3/23/2015. Chapter 11 Oscillations and Waves. Contents of Chapter 11. Contents of Chapter Simple Harmonic Motion Spring Oscillations Lecture PowerPoints Chapter 11 Physics: Principles with Applications, 7 th edition Giancoli Chapter 11 and Waves This work is protected by United States copyright laws and is provided solely for the use

More information

How to Graph the Transmissibility of a Single Degree of Freedom Vibrational System in MATLAB

How to Graph the Transmissibility of a Single Degree of Freedom Vibrational System in MATLAB How to Graph the Transmissibility of a Single Degree of Freedom Vibrational System in MATLAB Requirements: PC with MATLAB installed (Version 2010b was used for this guide) Basic understanding of how programming

More information

Non-Collocation Problems in Dynamics and Control of Mechanical Systems

Non-Collocation Problems in Dynamics and Control of Mechanical Systems Cleveland State University EngagedScholarship@CSU ETD Archive 2009 Non-Collocation Problems in Dynamics and Control of Mechanical Systems Timothy M. Obrzut Cleveland State University How does access to

More information

Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL. Andrea M. Zanchettin, PhD Winter Semester, Linear control systems design Part 1

Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL. Andrea M. Zanchettin, PhD Winter Semester, Linear control systems design Part 1 Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL Andrea M. Zanchettin, PhD Winter Semester, 2018 Linear control systems design Part 1 Andrea Zanchettin Automatic Control 2 Step responses Assume

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc. Chapter 14 Oscillations 14-7 Damped Harmonic Motion Damped harmonic motion is harmonic motion with a frictional or drag force. If the damping is small, we can treat it as an envelope that modifies the

More information

Application Note #2442

Application Note #2442 Application Note #2442 Tuning with PL and PID Most closed-loop servo systems are able to achieve satisfactory tuning with the basic Proportional, Integral, and Derivative (PID) tuning parameters. However,

More information

The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2

The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2 The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2 Date: November 18, 2010 Course: EE 313 Evans Name: Last, First The exam is scheduled to last 75 minutes. Open books

More information

Chapter 10: Compensation of Power Transmission Systems

Chapter 10: Compensation of Power Transmission Systems Chapter 10: Compensation of Power Transmission Systems Introduction The two major problems that the modern power systems are facing are voltage and angle stabilities. There are various approaches to overcome

More information

Designer Series XV. by Dr. Ray Ridley

Designer Series XV. by Dr. Ray Ridley Designing with the TL431 by Dr. Ray Ridley Designer Series XV Current-mode control is the best way to control converters, and is used by most power supply designers. For this type of control, the optimal

More information

Hands-on Lab. PID Closed-Loop Control

Hands-on Lab. PID Closed-Loop Control Hands-on Lab PID Closed-Loop Control Adding feedback improves performance. Unity feedback was examined to serve as a motivating example. Lectures derived the power of adding proportional, integral and

More information

#8A RLC Circuits: Free Oscillations

#8A RLC Circuits: Free Oscillations #8A RL ircuits: Free Oscillations Goals In this lab we investigate the properties of a series RL circuit. Such circuits are interesting, not only for there widespread application in electrical devices,

More information

Poles and Zeros of H(s), Analog Computers and Active Filters

Poles and Zeros of H(s), Analog Computers and Active Filters Poles and Zeros of H(s), Analog Computers and Active Filters Physics116A, Draft10/28/09 D. Pellett LRC Filter Poles and Zeros Pole structure same for all three functions (two poles) HR has two poles and

More information

EES42042 Fundamental of Control Systems Bode Plots

EES42042 Fundamental of Control Systems Bode Plots EES42042 Fundamental of Control Systems Bode Plots DR. Ir. Wahidin Wahab M.Sc. Ir. Aries Subiantoro M.Sc. 2 Bode Plots Plot of db Gain and phase vs frequency It is assumed you know how to construct Bode

More information

On the axes of Fig. 4.1, sketch the variation with displacement x of the acceleration a of a particle undergoing simple harmonic motion.

On the axes of Fig. 4.1, sketch the variation with displacement x of the acceleration a of a particle undergoing simple harmonic motion. 1 (a) (i) Define simple harmonic motion. (b)... On the axes of Fig. 4.1, sketch the variation with displacement x of the acceleration a of a particle undergoing simple harmonic motion. Fig. 4.1 A strip

More information

Microelectronic Circuits II. Ch 9 : Feedback

Microelectronic Circuits II. Ch 9 : Feedback Microelectronic Circuits II Ch 9 : Feedback 9.9 Determining the Loop Gain 9.0 The Stability problem 9. Effect on Feedback on the Amplifier Poles 9.2 Stability study using Bode plots 9.3 Frequency Compensation

More information

STUDY OF RC AND RL CIRCUITS Venue: Microelectronics Laboratory in E2 L2

STUDY OF RC AND RL CIRCUITS Venue: Microelectronics Laboratory in E2 L2 EXPERIMENT #1 STUDY OF RC AND RL CIRCUITS Venue: Microelectronics Laboratory in E2 L2 I. INTRODUCTION This laboratory is about verifying the transient behavior of RC and RL circuits. You need to revise

More information

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation SECTION 7: FREQUENCY DOMAIN ANALYSIS MAE 3401 Modeling and Simulation 2 Response to Sinusoidal Inputs Frequency Domain Analysis Introduction 3 We ve looked at system impulse and step responses Also interested

More information

Deconstructing the Step Load Response Reveals a Wealth of Information

Deconstructing the Step Load Response Reveals a Wealth of Information Reveals a Wealth of Information Paul Ho, Senior Engineering Specialist, AEi Systems Steven M. Sandler, Chief Engineer, AEi Systems Charles E. Hymowitz, Managing Director, AEi Systems When analyzing power

More information

Input Filter Design for Switching Power Supplies: Written by Michele Sclocchi Application Engineer, National Semiconductor

Input Filter Design for Switching Power Supplies: Written by Michele Sclocchi Application Engineer, National Semiconductor Input Filter Design for Switching Power Supplies: Written by Michele Sclocchi Michele.Sclocchi@nsc.com Application Engineer, National Semiconductor The design of a switching power supply has always been

More information