MEM 255 Introduction to Control Systems: Modeling & analyzing systems

Size: px
Start display at page:

Download "MEM 255 Introduction to Control Systems: Modeling & analyzing systems"

Transcription

1 MEM 55 Introduction to Control Systems: Modeling & analyzing systems Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University

2 Outline The Pendulum Micro-machined capacitive accelerometer Differential equation model Static (equilibrium) behavior Dynamic behavior Linearizing Nonlinear Models Transfer Functions Using MATLAB numerics for solving odes Using MATLAB to compute the transfer function

3 Pendulum x 3 θ x1 m θ = mg sinθ cθ + T t x θ, x 1 x m = x 1 θ ( ) ( / sin / 1/ ) () x = g x c m x + m T t 1 (, ) x = f x u

4 Micro-machined Capacitive Accelerometer From James Doscher, Analog Devices

5 Accelerometer Model a k m v = x f Electrical viewpoint c x E R i = q e v = x f Mechanical viewpoint x

6 Governing Equations ( + ) = = ( Forces on m) m x a f kx cx mx f kx cx ma q E = Ri+ e Rq + = E ( + x) C( x) ( Voltages around loop) q dc x d 1 dc x 1 f =, C( x) = C = C x x = v () dx d + x C x dx Cd q 1 k c v = x v a t mcd m m q q d = + RC d 1 E R First order system of ODEs independent variable: t states: x, v, q (dependent variables) input: a(t) parameters: m, c, k, d, R, C, E

7 Remarks on Capacitor Electric power supplied to capacitor: ei Mechanical power supplied to capacitor: fv Total work on capacitor: W = eidt+ fvdt = edq+ f dx Constitutive relation (electrically linear): q = C x e The electric energy stored in capacitor is defined by e (, ) de q x = e dq + f dx E e q q = dq= C x q C( x) E q E e= = = = e e, f q C x x dx q C( x) dc x

8 Analyzing Ordinary Differential Equations State vector Input Initial condition ( ) system of first order odes: x = f xu, t, x t = x Steady-state (equilibrium) behavior Set input equal to a constant Set state time derivative (velocity) equal to zero Dynamic behavior Time response to initial conditions Time response to inputs

9 Equilibrium Behavior = v q = kx ma q 1 k c Cd = x v a mcd m m q( d + x) = + E q( d + x) 1 Cd = + E RC d R kx ma = CE ( + x d ) d 1 / eliminate q

10 Equilibrium Behavior CE y = d 1 / ( + x d ) unstable E = 1, C =.1, d =.1, k = stable: x=.561, q=.1595 unstable: x=.748, q= stable y = kx ma

11 Dynamic Behavior.15 Transient response from the origin: x =, v =, q = R= 1, c= 1, m= 1, a=.1.5 q -.5 v -.1 x

12 Dynamic Behavior Transient response from the origin: x =, v =, q = R= 1, c= 1, m= 1, a=.1sin t/ 3 q v x

13 Solving ODEs function dy = accel(t,y) dy = zeros(3,1); % a column vector a=; dy(1) = y(); dy() = -y(3)^/.-1*y(1)-1*y()-a; dy(3) = -y(3) * (.1+y(1))/.1+1; Write a function that defines the differential equations >> options = odeset('reltol',1e-4,'abstol',[1e-4 1e-4 1e-5]); >> [T,Y] = ode45(@accel,[ 1],[ ],options); >> plot(t,y(:,1),t,y(:,),t,y(:,3))

14 General Model of Nonlinear System state input u( t ) xt output y( t) System x = f x, u state equation y = h x, u output equation x R, u R, y R n m q

15 Linearization 1 In general models derived from physical principles involve sets of first and second order differential equations. These are reduced to first order standard form, involving the state vector x, input vector u, and output vector y. x = f x, u state equations y = h x, u output equations A set of values ( x, u, y ) is called and equilibrium point if they satisfy: ( x u) (, ) = f, y = h x u We are interested in motions that remain close to the equilibrium point.

16 Linearization () = + δ = + δ = + δ δx = f ( x + δx() t, u + δu() t ) y + δ y() t = h x + δx() t, u + δu() t Define: x t x x t, u t u u t, y t y y t The equations become: Now, construct a Taylor series for f, h (, ) (, ) f x u f x u ( + δ, + δ ) = (, ) + δ + δ + x u h( x, u) h( x, u) h( x + δx, u + δu) = h( x, u ) + δx+ δu+ hot x u Notice that f x, u = and h x, u = y, so f x x u u f x u x u hot (, ) (, ) f x u f x u δ = δ + δ x u h( x, u ) h( x, u ) δ = δ + δ x u x x u y x u δx = Aδx+ Bδu δ y = Cδx+ Dδu

17 Linear System Models: state space & transfer function The diffrential equation or 'state space' model is x t Ax t Bu t y t Cx t Du t x () = () + () state equation () = () + () output equation = x initial condition () y() t. The 'transfer function' model is = G( s) U( s) Y( s) U( s) G( s) The state space model describes how the input u t and the initial condition affect the state x t and the output Y s where, are the Laplace transforms of the output and input and is the transfer function. The transfer function model describes how the input affects the output. state input u( t ) xt output y ( t) System ()

18 Solving ODEs via the Laplace Transform x = Ax+ Bu, y = Cx+ Du ( ) 1 1 = [ ] + [ ] [ ] [ ] L x = AL x + BL u sx s x = AX s + BU s L y = CL x + DL u Y s = CX s + DU s X s si A x si A BU s { } 1 1 Y s = C si A x + C si A B+ D U s Initial condition response Transfer function: [ ] Input response 1 G s = C si A B+ D

19 Example: Accelerometer x = v ( + x) = + ( + x) q 1 k c q d v = x v a() t e= mcd m m Cd q q d RC d 1 E R ( d + x ) δx = δv δ e= δ q q 1 k c Cd δv = δq δx δv δa() t m Cd m m q δ x ( d + x) q Cd q = δq δx RC d RC d

20 Example: Accelerometer 1 δx δx k c q 1 δ δ 1 = δ m m m Cd + δq δq q ( d + x ) RCd RCd v v a δ x q ( d + x ) δ = δ + δ [ ] e v a Cd Cd δ q T state: x= [ δx, δv, δq] input: u= δ a (acceleration) [ ] [ δ e] output: y = (capacitor voltage)

21 Accelerometer Transfer Function >> A=[ 1 ; (.1595)/(.1*.1);- (.1595)/(.1*.1) -( )/(.1*.1)]; >> B=[;-1;]; >> C=[-(.1595)/(.1*.1) -( )/(.1*.1)]; >> Gss=ss(A,B,C,); >> G=tf(Gss) Transfer function: 1.6 s e s^ s^ +.56 s >> zpk(g) Zero/pole/gain: s (s+15.6) (s^ +.111s )

22 Reduction to State Space Form k m c y r( t) Try the usual: An alternative: 1 my = k y r c y r x = x + α r x 1 = x x1 = y k c k c x = x 1 = y x = x1 x + r+ r m m m m x1 = y α1r y = x1+ α1r x = x α r y = x + α r + α r 1 k c x + α 1r + αr = ( x1+ α1r) x + α1r m m 1 ( α ) c c c α1 = and α = α1+ α1 =, α = m m m c x 1 = x + r m k c c k x = x1 x + + r m m m m k c + r + r+ r m m

23 Computing Transfer Functions From original equation: = ( ) ( ) [ ] = [ ] [ ] = [ ] = [ ] y = = + + my k y r c y r Use L y sl y y L y sl y y s L y sy y with y = and ms Y s ky s csy s kr s csr s cs + k cs + k Y( s) = R( s) G( s) = From state space ms cs k ms cs k d x1 1 x1 cm x1 = dt x km cm r, y [ 1 ] [ ] r x + = x + cm + km 1 1 s 1 cm cs + k G( s) = C[ si A] B+ D= [ 1 ] km s cm = + ( cm) + km ms + cs + k

24 Quarter-Car Suspension m m y = k y y k y r c y y c y r my = k y y + c y y 1 1 k c m 1 Verticle motion, y 1, y measured from rest with r= k 1 c 1 r Using Laplace Transform, derive a relationship ( /1.367) between R s and Y s (data from Franklin et al) s Y ( s) = R s 4 3 s + 49s s s

25 Quarter-Car State Space Model 1 m 1 1 ( k1 k) c1 c k c x c1 k1 1 m v1 ( c1 c) 1 m1 m1 m 1 = x 1 m m m m m1 () = [ 1 ] 1 x d v + + m m r t dt x v k c k c v cc y t x1 v 1 x v c ()

26 Summary Accelerometer model Start with physical principles Nonlinear ordinary differential equations First order form: standard form or state varaiable form State space and transfer functions Solving ODEs / Transfer Functions Linear systems are described by state space and transfer function models Linear systems of ODEs can be solved using Laplace transforms The transfer function is used to describe the input-output response Using MATLAB to solve odes Using MATLAB to compute transfer functions

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization Plan of the Lecture Review: control, feedback, etc Today s topic: state-space models of systems; linearization Goal: a general framework that encompasses all examples of interest Once we have mastered

More information

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science EAD 115 Numerical Solution of Engineering and Scientific Problems David M. Rocke Department of Applied Science Transient Response of a Chemical Reactor Concentration of a substance in a chemical reactor

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field

Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6- Transduction Based on Changes in the Energy Stored in an Electrical Field Actuator Examples Microgrippers Normal force driving In-plane force driving» Comb-drive device F = εav d 1 ε oε F rwv

More information

ẋ n = f n (x 1,...,x n,u 1,...,u m ) (5) y 1 = g 1 (x 1,...,x n,u 1,...,u m ) (6) y p = g p (x 1,...,x n,u 1,...,u m ) (7)

ẋ n = f n (x 1,...,x n,u 1,...,u m ) (5) y 1 = g 1 (x 1,...,x n,u 1,...,u m ) (6) y p = g p (x 1,...,x n,u 1,...,u m ) (7) EEE582 Topical Outline A.A. Rodriguez Fall 2007 GWC 352, 965-3712 The following represents a detailed topical outline of the course. It attempts to highlight most of the key concepts to be covered and

More information

Modeling and Simulation Revision III D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N

Modeling and Simulation Revision III D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N Modeling and Simulation Revision III D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N 0 1 4 Block Diagrams Block diagram models consist of two fundamental objects:

More information

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems Agenda of the Day 1. Resume of lesson I 2. Basic system models. 3. Models of basic electrical system elements 4. Application of Matlab/Simulink

More information

Dynamical Systems & Lyapunov Stability

Dynamical Systems & Lyapunov Stability Dynamical Systems & Lyapunov Stability Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University Outline Ordinary Differential Equations Existence & uniqueness Continuous dependence

More information

Analog Signals and Systems and their properties

Analog Signals and Systems and their properties Analog Signals and Systems and their properties Main Course Objective: Recall course objectives Understand the fundamentals of systems/signals interaction (know how systems can transform or filter signals)

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

Linear Systems Theory

Linear Systems Theory ME 3253 Linear Systems Theory Review Class Overview and Introduction 1. How to build dynamic system model for physical system? 2. How to analyze the dynamic system? -- Time domain -- Frequency domain (Laplace

More information

Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N

Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N 2 0 1 7 Modeling Modeling is the process of representing the behavior of a real

More information

School of Engineering Faculty of Built Environment, Engineering, Technology & Design

School of Engineering Faculty of Built Environment, Engineering, Technology & Design Module Name and Code : ENG60803 Real Time Instrumentation Semester and Year : Semester 5/6, Year 3 Lecture Number/ Week : Lecture 3, Week 3 Learning Outcome (s) : LO5 Module Co-ordinator/Tutor : Dr. Phang

More information

Applications of Second-Order Differential Equations

Applications of Second-Order Differential Equations Applications of Second-Order Differential Equations ymy/013 Building Intuition Even though there are an infinite number of differential equations, they all share common characteristics that allow intuition

More information

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as 2 MODELING Once the control target is identified, which includes the state variable to be controlled (ex. speed, position, temperature, flow rate, etc), and once the system drives are identified (ex. force,

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

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67 1/67 ECEN 420 LINEAR CONTROL SYSTEMS Lecture 6 Mathematical Representation of Physical Systems II State Variable Models for Dynamic Systems u 1 u 2 u ṙ. Internal Variables x 1, x 2 x n y 1 y 2. y m Figure

More information

Control Systems I. Lecture 2: Modeling. Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch Emilio Frazzoli

Control Systems I. Lecture 2: Modeling. Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch Emilio Frazzoli Control Systems I Lecture 2: Modeling Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch. 2-3 Emilio Frazzoli Institute for Dynamic Systems and Control D-MAVT ETH Zürich September 29, 2017 E. Frazzoli

More information

CDS 101/110a: Lecture 2.1 Dynamic Behavior

CDS 101/110a: Lecture 2.1 Dynamic Behavior CDS 11/11a: Lecture 2.1 Dynamic Behavior Richard M. Murray 6 October 28 Goals: Learn to use phase portraits to visualize behavior of dynamical systems Understand different types of stability for an equilibrium

More information

System Modeling. Lecture-2. Emam Fathy Department of Electrical and Control Engineering

System Modeling. Lecture-2. Emam Fathy Department of Electrical and Control Engineering System Modeling Lecture-2 Emam Fathy Department of Electrical and Control Engineering email: emfmz@yahoo.com 1 Types of Systems Static System: If a system does not change with time, it is called a static

More information

Control Systems I. Lecture 2: Modeling and Linearization. Suggested Readings: Åström & Murray Ch Jacopo Tani

Control Systems I. Lecture 2: Modeling and Linearization. Suggested Readings: Åström & Murray Ch Jacopo Tani Control Systems I Lecture 2: Modeling and Linearization Suggested Readings: Åström & Murray Ch. 2-3 Jacopo Tani Institute for Dynamic Systems and Control D-MAVT ETH Zürich September 28, 2018 J. Tani, E.

More information

E209A: Analysis and Control of Nonlinear Systems Problem Set 6 Solutions

E209A: Analysis and Control of Nonlinear Systems Problem Set 6 Solutions E9A: Analysis and Control of Nonlinear Systems Problem Set 6 Solutions Michael Vitus Gabe Hoffmann Stanford University Winter 7 Problem 1 The governing equations are: ẋ 1 = x 1 + x 1 x ẋ = x + x 3 Using

More information

Math 3313: Differential Equations Second-order ordinary differential equations

Math 3313: Differential Equations Second-order ordinary differential equations Math 3313: Differential Equations Second-order ordinary differential equations Thomas W. Carr Department of Mathematics Southern Methodist University Dallas, TX Outline Mass-spring & Newton s 2nd law Properties

More information

Homework #5 Solutions

Homework #5 Solutions Homework #5 Solutions Math 123: Mathematical Modeling, Spring 2019 Instructor: Dr. Doreen De Leon 1. Exercise 7.2.5. Stefan-Boltzmann s Law of Radiation states that the temperature change dt/ of a body

More information

Chapter 6. Second order differential equations

Chapter 6. Second order differential equations Chapter 6. Second order differential equations A second order differential equation is of the form y = f(t, y, y ) where y = y(t). We shall often think of t as parametrizing time, y position. In this case

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Basic Terminology A differential equation is an equation that contains an unknown function together with one or more of its derivatives. 1 Examples: 1. y = 2x + cos x 2. dy dt =

More information

CDS 101/110a: Lecture 2.1 Dynamic Behavior

CDS 101/110a: Lecture 2.1 Dynamic Behavior CDS 11/11a: Lecture.1 Dynamic Behavior Richard M. Murray 6 October 8 Goals: Learn to use phase portraits to visualize behavior of dynamical systems Understand different types of stability for an equilibrium

More information

Power Systems Control Prof. Wonhee Kim. Modeling in the Frequency and Time Domains

Power Systems Control Prof. Wonhee Kim. Modeling in the Frequency and Time Domains Power Systems Control Prof. Wonhee Kim Modeling in the Frequency and Time Domains Laplace Transform Review - Laplace transform - Inverse Laplace transform 2 Laplace Transform Review 3 Laplace Transform

More information

Introduction to Modern Control MT 2016

Introduction to Modern Control MT 2016 CDT Autonomous and Intelligent Machines & Systems Introduction to Modern Control MT 2016 Alessandro Abate Lecture 2 First-order ordinary differential equations (ODE) Solution of a linear ODE Hints to nonlinear

More information

Aldi Mucka Tonin Dodani Marjela Qemali Rajmonda Bualoti Polytechnic University of Tirana, Faculty of Electric Engineering, Republic of Albania

Aldi Mucka Tonin Dodani Marjela Qemali Rajmonda Bualoti Polytechnic University of Tirana, Faculty of Electric Engineering, Republic of Albania 8. СОВЕТУВАЊЕ Охрид, 22 24 септември Aldi Mucka Tonin Dodani Marjela Qemali Rajmonda Bualoti Polytechnic University of Tirana, Faculty of Electric Engineering, Republic of Albania REHABILITATIONS OF EXCITATION

More information

Consider a particle in 1D at position x(t), subject to a force F (x), so that mẍ = F (x). Define the kinetic energy to be.

Consider a particle in 1D at position x(t), subject to a force F (x), so that mẍ = F (x). Define the kinetic energy to be. Chapter 4 Energy and Stability 4.1 Energy in 1D Consider a particle in 1D at position x(t), subject to a force F (x), so that mẍ = F (x). Define the kinetic energy to be T = 1 2 mẋ2 and the potential energy

More information

MEM 355 Performance Enhancement of Dynamical Systems

MEM 355 Performance Enhancement of Dynamical Systems MEM 355 Performance Enhancement of Dynamical Systems State Space Design Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University 11/8/2016 Outline State space techniques emerged

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

7.3 State Space Averaging!

7.3 State Space Averaging! 7.3 State Space Averaging! A formal method for deriving the small-signal ac equations of a switching converter! Equivalent to the modeling method of the previous sections! Uses the state-space matrix description

More information

State Space Design. MEM 355 Performance Enhancement of Dynamical Systems

State Space Design. MEM 355 Performance Enhancement of Dynamical Systems State Space Design MEM 355 Performance Enhancement of Dynamical Systems Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University Outline State space techniques emerged around

More information

Linear System Theory

Linear System Theory Linear System Theory - MATLAB Exercise Prof. Robert X. Gao Electromechanical Systems Laboratory Department of Mechanical Engineering Outline Review System Modeling Procedure Example Simple Problem Example

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field

Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6-1 Transduction Based on Changes in the Energy Stored in an Electrical Field Electric Field and Forces Suppose a charged fixed q 1 in a space, an exploring charge q is moving toward the fixed

More information

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5 University of Alberta ENGM 54: Modeling and Simulation of Engineering Systems Laboratory #5 M.G. Lipsett, Updated 00 Integration Methods with Higher-Order Truncation Errors with MATLAB MATLAB is capable

More information

An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops

An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops BMAS 2007, San Jose, 20-21 September 2007 An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops Chenxu Zhao, Leran Wang and Tom

More information

Topic # Feedback Control

Topic # Feedback Control Topic #7 16.31 Feedback Control State-Space Systems What are state-space models? Why should we use them? How are they related to the transfer functions used in classical control design and how do we develop

More information

Definition of differential equations and their classification. Methods of solution of first-order differential equations

Definition of differential equations and their classification. Methods of solution of first-order differential equations Introduction to differential equations: overview Definition of differential equations and their classification Solutions of differential equations Initial value problems Existence and uniqueness Mathematical

More information

Oscillations. Tacoma Narrow Bridge: Example of Torsional Oscillation

Oscillations. Tacoma Narrow Bridge: Example of Torsional Oscillation Oscillations Mechanical Mass-spring system nd order differential eq. Energy tossing between mass (kinetic energy) and spring (potential energy) Effect of friction, critical damping (shock absorber) Simple

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

MEM 355 Performance Enhancement of Dynamical Systems MIMO Introduction

MEM 355 Performance Enhancement of Dynamical Systems MIMO Introduction MEM 355 Performance Enhancement of Dynamical Systems MIMO Introduction Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University 11/2/214 Outline Solving State Equations Variation

More information

MATH 2250 Final Exam Solutions

MATH 2250 Final Exam Solutions MATH 225 Final Exam Solutions Tuesday, April 29, 28, 6: 8:PM Write your name and ID number at the top of this page. Show all your work. You may refer to one double-sided sheet of notes during the exam

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6-5 Transducers with cylindrical Geometry For a cylinder of radius r centered inside a shell with with an inner radius

More information

1 (30 pts) Dominant Pole

1 (30 pts) Dominant Pole EECS C8/ME C34 Fall Problem Set 9 Solutions (3 pts) Dominant Pole For the following transfer function: Y (s) U(s) = (s + )(s + ) a) Give state space description of the system in parallel form (ẋ = Ax +

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

Consider an ideal pendulum as shown below. l θ is the angular acceleration θ is the angular velocity

Consider an ideal pendulum as shown below. l θ is the angular acceleration θ is the angular velocity 1 Second Order Ordinary Differential Equations 1.1 The harmonic oscillator Consider an ideal pendulum as shown below. θ l Fr mg l θ is the angular acceleration θ is the angular velocity A point mass m

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS 1. Basic Terminology A differential equation is an equation that contains an unknown function together with one or more of its derivatives. 1 Examples: 1. y = 2x + cos x 2. dy dt

More information

EEE582 Homework Problems

EEE582 Homework Problems EEE582 Homework Problems HW. Write a state-space realization of the linearized model for the cruise control system around speeds v = 4 (Section.3, http://tsakalis.faculty.asu.edu/notes/models.pdf). Use

More information

Chapter 27. Circuits

Chapter 27. Circuits Chapter 27 Circuits 1 1. Pumping Chagres We need to establish a potential difference between the ends of a device to make charge carriers follow through the device. To generate a steady flow of charges,

More information

Passive RL and RC Filters

Passive RL and RC Filters NDSU Passive RL and RC Filters ECE 3 Passive RL and RC Filters A filter is a system whose gain changes with frequency. Essentially, all dynamic systems are filters. -Stage Low-Pass Filter For the following

More information

SMA 208: Ordinary differential equations I

SMA 208: Ordinary differential equations I SMA 208: Ordinary differential equations I First Order differential equations Lecturer: Dr. Philip Ngare (Contacts: pngare@uonbi.ac.ke, Tue 12-2 PM) School of Mathematics, University of Nairobi Feb 26,

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Circuit Analysis Simple electric circuits may contain batteries, resistors, and capacitors in various combinations. For some circuits, analysis may consist of combining

More information

Computer Problems for Methods of Solving Ordinary Differential Equations

Computer Problems for Methods of Solving Ordinary Differential Equations Computer Problems for Methods of Solving Ordinary Differential Equations 1. Have a computer make a phase portrait for the system dx/dt = x + y, dy/dt = 2y. Clearly indicate critical points and separatrices.

More information

ECE2262 Electric Circuit

ECE2262 Electric Circuit ECE2262 Electric Circuit Chapter 7: FIRST AND SECOND-ORDER RL AND RC CIRCUITS Response to First-Order RL and RC Circuits Response to Second-Order RL and RC Circuits 1 2 7.1. Introduction 3 4 In dc steady

More information

3.3. SYSTEMS OF ODES 1. y 0 " 2y" y 0 + 2y = x1. x2 x3. x = y(t) = c 1 e t + c 2 e t + c 3 e 2t. _x = A x + f; x(0) = x 0.

3.3. SYSTEMS OF ODES 1. y 0  2y y 0 + 2y = x1. x2 x3. x = y(t) = c 1 e t + c 2 e t + c 3 e 2t. _x = A x + f; x(0) = x 0. .. SYSTEMS OF ODES. Systems of ODEs MATH 94 FALL 98 PRELIM # 94FA8PQ.tex.. a) Convert the third order dierential equation into a rst oder system _x = A x, with y " y" y + y = x = @ x x x b) The equation

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS 1. Basic Terminology A differential equation is an equation that contains an unknown function together with one or more of its derivatives. 1 Examples: 1. y = 2x + cos x 2. dy dt

More information

Introduction to AC Circuits (Capacitors and Inductors)

Introduction to AC Circuits (Capacitors and Inductors) Introduction to AC Circuits (Capacitors and Inductors) Amin Electronics and Electrical Communications Engineering Department (EECE) Cairo University elc.n102.eng@gmail.com http://scholar.cu.edu.eg/refky/

More information

θ α W Description of aero.m

θ α W Description of aero.m Description of aero.m Determination of the aerodynamic forces, moments and power by means of the blade element method; for known mean wind speed, induction factor etc. Simplifications: uniform flow (i.e.

More information

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems CDS 101 1. For each of the following linear systems, determine whether the origin is asymptotically stable and, if so, plot the step response and frequency response for the system. If there are multiple

More information

5HC99 Embedded Vision Control. Feedback Control Systems. dr. Dip Goswami Flux Department of Electrical Engineering

5HC99 Embedded Vision Control. Feedback Control Systems. dr. Dip Goswami Flux Department of Electrical Engineering 5HC99 Embedded Vision Control Feedback Control Systems dr. Dip Goswami d.goswami@tue.nl Flux 04.135 Department of Electrical Engineering 1 Example Feedback control system: regulates the behavior of dynamical

More information

A differential Lyapunov framework for contraction analysis

A differential Lyapunov framework for contraction analysis A differential Lyapunov framework for contraction analysis F. Forni, R. Sepulchre University of Liège Reykjavik, July 19th, 2013 Outline Incremental stability d(x 1 (t),x 2 (t)) 0 Differential Lyapunov

More information

Elementary Differential Equations

Elementary Differential Equations Elementary Differential Equations George Voutsadakis 1 1 Mathematics and Computer Science Lake Superior State University LSSU Math 310 George Voutsadakis (LSSU) Differential Equations January 2014 1 /

More information

Plasma Current, Position and Shape Control Hands-on Session June 2, 2010

Plasma Current, Position and Shape Control Hands-on Session June 2, 2010 , Position and Shape Control Hands-on Session June 2, 2010 June 2, 2010 - ITER International Summer School 2010 Shape 1 1 CREATE, Università di Napoli Federico II 1 for the JET tokamak PF Currents for

More information

Topic # /31 Feedback Control Systems. Analysis of Nonlinear Systems Lyapunov Stability Analysis

Topic # /31 Feedback Control Systems. Analysis of Nonlinear Systems Lyapunov Stability Analysis Topic # 16.30/31 Feedback Control Systems Analysis of Nonlinear Systems Lyapunov Stability Analysis Fall 010 16.30/31 Lyapunov Stability Analysis Very general method to prove (or disprove) stability of

More information

Modeling General Concepts

Modeling General Concepts Modeling General Concepts Basic building blocks of lumped-parameter modeling of real systems mechanical electrical fluid thermal mixed with energy-conversion devices Real devices are modeled as combinations

More information

dx n a 1(x) dy

dx n a 1(x) dy HIGHER ORDER DIFFERENTIAL EQUATIONS Theory of linear equations Initial-value and boundary-value problem nth-order initial value problem is Solve: a n (x) dn y dx n + a n 1(x) dn 1 y dx n 1 +... + a 1(x)

More information

Work and kinetic energy. If a net force is applied on an object, the object may

Work and kinetic energy. If a net force is applied on an object, the object may Work and kinetic energy If a net force is applied on an object, the object may CHAPTER 6 WORK AND ENERGY experience a change in position, i.e., a displacement. When a net force is applied over a distance,

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

Lecture A1 : Systems and system models

Lecture A1 : Systems and system models Lecture A1 : Systems and system models Jan Swevers July 2006 Aim of this lecture : Understand the process of system modelling (different steps). Define the class of systems that will be considered in this

More information

Lecture 4: Dynamics of Equivalent Circuits

Lecture 4: Dynamics of Equivalent Circuits Lecture 4: Dynamics of Equivalent Circuits MIT Student (and MZB) 1. Simple Equivalent Circuit for a Battery Batteries have a finite charge capacity Q max. So the open circuit voltage is dependent upon

More information

Math Assignment 6

Math Assignment 6 Math 2280 - Assignment 6 Dylan Zwick Fall 2013 Section 3.7-1, 5, 10, 17, 19 Section 3.8-1, 3, 5, 8, 13 Section 4.1-1, 2, 13, 15, 22 Section 4.2-1, 10, 19, 28 1 Section 3.7 - Electrical Circuits 3.7.1 This

More information

Electric Potential. Capacitors (Chapters 28, 29)

Electric Potential. Capacitors (Chapters 28, 29) Electric Potential. Capacitors (Chapters 28, 29) Electric potential energy, U Electric potential energy in a constant field Conservation of energy Electric potential, V Relation to the electric field strength

More information

Lab 6a: Pole Placement for the Inverted Pendulum

Lab 6a: Pole Placement for the Inverted Pendulum Lab 6a: Pole Placement for the Inverted Pendulum Idiot. Above her head was the only stable place in the cosmos, the only refuge from the damnation of the Panta Rei, and she guessed it was the Pendulum

More information

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011 FE Review 1 ELECTRONICS E # 1 FUNDAMENTALS Electric Charge 2 In an electric circuit it there is a conservation of charge. The net electric charge is constant. There are positive and negative charges. Like

More information

PH.D. PRELIMINARY EXAMINATION MATHEMATICS

PH.D. PRELIMINARY EXAMINATION MATHEMATICS UNIVERSITY OF CALIFORNIA, BERKELEY SPRING SEMESTER 207 Dept. of Civil and Environmental Engineering Structural Engineering, Mechanics and Materials NAME PH.D. PRELIMINARY EXAMINATION MATHEMATICS Problem

More information

Noise - irrelevant data; variability in a quantity that has no meaning or significance. In most cases this is modeled as a random variable.

Noise - irrelevant data; variability in a quantity that has no meaning or significance. In most cases this is modeled as a random variable. 1.1 Signals and Systems Signals convey information. Systems respond to (or process) information. Engineers desire mathematical models for signals and systems in order to solve design problems efficiently

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

Raktim Bhattacharya. . AERO 632: Design of Advance Flight Control System. Preliminaries

Raktim Bhattacharya. . AERO 632: Design of Advance Flight Control System. Preliminaries . AERO 632: of Advance Flight Control System. Preliminaries Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University. Preliminaries Signals & Systems Laplace

More information

Aircraft Dynamics First order and Second order system

Aircraft Dynamics First order and Second order system Aircraft Dynamics First order and Second order system Prepared by A.Kaviyarasu Assistant Professor Department of Aerospace Engineering Madras Institute Of Technology Chromepet, Chennai Aircraft dynamic

More information

Quiescent Steady State (DC) Analysis The Newton-Raphson Method

Quiescent Steady State (DC) Analysis The Newton-Raphson Method Quiescent Steady State (DC) Analysis The Newton-Raphson Method J. Roychowdhury, University of California at Berkeley Slide 1 Solving the System's DAEs DAEs: many types of solutions useful DC steady state:

More information

2 Lyapunov Stability. x(0) x 0 < δ x(t) x 0 < ɛ

2 Lyapunov Stability. x(0) x 0 < δ x(t) x 0 < ɛ 1 2 Lyapunov Stability Whereas I/O stability is concerned with the effect of inputs on outputs, Lyapunov stability deals with unforced systems: ẋ = f(x, t) (1) where x R n, t R +, and f : R n R + R n.

More information

Linear System Theory

Linear System Theory Linear System Theory - Laplace Transform Prof. Robert X. Gao Department of Mechanical Engineering University of Connecticut Storrs, CT 06269 Outline What we ve learned so far: Setting up Modeling Equations

More information

Read textbook CHAPTER 1.4, Apps B&D

Read textbook CHAPTER 1.4, Apps B&D Lecture 2 Read textbook CHAPTER 1.4, Apps B&D Today: Derive EOMs & Linearization undamental equation of motion for mass-springdamper system (1DO). Linear and nonlinear system. Examples of derivation of

More information

Modified Nodal Analysis for MEMS Design Using SUGAR

Modified Nodal Analysis for MEMS Design Using SUGAR Modified Nodal Analysis for MEMS Design Using SUGAR Ningning Zhou, Jason Clark, Kristofer Pister, Sunil Bhave, BSAC David Bindel, James Demmel, Depart. of CS, UC Berkeley Sanjay Govindjee, Depart. of CEE,

More information

EE C128 / ME C134 Midterm Fall 2014

EE C128 / ME C134 Midterm Fall 2014 EE C128 / ME C134 Midterm Fall 2014 October 16, 2014 Your PRINTED FULL NAME Your STUDENT ID NUMBER Number of additional sheets 1. No computers, no tablets, no connected device (phone etc.) 2. Pocket calculator

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Basic Terminology A differential equation is an equation that contains an unknown function together with one or more of its derivatives. 1 Examples: 1. y = 2x + cos x 2. dy dt =

More information

Inverted Pendulum. Objectives

Inverted Pendulum. Objectives Inverted Pendulum Objectives The objective of this lab is to experiment with the stabilization of an unstable system. The inverted pendulum problem is taken as an example and the animation program gives

More information

Contents. Dynamics and control of mechanical systems. Focus on

Contents. Dynamics and control of mechanical systems. Focus on Dynamics and control of mechanical systems Date Day 1 (01/08) Day 2 (03/08) Day 3 (05/08) Day 4 (07/08) Day 5 (09/08) Day 6 (11/08) Content Review of the basics of mechanics. Kinematics of rigid bodies

More information

Course Outline. Higher Order Poles: Example. Higher Order Poles. Amme 3500 : System Dynamics & Control. State Space Design. 1 G(s) = s(s + 2)(s +10)

Course Outline. Higher Order Poles: Example. Higher Order Poles. Amme 3500 : System Dynamics & Control. State Space Design. 1 G(s) = s(s + 2)(s +10) Amme 35 : System Dynamics Control State Space Design Course Outline Week Date Content Assignment Notes 1 1 Mar Introduction 2 8 Mar Frequency Domain Modelling 3 15 Mar Transient Performance and the s-plane

More information

Control Systems Lab - SC4070 System Identification and Linearization

Control Systems Lab - SC4070 System Identification and Linearization Control Systems Lab - SC4070 System Identification and Linearization Dr. Manuel Mazo Jr. Delft Center for Systems and Control (TU Delft) m.mazo@tudelft.nl Tel.:015-2788131 TU Delft, February 13, 2015 (slides

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts 1 Signals A signal is a pattern of variation of a physical quantity, often as a function of time (but also space, distance, position, etc). These quantities are usually the

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

A. B. C. D. E. v x. ΣF x

A. B. C. D. E. v x. ΣF x Q4.3 The graph to the right shows the velocity of an object as a function of time. Which of the graphs below best shows the net force versus time for this object? 0 v x t ΣF x ΣF x ΣF x ΣF x ΣF x 0 t 0

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Spring 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs)

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Fall 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs) is

More information

Modeling and Control Overview

Modeling and Control Overview Modeling and Control Overview D R. T A R E K A. T U T U N J I A D V A N C E D C O N T R O L S Y S T E M S M E C H A T R O N I C S E N G I N E E R I N G D E P A R T M E N T P H I L A D E L P H I A U N I

More information

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform ME45: Control Systems Lecture 2 Prof. Jongeun Choi Department of Mechanical Engineering Michigan State University Modeling Transfer function Models for systems electrical mechanical electromechanical Block

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 9. 8. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information