Modern Control System EKT 308 Modeling in state space Modeling Physical Systems.

Slides:



Advertisements
Similar presentations
State Variables.
Advertisements

Lect.3 Modeling in The Time Domain Basil Hamed
ECE 8443 – Pattern Recognition ECE 3163 – Signals and Systems Objectives: Review Resources: Wiki: State Variables YMZ: State Variable Technique Wiki: Controllability.
Ch 6.3: Step Functions Some of the most interesting elementary applications of the Laplace Transform method occur in the solution of linear equations.
Transfer Functions Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: The following terminology.
Modeling in the Time Domain - State-Space
Control Systems and Adaptive Process. Design, and control methods and strategies 1.
Digital Control Systems
Modern Control System EKT 308 General Introduction Introduction to Control System Brief Review - Differential Equation - Laplace Transform.
Newton’s Second Law of Motion
Modern Control Systems EKT 308
Ch. 6 Single Variable Control
Transfer Functions Chapter 4
Module 5570 Control Systems and Design
SE 207: Modeling and Simulation Introduction to Laplace Transform
1 In this lecture we will compare two linearizing controller for a single-link robot: Linearization via Taylor Series Expansion Feedback Linearization.
1 Lecture D32 : Damped Free Vibration Spring-Dashpot-Mass System Spring Force k > 0 Dashpot c > 0 Newton’s Second Law (Define) Natural Frequency and Period.
Lecturer CS&E Department,
Motivation Thus far we have dealt primarily with the input/output characteristics of linear systems. State variable, or state space, representations describe.
Feedback Control Systems (FCS) Dr. Imtiaz Hussain URL :
Chapter 2 Systems Defined by Differential or Difference Equations.
1 G. Baribaud/AB-BDI Digital Signal Processing March 2003 DISP-2003 The Laplace transform  The linear system concept  The definition and the properties.
Impulse Newton’s second law of motion, F = ma, can be rewritten by using the definition of acceleration as the change in velocity divided by the time.
Lecture 7: State-Space Modeling 1.Introduction to state-space modeling Definitions How it relates to other modeling formalisms 2.State-space examples 3.Transforming.
Accelerated Motion. Newton’s Second Law of Motion (Law of Force)- Net force acting on an object causes the object to accelerate in the direction of the.
Lecture 3: Dynamic Models
Dr. Tamer Samy Gaafar Lec. 3 Mathematical Modeling of Dynamic System.
Textbook and Syllabus Textbook: Syllabus:
ABE 463 Electro-hydraulic systems Laplace transform Tony Grift
TRANSFER FUNCTION Prepared by Mrs. AZDUWIN KHASRI.
The Laplace Transform.
In The Name of Allah The Most Beneficent The Most Merciful 1.
State Equations BIOE Processes A process transforms input to output States are variables internal to the process that determine how this transformation.
Lecture 2: The Laplace Transform Laplace transform definition Laplace transform properties Relation between time and Laplace domains Initial and Final.
1 Chapter 3 State Variable Models The State Variables of a Dynamic System The State Differential Equation Signal-Flow Graph State Variables The Transfer.
Modern Control TheoryLecture 1, written by Xiaodong Zhao1 Modern Control Theory Syllabus Course Coordinator: Dr. Xiaodong Zhao – Room: Building Lab 2,
Lecture 3 Modeling (ii) –State Space approach
Modern Control System EKT 308
Digital and Non-Linear Control
Automatic Control Theory CSE 322
MESB374 System Modeling and Analysis
Modeling and Simulation Dr. Mohammad Kilani
Advanced Control Systems (ACS)
State Space Representation
Control Engineering ( ) G-14
OSE801 Engineering System Identification Spring 2010
EKT 119 ELECTRIC CIRCUIT II
Mathematical Models of Physical Systems
Mathematical Modeling of Control Systems
Lecture 4: Modeling Mechanical Systems
Laplace and Z transforms
Mechanical Engineering at Virginia Tech
Modern Control Systems (MCS)
BDU20303 Electromechanical & Control System Sem I 11/12 Chapter 3: Time Response Analysis (First Order System)
Newton’s Second Law of Motion
Chapter 1 Fundamental Concepts
Modeling in the Time Domain
State Space Analysis UNIT-V.
State Space Method.
EKT 119 ELECTRIC CIRCUIT II
Exponential and Logarithmic Forms
Impulse Newton’s second law of motion, F = ma, can be rewritten by using the definition of acceleration as the change in velocity divided by.
Example 1: Find the magnitude and phase angle of
Unit-Impulse Response
Functions and Tables.
Chapter 2. Mathematical Foundation
. Modeling OBJECTIVE Revision on Laplace transform
Chapter 3 Modeling in the Time Domain
Newtons' Laws A summary.
Presentation transcript:

Modern Control System EKT 308 Modeling in state space Modeling Physical Systems

State Variable Model Modern Control Theory is based on state variable. Can handle multiple-input multiple output Linear, nonlinear Time variant or invariant. State: The smallest set of variables (called state variables) such that knowledge of these variables at, together with knowledge of the input for, completely determines the behavior of the system at any time State Vector : State variables representing a system state form a vector called state vector.

State Variable Model (contd…) State-space: The n-dimensional space spanned by the n state vectors is called the state-space. Any state can be represented by a point in the state space.

State-Space Equation Variables: Input variables, output variables and state variables

State-Space Equation (contd…) Let us define

State-Space Equation (contd…)

Example

Scilab program A = [0, -2;1, -3]; disp (A); B=[2;0]; disp(B); C=[0 3]; disp(C); t = 0:0.01:10; len = length(t); //u = sin(t); //u = t; u = ones(1, len); dt = 0.01; x = [0;0]; y = zeros(1, len); for idx=1:len xdot = A*x+B*u(idx); x = x + xdot * dt; y(idx)=C * x; end figure (1); plot(t, y);

Mechanical Systems Mechanical systems are governed by Newton's Laws of motion. There are three basic elements that comprise a mechanical system. These are  Mass,  Damping(friction), and  Spring. Newton's Second law: Force = mass x acceleration

Summary

Laplace Transform’s table for common functions Function, Laplace Transform Unit Impulse, 1 Unit step, Unit ramp, Exponential, Sine, Cosain, Damped sine, Damped cosain, Damped ramp,