ECE382/ME482 Spring 2005 Homework 1 Solution February 10,

Size: px
Start display at page:

Download "ECE382/ME482 Spring 2005 Homework 1 Solution February 10,"

Transcription

1 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 1 Solution to HW1 P2.33 For the system shown in Figure P2.33 on p. 119 of the text, find T(s) = Y 2 (s)/r 1 (s). Determine a relationship that will make Y 2 (s) independent of R 1 (s). Solution: We apply Mason s signal-flow gain formula (2.96), p. 74 of the text, to the signal flow graph in the figure, which has paths and loops P 121 = G 1 G 8 G 6 (1) P 122 = G 2 G 5 G 6 (2) P 123 = G 2 G 7 G 4 H 2 G 1 G 8 G 6 (3) L 1 = G 1 G 3 G 4 H 2 (4) L 2 = G 2 G 5 G 6 H 1 (5) L 3 = G 2 G 7 G 4 H 2 G 1 G 8 G 6 H 1. (6) Since all loops touch paths P 121 and P 123, the corresponding path cofactors are 121 = 123 = 1. Path P 122 does not touch loop L 1 so 122 = 1 L 1 = 1 + G 1 G 3 G 4 H 2. Using (2.97), p. 74, the determinant of the graph is = 1 L 1 L 2 L 3 + L 1 L 2 (7) = 1 + G 1 G 3 G 4 H 2 + G 2 G 5 G 6 H 1 G 1 G 2 G 4 G 6 G 7 G 8 H 1 H 2 + G 1 G 2 G 3 G 4 G 5 G 6 H 1 H 2. Substituting into the formula (2.96) we then have T 12 = P P P = G 1G 8 G 6 + ( G 2 G 5 G 6 )(1 + G 1 G 3 G 4 H 2 ) + G 2 G 7 G 4 H 2 G 1 G 8 G 6 where we have not substituted for only because there is no efficient way to simplify it and it is too long to fit in the available space. To decouple Y 2 (s) from R 1 (s), we need T 12 =, which is achieved if the numerator of the expression for T 12 is set equal to zero. For this we need G 1 G 6 G 8 = G 2 G 5 G 6 + G 1 G 2 G 3 G 4 G 5 G 6 H 2 + G 1 G 2 G 4 G 6 G 7 G 8 H 2. P2.34 Find the transfer function Y (s)/r(s) for the block diagram given in Figure P2.34, p Solution: The block diagram can be transformed by simple transformations to obtain the desired transfer function. 1. Duplicate the fuel gain block K 6 and the summer that follows it so that we can separate the loops through it. 2. Eliminate the feedback loop consisting of the forward path through the dynamics block G 3 (s) and feedback path through spark gain H 1 (s), using transformation 6. The resulting block will have transfer function G 3 (s)/(1 G 3 (s)h 1 (s)) because the feedback is positive. Call this new block G I (s). (8)

2 ECE382/ME482 Spring 25 Homework 1 Solution February 1, Eliminate the feedback loop consisting of the forward path through G I (s) and feedback path through (one copy of the) constant fuel gain K 6, using transformation 6. The resulting block will have transfer function G I (s)/(1 G I (s)k 6 ) because the feedback is positive. 4. Combine the feedforward paths through K 5 K 6 and G 2 (s) to obtain a block G II (s) = K 5 K 6 + G 2 (s) between the manifold block G 1 (s) and the block G I obtained earlier. 5. Eliminate the remaining two loops (one with feedback path through K 4 and one with feedback path through the air bypass H 2 (s) by applying transformation 6 twice more. The resulting transfer function is Y (s) R(s) = G 1 (s)g 3 (s)(k 5 K 6 + G 2 (s)) 1 G 3 (s)h 1 (s) K 6 G 3 (s) + G 1 (s)g 3 (s)(k 4 + H 2 (s))(k 5 K 6 + G 2 (s)). (9) P2.37 We are given a system whose transfer function is T(s) = Y (s) R(s) = 12 s 3 + 8s s + 12 and asked to use partial fraction expansions to determine the responses to ramp and impulse inputs, including the output values at t = 1.5 s, and to check our work with Matlab. We are also asked to use the tf and parallel commands to obtain the transfer function from the partial fraction expansion. This will be done in part (e) below. Solution: We will use L to indicate the Laplace transform operator. (a) First we must obtain the Laplace transform of the ramp input R(s) = L {r(t)} = L {t} = 1 s 2 (1) and factor the denominator of the transfer function to obtain s 3 + 8s s + 12 = (s + 1)(s + 3)(s + 4). (11) We then use residues to find the coefficients A, B, C, D, and E of the partial fraction expansion ( ) ( ) 1 12 s 2 (s + 1)(s + 3)(s + 4) = A s 2 + B s + C s D s E s + 4. (12) We obtain A = s2 T(s) s 2 = 1, (13) s= B = d ( ) s 2 T(s) ds s 2 = 12(19) s= 12 2 = 19 12, (14) C = s + 1 s 2 T(s) = = 2, (15) s= 1

3 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 3 and similarly, D = 2/3 and E = 1/4. Thus and, inverse transforming, Y (s) = 1 s /2 s + 2 s /3 s /4 s + 4 (16) y(t) = t 19/12 + 2e t 2 3 e 3t e 4t, t (17) (b) To generate the plot of y(t) corresponding to a ramp input, we use the Matlab code below to generate the the plot. We use that fact that the ramp response of the original system is the same as the impulse response of the system obtained by multiplying the Laplace transform of the input with the transfer function. tf2_37 = tf([12],[ ]) rs2_37 = tf([1],[1 ]) ys2_37 = series(rs2_37,tf2_37) t = [:.1:1]; y = impulse(ys2_37,t); t(16) y(16) plot(t,y) title( Ramp Response of P2.37 ) xlabel( Time (s) ) ylabel( y(t) ) grid print -deps p2_27b.eps The plot obtained is shown in Figure 1. We find the value y(1.5) =.3561 using the commands above. (c) In the case of the impulse response, R(s) = 1 so we obtain a partial fraction expansion for T(s) itself, obtaining Y (s) = 2 s s s + 4 (18) and inverse transform y(t) = 2e t 6e 3t + 4e 4t (19) (d) [y,t]=impulse(t2_37,t); y(16) plot(t,y) title( Impulse Response of P2.37 ) xlabel( Time (s) ) ylabel( y(t) ) grid print -deps p2_27d.eps The plot obtained is shown in Figure 1. We find the value y(1.5) =.3895 using the commands above.

4 ECE382/ME482 Spring 25 Homework 1 Solution February 1, Figure 1: Plot of response of transfer function of P2.37 to a ramp input Ramp Response of P y(t) Time (s) (e) This procedure yields a cautionary tale, as show in the Matlab transcript below. The result of reconstructing the transfer function after obtaining the partial fraction expansion is incorrect. Somehow the numerator and denominator have both been multiplied by s. As usual, we must be careful in how we use software tools. >> s2_37 = tf([12],[ ]) s^5 + 8 s^ s^ s^2 >> [n2_37,d2_37]=tfdata(s2_37, v ) n2_37 = 12

5 ECE382/ME482 Spring 25 Homework 1 Solution February 1, Figure 2: Plot of impulse response of transfer function of P2.37 Impulse Response of P y(t) Time (s) d2_37 = >> [r,p,k]=residue(n2_37,d2_37) r =

6 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 6 p = k = [] >> t1 = tf([r(1)],[1 -p(1)]) s + 4 >> t2 = tf([r(2)],[1 -p(2)]) s + 3 >> t3 = tf([r(3)],[1 -p(3)]) s + 1 >> t4 = tf([r(4)],[1 -p(4)]) s >> t5 = tf([r(5)],[1 -p(5) ]) 1

7 ECE382/ME482 Spring 25 Homework 1 Solution February 1, s^2 >> tf = parallel(t1,parallel(t2,parallel(t3,parallel(t4,t5)))) 1.86e-15 s^ e-15 s^ e-15 s^ e-16 s^ s s^6 + 8 s^ s^ s^3 Notice also the four coefficients in the numerator that should be zero, but aren t quite. DP2.4 We are asked to find the transfer function from input voltage V 1 to output voltage V for the operational amplifier circuit shown in Figure DP2.4 on page 126 of the textbook, assuming an ideal op amp. We are then asked to find the output voltage corresponding to an input voltage v 1 (t) = At, t. We assume that v 1 (t) =, t <. Solution: The ideal op amp has input voltages v + = v and input currents i + = i =. (a) Accordingly, when we apply Kirchoff s current law at the negative and positive terminals we obtain, respectively, in the frequency domain V 1 V = V V o R 1 R 1 (2) V 1 V + = V + R 2 1/Cs. (21) Then from (2), V = V 1 + 2V + and from (21), V + = V 1 /(R 2 Cs + 1) so ( ) 2V 1 V = V 1 + R 2 Cs + 1 = R2 Cs 1 V 1 (22) R 2 Cs + 1 and T(s) = V ( ) (s) V 1 (s) = R2 Cs 1 R 2 Cs + 1 (b) The Laplace transform of the input voltage is A/s 2 so we find the partial fraction expansion of ( ) ( ) R2 Cs 1 A V (s) = T(s)V 1 (s) = R 2 Cs + 1 s 2. (24) We let β = 1/(R 2 C) and solve for B, C, and D in B s 2 + C s + D s + β = A(s β) s 2 (s + β) to obtain B = A, C = 2A/β, and D = 2A/β so that ( 1 V (s) = A s 2 2/β s + 2/β ) s + β and, inverse transforming, v (t) = A (23) (25) (26) (t 2β + 2β e βt ), t (27)

8 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 8 MP2.1 We are given a block diagram and asked to simplify it by hand and using Matlab. Simplification by hand is straightforward but results in a very messy expression. We are then asked to use the commands pzmap and pole and zero to identify the locations of the poles and zeros of the transfer function. Finally we are asked to plot the step response and use the final value theorem to verify that our result has the correct behavior as t becomes large. Solution: First we have three feedback loops to transform. The one with a double integrator 1/s 2 in the forward path and a gain of 5 in the backward path becomes a single block with transfer function 1/(s 2 5). The loop with a series connection of 1/(s + 1) and s/(s 2 +2) in the forward path and (4s+2)/(s+1) 2 in the backward path reduces to a single block with transfer function (s 3 +2s 2 +s)/(s 5 +3s 4 +5s 3 +11s 2 +8s+2). Simplifying the resulting loop whose forward path consists of these first two resulting blocks in series and whose backward path contains the block with transfer function (s 2 + 2)/(s ) and taking into account the constant gain of 4 in the block multiplying the input R(s) we obtain the transfer function T(S) = = Y (s) R(s) 4s 6 + 8s 5 + 4s s s s s 1 + 3s 9 45s 8 125s 7 2s s s s s s 14 (28) If you obtained that by hand, you are truly to be commended. I gave up and used Matlab about half way through as shown below. >> rfblock = tf([1],[1-5]) s^2-5 >> lfblock = feedback(tf([1 ],[ ]),tf([4 2],[1 2 1])) s^3 + 2 s^2 + s s^5 + 3 s^4 + 5 s^ s^2 + 8 s + 2 >> fbblock = tf([1 2],[1 14]) s^ s^3 + 14

9 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 9 >> mp26tf = 4*feedback(series(lfblock,rfblock),fbblock) 4 s^6 + 8 s^5 + 4 s^ s^ s^ s s^1 + 3 s^9-45 s^8-125 s^7-2 s^ s^ s^ s^ s^ s - 14 (a) To reduce the block diagram using Matlab alone we would calculate the transfer functions of the forward path blocks using the following commands. >> rfblock = feedback(tf([1],[1 ]),tf([5],[1]),1) s^2-5 >> lfblock = feedback(series(tf([1],[1 1]),tf([1 ],[1 2])),... tf([4 2],[1 2 1])) s^3 + 2 s^2 + s s^5 + 3 s^4 + 5 s^ s^2 + 8 s + 2 Note that we use a third argument, 1 to indicate to the feedback command that the feedback is positive rather than (the default) negative. (b) The output generated by the command pzmap(mp26tf) is shown in Figure 3. (c) The poles and zeros obtained using the pole and zero commands are shown in the transcript fragment below. Note that although the pole-zero map found in the previous part of the problem appears to indicate that some poles and zeros coincide, the listings below indicate that they do not, so care must be taken in interpreting the output of the pzmap command. >> pole(mp26tf) ans = i

10 ECE382/ME482 Spring 25 Homework 1 Solution February 1, 25 1 Figure 3: Pole-Zero Map generated using the Matlab command pzmap for Problem MP Pole Zero Map for MP Imaginary Axis Real Axis i i i i i >> zero(mp26tf) ans = i i

11 ECE382/ME482 Spring 25 Homework 1 Solution February 1, We were also asked to plot the step response and determine whether the behavior for large t agreed with that predicted by the final value theorem. The final value theorem (page 5) states that lim y(t) = lim sy (s) (29) t s so long as there is not more than one pole at the origin, no poles on the imaginary axis, no poles in the right-half plane, and no repeated poles. In other words, this was a trick question. The list of poles above shows that the transfer function does have poles in the right half plane in fact it has five of them so we cannot apply the final value theorem. Not surprisingly, given the poles in the right half plane, the step response appears to increase without bound, as shown in Figure 4, which was generated using the following commands. t=[:.1:1]; [y,t]=step(mp26tf,t); plot(t,y) title( Step Response for System of MP2.6 ) xlabel( Time (s) ) ylabel( y(t) ) print -deps mp2_6s.eps If the conditions of the final value theorem had not been violated by the transfer function, we would have multiplied T(s) by R(s) = 1/s for the unit step to obtain Y (s).

12 ECE382/ME482 Spring 25 Homework 1 Solution February 1, Figure 4: Plot of step response of the system of MP2.6 Step Response for System of MP y(t) Time (s)

ECE382/ME482 Spring 2005 Homework 7 Solution April 17, K(s + 0.2) s 2 (s + 2)(s + 5) G(s) =

ECE382/ME482 Spring 2005 Homework 7 Solution April 17, K(s + 0.2) s 2 (s + 2)(s + 5) G(s) = ECE382/ME482 Spring 25 Homework 7 Solution April 17, 25 1 Solution to HW7 AP9.5 We are given a system with open loop transfer function G(s) = K(s +.2) s 2 (s + 2)(s + 5) (1) and unity negative feedback.

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

Solution to Homework Assignment 1

Solution to Homework Assignment 1 ECE602 Fall 2008 Homework Solution September 2, 2008 Solution to Homework Assignment. Consider the two-input two-output system described by D (p)y (t)+d 2 (p)y 2 (t) N (p)u (t)+n 2 (p)u 2 (t) D 2 (p)y

More information

ECE 3793 Matlab Project 3 Solution

ECE 3793 Matlab Project 3 Solution ECE 3793 Matlab Project 3 Solution Spring 27 Dr. Havlicek. (a) In text problem 9.22(d), we are given X(s) = s + 2 s 2 + 7s + 2 4 < Re {s} < 3. The following Matlab statements determine the partial fraction

More information

ECE382/ME482 Spring 2004 Homework 4 Solution November 14,

ECE382/ME482 Spring 2004 Homework 4 Solution November 14, ECE382/ME482 Spring 2004 Homework 4 Solution November 14, 2005 1 Solution to HW4 AP4.3 Intead of a contant or tep reference input, we are given, in thi problem, a more complicated reference path, r(t)

More information

ECE382/ME482 Spring 2005 Homework 6 Solution April 17, (s/2 + 1) s(2s + 1)[(s/8) 2 + (s/20) + 1]

ECE382/ME482 Spring 2005 Homework 6 Solution April 17, (s/2 + 1) s(2s + 1)[(s/8) 2 + (s/20) + 1] ECE382/ME482 Spring 25 Homework 6 Solution April 17, 25 1 Solution to HW6 P8.17 We are given a system with open loop transfer function G(s) = 4(s/2 + 1) s(2s + 1)[(s/8) 2 + (s/2) + 1] (1) and unity negative

More information

MAE143A Signals & Systems - Homework 5, Winter 2013 due by the end of class Tuesday February 12, 2013.

MAE143A Signals & Systems - Homework 5, Winter 2013 due by the end of class Tuesday February 12, 2013. MAE43A Signals & Systems - Homework 5, Winter 23 due by the end of class Tuesday February 2, 23. If left under my door, then straight to the recycling bin with it. This week s homework will be a refresher

More information

Problem Weight Score Total 100

Problem Weight Score Total 100 EE 350 EXAM IV 15 December 2010 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO DO SO Problem Weight Score 1 25 2 25 3 25 4 25 Total

More information

ECE 3793 Matlab Project 3

ECE 3793 Matlab Project 3 ECE 3793 Matlab Project 3 Spring 2017 Dr. Havlicek DUE: 04/25/2017, 11:59 PM What to Turn In: Make one file that contains your solution for this assignment. It can be an MS WORD file or a PDF file. Make

More information

ECE382/ME482 Spring 2005 Homework 8 Solution December 11,

ECE382/ME482 Spring 2005 Homework 8 Solution December 11, ECE382/ME482 Spring 25 Homework 8 Solution December 11, 27 1 Solution to HW8 P1.21 We are given a system with open loop transfer function G(s) = K s(s/2 + 1)(s/6 + 1) and unity negative feedback. We are

More information

Numeric Matlab for Laplace Transforms

Numeric Matlab for Laplace Transforms EE 213 Spring 2008 LABORATORY # 4 Numeric Matlab for Laplace Transforms Objective: The objective of this laboratory is to introduce some numeric Matlab commands that are useful with Laplace transforms

More information

16.31 Homework 2 Solution

16.31 Homework 2 Solution 16.31 Homework Solution Prof. S. R. Hall Issued: September, 6 Due: September 9, 6 Problem 1. (Dominant Pole Locations) [FPE 3.36 (a),(c),(d), page 161]. Consider the second order system ωn H(s) = (s/p

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

MATHEMATICAL MODELING OF CONTROL SYSTEMS

MATHEMATICAL MODELING OF CONTROL SYSTEMS 1 MATHEMATICAL MODELING OF CONTROL SYSTEMS Sep-14 Dr. Mohammed Morsy Outline Introduction Transfer function and impulse response function Laplace Transform Review Automatic control systems Signal Flow

More information

EE Experiment 11 The Laplace Transform and Control System Characteristics

EE Experiment 11 The Laplace Transform and Control System Characteristics EE216:11 1 EE 216 - Experiment 11 The Laplace Transform and Control System Characteristics Objectives: To illustrate computer usage in determining inverse Laplace transforms. Also to determine useful signal

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

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

Chap. 3 Laplace Transforms and Applications

Chap. 3 Laplace Transforms and Applications Chap 3 Laplace Transforms and Applications LS 1 Basic Concepts Bilateral Laplace Transform: where is a complex variable Region of Convergence (ROC): The region of s for which the integral converges Transform

More information

CHAPTER 5 : REDUCTION OF MULTIPLE SUBSYSTEMS

CHAPTER 5 : REDUCTION OF MULTIPLE SUBSYSTEMS CHAPTER 5 : REDUCTION OF MULTIPLE SUBSYSTEMS Objectives Students should be able to: Reduce a block diagram of multiple subsystems to a single block representing the transfer function from input to output

More information

Systems Analysis and Control

Systems Analysis and Control Systems Analysis and Control Matthew M. Peet Illinois Institute of Technology Lecture : Different Types of Control Overview In this Lecture, you will learn: Limits of Proportional Feedback Performance

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

Automatic Control Systems (FCS) Lecture- 8 Steady State Error

Automatic Control Systems (FCS) Lecture- 8 Steady State Error Automatic Control Systems (FCS) Lecture- 8 Steady State Error Introduction Any physical control system inherently suffers steady-state error in response to certain types of inputs. A system may have no

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Spring 2008 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its

More information

The Laplace Transform

The Laplace Transform The Laplace Transform Syllabus ECE 316, Spring 2015 Final Grades Homework (6 problems per week): 25% Exams (midterm and final): 50% (25:25) Random Quiz: 25% Textbook M. Roberts, Signals and Systems, 2nd

More information

Fundamental of Control Systems Steady State Error Lecturer: Dr. Wahidin Wahab M.Sc. Aries Subiantoro, ST. MSc.

Fundamental of Control Systems Steady State Error Lecturer: Dr. Wahidin Wahab M.Sc. Aries Subiantoro, ST. MSc. Fundamental of Control Systems Steady State Error Lecturer: Dr. Wahidin Wahab M.Sc. Aries Subiantoro, ST. MSc. Electrical Engineering Department University of Indonesia 2 Steady State Error How well can

More information

ECEN 605 LINEAR SYSTEMS. Lecture 20 Characteristics of Feedback Control Systems II Feedback and Stability 1/27

ECEN 605 LINEAR SYSTEMS. Lecture 20 Characteristics of Feedback Control Systems II Feedback and Stability 1/27 1/27 ECEN 605 LINEAR SYSTEMS Lecture 20 Characteristics of Feedback Control Systems II Feedback and Stability Feedback System Consider the feedback system u + G ol (s) y Figure 1: A unity feedback system

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

Lab Experiment 2: Performance of First order and second order systems

Lab Experiment 2: Performance of First order and second order systems Lab Experiment 2: Performance of First order and second order systems Objective: The objective of this exercise will be to study the performance characteristics of first and second order systems using

More information

MODELING OF CONTROL SYSTEMS

MODELING OF CONTROL SYSTEMS 1 MODELING OF CONTROL SYSTEMS Feb-15 Dr. Mohammed Morsy Outline Introduction Differential equations and Linearization of nonlinear mathematical models Transfer function and impulse response function Laplace

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Fall 2009 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its circuit

More information

Radar Dish. Armature controlled dc motor. Inside. θ r input. Outside. θ D output. θ m. Gearbox. Control Transmitter. Control. θ D.

Radar Dish. Armature controlled dc motor. Inside. θ r input. Outside. θ D output. θ m. Gearbox. Control Transmitter. Control. θ D. Radar Dish ME 304 CONTROL SYSTEMS Mechanical Engineering Department, Middle East Technical University Armature controlled dc motor Outside θ D output Inside θ r input r θ m Gearbox Control Transmitter

More information

Laplace Transforms Chapter 3

Laplace Transforms Chapter 3 Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first. Laplace transforms play a key role in important

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

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

Professor Fearing EE C128 / ME C134 Problem Set 7 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley

Professor Fearing EE C128 / ME C134 Problem Set 7 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley Professor Fearing EE C8 / ME C34 Problem Set 7 Solution Fall Jansen Sheng and Wenjie Chen, UC Berkeley. 35 pts Lag compensation. For open loop plant Gs ss+5s+8 a Find compensator gain Ds k such that the

More information

Alireza Mousavi Brunel University

Alireza Mousavi Brunel University Alireza Mousavi Brunel University 1 » Control Process» Control Systems Design & Analysis 2 Open-Loop Control: Is normally a simple switch on and switch off process, for example a light in a room is switched

More information

06 Feedback Control System Characteristics The role of error signals to characterize feedback control system performance.

06 Feedback Control System Characteristics The role of error signals to characterize feedback control system performance. Chapter 06 Feedback 06 Feedback Control System Characteristics The role of error signals to characterize feedback control system performance. Lesson of the Course Fondamenti di Controlli Automatici of

More information

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

Last week: analysis of pinion-rack w velocity feedback

Last week: analysis of pinion-rack w velocity feedback Last week: analysis of pinion-rack w velocity feedback Calculation of the steady state error Transfer function: V (s) V ref (s) = 0.362K s +2+0.362K Step input: V ref (s) = s Output: V (s) = s 0.362K s

More information

The Laplace Transform

The Laplace Transform The Laplace Transform Generalizing the Fourier Transform The CTFT expresses a time-domain signal as a linear combination of complex sinusoids of the form e jωt. In the generalization of the CTFT to the

More information

PID controllers. Laith Batarseh. PID controllers

PID controllers. Laith Batarseh. PID controllers Next Previous 24-Jan-15 Chapter six Laith Batarseh Home End The controller choice is an important step in the control process because this element is responsible of reducing the error (e ss ), rise time

More information

Lesson 11: Mass-Spring, Resonance and ode45

Lesson 11: Mass-Spring, Resonance and ode45 Lesson 11: Mass-Spring, Resonance and ode45 11.1 Applied Problem. Trucks and cars have springs and shock absorbers to make a comfortable and safe ride. Without good shock absorbers, the truck or car will

More information

Course Background. Loosely speaking, control is the process of getting something to do what you want it to do (or not do, as the case may be).

Course Background. Loosely speaking, control is the process of getting something to do what you want it to do (or not do, as the case may be). ECE4520/5520: Multivariable Control Systems I. 1 1 Course Background 1.1: From time to frequency domain Loosely speaking, control is the process of getting something to do what you want it to do (or not

More information

Lecture 5b: Starting Matlab

Lecture 5b: Starting Matlab Lecture 5b: Starting Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 7, 2013 Outline 1 Resources 2 Starting Matlab 3 Homework

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

9. Introduction and Chapter Objectives

9. Introduction and Chapter Objectives Real Analog - Circuits 1 Chapter 9: Introduction to State Variable Models 9. Introduction and Chapter Objectives In our analysis approach of dynamic systems so far, we have defined variables which describe

More information

Control Systems, Lecture 05

Control Systems, Lecture 05 Control Systems, Lecture 05 İbrahim Beklan Küçükdemiral Yıldız Teknik Üniversitesi 2015 1 / 33 Laplace Transform Solution of State Equations In previous sections, systems were modeled in state space, where

More information

INTRODUCTION TO DIGITAL CONTROL

INTRODUCTION TO DIGITAL CONTROL ECE4540/5540: Digital Control Systems INTRODUCTION TO DIGITAL CONTROL.: Introduction In ECE450/ECE550 Feedback Control Systems, welearnedhow to make an analog controller D(s) to control a linear-time-invariant

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

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

Lecture 4 Classical Control Overview II. Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore Lecture 4 Classical Control Overview II Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore Stability Analysis through Transfer Function Dr. Radhakant

More information

(a) Torsional spring-mass system. (b) Spring element.

(a) Torsional spring-mass system. (b) Spring element. m v s T s v a (a) T a (b) T a FIGURE 2.1 (a) Torsional spring-mass system. (b) Spring element. by ky Wall friction, b Mass M k y M y r(t) Force r(t) (a) (b) FIGURE 2.2 (a) Spring-mass-damper system. (b)

More information

EEE 184: Introduction to feedback systems

EEE 184: Introduction to feedback systems EEE 84: Introduction to feedback systems Summary 6 8 8 x 7 7 6 Level() 6 5 4 4 5 5 time(s) 4 6 8 Time (seconds) Fig.. Illustration of BIBO stability: stable system (the input is a unit step) Fig.. step)

More information

Test 2 SOLUTIONS. ENGI 5821: Control Systems I. March 15, 2010

Test 2 SOLUTIONS. ENGI 5821: Control Systems I. March 15, 2010 Test 2 SOLUTIONS ENGI 5821: Control Systems I March 15, 2010 Total marks: 20 Name: Student #: Answer each question in the space provided or on the back of a page with an indication of where to find the

More information

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Basic Feedback Analysis & Design

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Basic Feedback Analysis & Design AERO 422: Active Controls for Aerospace Vehicles Basic Feedback Analysis & Design Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University Routh s Stability

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

SECTION 2: BLOCK DIAGRAMS & SIGNAL FLOW GRAPHS

SECTION 2: BLOCK DIAGRAMS & SIGNAL FLOW GRAPHS SECTION 2: BLOCK DIAGRAMS & SIGNAL FLOW GRAPHS MAE 4421 Control of Aerospace & Mechanical Systems 2 Block Diagram Manipulation Block Diagrams 3 In the introductory section we saw examples of block diagrams

More information

2 Solving Ordinary Differential Equations Using MATLAB

2 Solving Ordinary Differential Equations Using MATLAB Penn State Erie, The Behrend College School of Engineering E E 383 Signals and Control Lab Spring 2008 Lab 3 System Responses January 31, 2008 Due: February 7, 2008 Number of Lab Periods: 1 1 Objective

More information

SFG and Mason s Rule : A revision

SFG and Mason s Rule : A revision SFG and Mason s Rule : A revision Andersen Ang 2016-Nov-29 SFG and Mason s Rule Vu Pham Review SFG: Signal-Flow Graph SFG is a directed graph SFG is used to model signal flow in a system SFG can be used

More information

LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593

LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593 LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593 ELECTRICAL ENGINEERING DEPARTMENT JIS COLLEGE OF ENGINEERING (AN AUTONOMOUS INSTITUTE) KALYANI, NADIA CONTROL SYSTEM I LAB. MANUAL EE 593 EXPERIMENT

More information

OKLAHOMA STATE UNIVERSITY

OKLAHOMA STATE UNIVERSITY OKLAHOMA STATE UNIVERSITY ECEN 4413 - Automatic Control Systems Matlab Lecture 1 Introduction and Control Basics Presented by Moayed Daneshyari 1 What is Matlab? Invented by Cleve Moler in late 1970s to

More information

Exercise 1 (MC Questions)

Exercise 1 (MC Questions) Dr. J. Tani 151-0590-00 Control Systems II (Spring 2018) Solution Exercise Set 3 Discrete-time Systems and Introduction to MIMO Systems Gioele Zardini, gzardini@ethz.ch, 12th March 2018 Exercise 1 (MC

More information

Chapter 5 HW Solution

Chapter 5 HW Solution Chapter 5 HW Solution Review Questions. 1, 6. As usual, I think these are just a matter of text lookup. 1. Name the four components of a block diagram for a linear, time-invariant system. Let s see, I

More information

9.5 The Transfer Function

9.5 The Transfer Function Lecture Notes on Control Systems/D. Ghose/2012 0 9.5 The Transfer Function Consider the n-th order linear, time-invariant dynamical system. dy a 0 y + a 1 dt + a d 2 y 2 dt + + a d n y 2 n dt b du 0u +

More information

MAE 143B - Homework 9

MAE 143B - Homework 9 MAE 143B - Homework 9 7.1 a) We have stable first-order poles at p 1 = 1 and p 2 = 1. For small values of ω, we recover the DC gain K = lim ω G(jω) = 1 1 = 2dB. Having this finite limit, our straight-line

More information

Chapter 6 Steady-State Analysis of Continuous-Time Systems

Chapter 6 Steady-State Analysis of Continuous-Time Systems Chapter 6 Steady-State Analysis of Continuous-Time Systems 6.1 INTRODUCTION One of the objectives of a control systems engineer is to minimize the steady-state error of the closed-loop system response

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

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Dynamic Response

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Dynamic Response .. AERO 422: Active Controls for Aerospace Vehicles Dynamic Response Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University. . Previous Class...........

More information

EE 3CL4: Introduction to Control Systems Lab 4: Lead Compensation

EE 3CL4: Introduction to Control Systems Lab 4: Lead Compensation EE 3CL4: Introduction to Control Systems Lab 4: Lead Compensation Tim Davidson Ext. 27352 davidson@mcmaster.ca Objective To use the root locus technique to design a lead compensator for a marginally-stable

More information

Input and Output Impedances with Feedback

Input and Output Impedances with Feedback EE 3 Lecture Basic Feedback Configurations Generalized Feedback Schemes Integrators Differentiators First-order active filters Second-order active filters Review from Last Time Input and Output Impedances

More information

Compensator Design to Improve Transient Performance Using Root Locus

Compensator Design to Improve Transient Performance Using Root Locus 1 Compensator Design to Improve Transient Performance Using Root Locus Prof. Guy Beale Electrical and Computer Engineering Department George Mason University Fairfax, Virginia Correspondence concerning

More information

EE/ME/AE324: Dynamical Systems. Chapter 7: Transform Solutions of Linear Models

EE/ME/AE324: Dynamical Systems. Chapter 7: Transform Solutions of Linear Models EE/ME/AE324: Dynamical Systems Chapter 7: Transform Solutions of Linear Models The Laplace Transform Converts systems or signals from the real time domain, e.g., functions of the real variable t, to the

More information

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax: Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho kwangho@hansung.ac.kr Tel: 02-760-4253 Fax:02-760-4435 Overview Review on Laplace transform Learn about transfer

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

Unit 2: Modeling in the Frequency Domain Part 2: The Laplace Transform. The Laplace Transform. The need for Laplace

Unit 2: Modeling in the Frequency Domain Part 2: The Laplace Transform. The Laplace Transform. The need for Laplace Unit : Modeling in the Frequency Domain Part : Engineering 81: Control Systems I Faculty of Engineering & Applied Science Memorial University of Newfoundland January 1, 010 1 Pair Table Unit, Part : Unit,

More information

MATH 2050 Assignment 8 Fall [10] 1. Find the determinant by reducing to triangular form for the following matrices.

MATH 2050 Assignment 8 Fall [10] 1. Find the determinant by reducing to triangular form for the following matrices. MATH 2050 Assignment 8 Fall 2016 [10] 1. Find the determinant by reducing to triangular form for the following matrices. 0 1 2 (a) A = 2 1 4. ANS: We perform the Gaussian Elimination on A by the following

More information

Modeling. Transition between the TF to SS and SS to TF will also be discussed.

Modeling. Transition between the TF to SS and SS to TF will also be discussed. Modeling This lecture we will consentrate on how to do system modeling based on two commonly used techniques In frequency domain using Transfer Function (TF) representation In time domain via using State

More information

CHAPTER 7 STEADY-STATE RESPONSE ANALYSES

CHAPTER 7 STEADY-STATE RESPONSE ANALYSES CHAPTER 7 STEADY-STATE RESPONSE ANALYSES 1. Introduction The steady state error is a measure of system accuracy. These errors arise from the nature of the inputs, system type and from nonlinearities of

More information

Basic Procedures for Common Problems

Basic Procedures for Common Problems Basic Procedures for Common Problems ECHE 550, Fall 2002 Steady State Multivariable Modeling and Control 1 Determine what variables are available to manipulate (inputs, u) and what variables are available

More information

Laplace Transforms. Chapter 3. Pierre Simon Laplace Born: 23 March 1749 in Beaumont-en-Auge, Normandy, France Died: 5 March 1827 in Paris, France

Laplace Transforms. Chapter 3. Pierre Simon Laplace Born: 23 March 1749 in Beaumont-en-Auge, Normandy, France Died: 5 March 1827 in Paris, France Pierre Simon Laplace Born: 23 March 1749 in Beaumont-en-Auge, Normandy, France Died: 5 March 1827 in Paris, France Laplace Transforms Dr. M. A. A. Shoukat Choudhury 1 Laplace Transforms Important analytical

More information

Module 03 Modeling of Dynamical Systems

Module 03 Modeling of Dynamical Systems Module 03 Modeling of Dynamical Systems Ahmad F. Taha EE 3413: Analysis and Desgin of Control Systems Email: ahmad.taha@utsa.edu Webpage: http://engineering.utsa.edu/ taha February 2, 2016 Ahmad F. Taha

More information

MAS107 Control Theory Exam Solutions 2008

MAS107 Control Theory Exam Solutions 2008 MAS07 CONTROL THEORY. HOVLAND: EXAM SOLUTION 2008 MAS07 Control Theory Exam Solutions 2008 Geir Hovland, Mechatronics Group, Grimstad, Norway June 30, 2008 C. Repeat question B, but plot the phase curve

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

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 Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi System Stability - 26 March, 2014

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi System Stability - 26 March, 2014 Prof. Dr. Eleni Chatzi System Stability - 26 March, 24 Fundamentals Overview System Stability Assume given a dynamic system with input u(t) and output x(t). The stability property of a dynamic system can

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

( ) ( = ) = ( ) ( ) ( )

( ) ( = ) = ( ) ( ) ( ) ( ) Vρ C st s T t 0 wc Ti s T s Q s (8) K T ( s) Q ( s) + Ti ( s) (0) τs+ τs+ V ρ K and τ wc w T (s)g (s)q (s) + G (s)t(s) i G and G are transfer functions and independent of the inputs, Q and T i. Note

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

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

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 Date: Lab

More information

Professor Fearing EE C128 / ME C134 Problem Set 10 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley

Professor Fearing EE C128 / ME C134 Problem Set 10 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley Professor Fearing EE C28 / ME C34 Problem Set Solution Fall 2 Jansen Sheng and Wenjie Chen, UC Berkeley. (5 pts) Final Value Given the following continuous time (CT) system ẋ = Ax+Bu = 5 9 7 x+ u(t), y

More information

A single-formula approach for designing positive summing amplifiers. By Max Bernhardt, Lange Sales

A single-formula approach for designing positive summing amplifiers. By Max Bernhardt, Lange Sales A singleformula approach for designing positive summing amplifiers This circuittheory approach on opamp design and analysis has two benefits: You can use it on all opamp designs without learning special

More information

School of Mechanical Engineering Purdue University. ME375 Feedback Control - 1

School of Mechanical Engineering Purdue University. ME375 Feedback Control - 1 Introduction to Feedback Control Control System Design Why Control? Open-Loop vs Closed-Loop (Feedback) Why Use Feedback Control? Closed-Loop Control System Structure Elements of a Feedback Control System

More information

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION Professor Dae Ryook Yang Spring 2018 Dept. of Chemical and Biological Engineering 5-1 Road Map of the Lecture V Laplace Transform and Transfer

More information

10ES-43 CONTROL SYSTEMS ( ECE A B&C Section) % of Portions covered Reference Cumulative Chapter. Topic to be covered. Part A

10ES-43 CONTROL SYSTEMS ( ECE A B&C Section) % of Portions covered Reference Cumulative Chapter. Topic to be covered. Part A 10ES-43 CONTROL SYSTEMS ( ECE A B&C Section) Faculty : Shreyus G & Prashanth V Chapter Title/ Class # Reference Literature Topic to be covered Part A No of Hours:52 % of Portions covered Reference Cumulative

More information

EE 321 Analog Electronics, Fall 2013 Homework #3 solution

EE 321 Analog Electronics, Fall 2013 Homework #3 solution EE 32 Analog Electronics, Fall 203 Homework #3 solution 2.47. (a) Use superposition to show that the output of the circuit in Fig. P2.47 is given by + [ Rf v N + R f v N2 +... + R ] f v Nn R N R N2 R [

More information

INFINITE-IMPULSE RESPONSE DIGITAL FILTERS Classical analog filters and their conversion to digital filters 4. THE BUTTERWORTH ANALOG FILTER

INFINITE-IMPULSE RESPONSE DIGITAL FILTERS Classical analog filters and their conversion to digital filters 4. THE BUTTERWORTH ANALOG FILTER INFINITE-IMPULSE RESPONSE DIGITAL FILTERS Classical analog filters and their conversion to digital filters. INTRODUCTION 2. IIR FILTER DESIGN 3. ANALOG FILTERS 4. THE BUTTERWORTH ANALOG FILTER 5. THE CHEBYSHEV-I

More information

Notice the minus sign on the adder: it indicates that the lower input is subtracted rather than added.

Notice the minus sign on the adder: it indicates that the lower input is subtracted rather than added. 6.003 Homework Due at the beginning of recitation on Wednesday, February 17, 010. Problems 1. Black s Equation Consider the general form of a feedback problem: + F G Notice the minus sign on the adder:

More information

Laplace Transform Part 1: Introduction (I&N Chap 13)

Laplace Transform Part 1: Introduction (I&N Chap 13) Laplace Transform Part 1: Introduction (I&N Chap 13) Definition of the L.T. L.T. of Singularity Functions L.T. Pairs Properties of the L.T. Inverse L.T. Convolution IVT(initial value theorem) & FVT (final

More information

Chemical Engineering 436 Laplace Transforms (1)

Chemical Engineering 436 Laplace Transforms (1) Chemical Engineering 436 Laplace Transforms () Why Laplace Transforms?? ) Converts differential equations to algebraic equations- facilitates combination of multiple components in a system to get the total

More information