Linear Differential Equations with Constant Coefficients:

Slides:



Advertisements
Similar presentations
LAPLACE TRANSFORMS.
Advertisements

H(s) x(t)y(t) 8.b Laplace Transform: Y(s)=X(s) H(s) The Laplace transform can be used in the solution of ordinary linear differential equations. Let’s.
8. Solution of Linear Differential Equations Example 8.1 f(t) : Input u(t) : Response s 3 H(s)e st +4s 2 H(s)e st +14sH(s)e st +20H(s)e st =3e st +se st.
Lecture 3 Laplace transform
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS Example: Mathematical model of a mechanical system is defined as a system of differential equations as follows:
Ch 6.2: Solution of Initial Value Problems
Bogazici University Dept. Of ME. Laplace Transforms Very useful in the analysis and design of LTI systems. Operations of differentiation and integration.
1 Lavi Shpigelman, Dynamic Systems and control – – Linear Time Invariant systems  definitions,  Laplace transform,  solutions,  stability.
1 Lavi Shpigelman, Dynamic Systems and control – – Linear Time Invariant systems  definitions,  Laplace transform,  solutions,  stability.
SYSTEM OF DIFFERENTIAL EQUATIONS f(t) : Input u(t) and v(t) : Outputs to be found System of constant coefficient differential equations with two unknowns.
ISAT 412 -Dynamic Control of Energy Systems (Fall 2005)
CHAPTER III LAPLACE TRANSFORM
Topic-laplace transformation Presented by Harsh PATEL
Linear Differential Equations with Constant Coefficients: Example: f(t): Input u(t): Output (response) Characteristic Equation: Homogenous solution f(t)=0.
MESB 374 System Modeling and Analysis Inverse Laplace Transform and I/O Model.
Chapter 2 Modeling of Control Systems NUAA-Control System Engineering.
Signals and Systems 1 Lecture 8 Dr. Ali. A. Jalali September 6, 2002.
Examples: Write the transfer function of the electrical circuit including Op-Amp (Operational Amplifier). Write the Matlab program to calculate the eigenvalues.
SYSTEM OF DIFFERENTIAL EQUATIONS f(t) : Input u(t) and v(t) : Outputs to be found System of constant coefficient differential equations with two unknowns.
Differential Equations Linear Equations with Variable Coefficients.
Alexander-Sadiku Fundamentals of Electric Circuits
EE 401 Control Systems Analysis and Design A Review of The Laplace Transform Wednesday 27 Aug 2014 EE 401: Control Systems Analysis and Design Slide 1.
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
EE 401 Control Systems Analysis and Design A Review of The Laplace Transform Friday 15 Jan 2016 EE 401: Control Systems Analysis and Design Slide 1 of.
case study on Laplace transform
Properties of the z-Transform
LAPLACE TRANSFORMS.
Lec 4. the inverse Laplace Transform
H(s) 8.b Laplace Transform:
MESB374 System Modeling and Analysis Transfer Function Analysis
CHAPTER III LAPLACE TRANSFORM
Chapter 6 Laplace Transform
Translation Theorems and Derivatives of a Transform
자동제어 3강: 라플라스 역변환 강의실 : 산107 담당교수 : 고경철(기계공학부) 사무실 : 산학협력관 105B
EKT 119 ELECTRIC CIRCUIT II
(x(t) depends on the initial conditions)
Mathematical Modeling of Control Systems
Equations of Motion: Kinetic energy: Potential energy: Sin≈
Complex Frequency and Laplace Transform
ME375 Handouts - Fall 2002 MESB374 Chapter8 System Modeling and Analysis Time domain Analysis Transfer Function Analysis.
Chapter 15 Introduction to the Laplace Transform
Equations of Motion: Kinetic energy: Potential energy: Sin≈
8. Solution of Linear Differential Equations
Eigenvalues: p1=-4.526, p2,3= ±2.7883i, p4=
Mechatronics Engineering
(x(t) depends on the initial conditions)
(x(t) depends on the initial conditions)
SYSTEM OF DIFFERENTIAL EQUATIONS
Equations of Motion: Kinetic energy: Potential energy: Sin≈
4. Closed-Loop Responses Using the Laplace Transform Method
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
EKT 119 ELECTRIC CIRCUIT II
CHAPTER-6 Z-TRANSFORM.
Signals and Systems EE235 Leo Lam ©
Week 9 3. Applications of the LT to ODEs Theorem 1:
Example 1: Find the magnitude and phase angle of
HOMEWORK 08B Impulse, step response Problem 1: Problem 2: Problem 3:
8. Solution of Linear Differential Equations: f(t): Input,
Chapter 2. Mathematical Foundation
8. Solution of Linear Differential Equations: f(t): Input,
8. Solution of Linear Differential Equations: f(t): Input,
o Problem Reconsider Problem
Eigenvalues: p1=-4.526, p2,3= ±2.7883i, p4=
2a. Transfer function of closed loop system
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
SYSTEM OF DIFFERENTIAL EQUATIONS
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
(x(t) depends on the initial conditions)
LAPLACE TRANSFORMATION
Presentation transcript:

Linear Differential Equations with Constant Coefficients: f(t): Input u(t): Output (response) Example: Homogeneous solution f(t)=0. u(t)=est With Matlab: Characteristic Equation: s3est + 4s2est + 14sest + 20est= 0 a=[1,4,14,20];roots(a) s3 + 4s2 + 14s + 20 = 0 Eigenvalues: -13i, - 2 uh(t) = C1e(-1+3i)t + C2 e(-1-3i)t + A2e-2t uh(t) = A1e-tcos(3t-φ)+A2e-2t

uh(t) = A1e-tcos(3t-φ)+A2e-2t Initial conditions: at t=0 -1.2 = A1 cosφ + A2 2.5 = -A1 cosφ +3A1 sinφ -2A2 -3.1= -8A1 cosφ - 6A1 sinφ + 4A2 A1, A2 and φ can be found by Newton-Raphson method.

Laplace Transform:

Laplace Transform of the Derivatives :

(shift in time or delay):

Laplace transform of the solution due to the initial conditions: Initial conditions: at t=0

Partial fraction expansion: With Matlab; num=[-1.2,-2.3,-9.9]; den=[1,4,14,20]; [r,p,k]=residue(num,den) r(1)=-0.095-0.0483i, r(2)=-0.095+0.0483i, r(3)=-1.01

Homogeneous solution : uh(t) = A1e-tcos(3t-φ)+A2e-2t With Matlab; z=-0.095+0.0483i A1=2*abs(z) fi=angle(z)

At t=0 are given. Find θ(t). EXAMPLES: The equation of the motion for the unforced motion of a simple pendulum is given as: m g θ Joint friction, B L m=2 kg B=4 Nms/rad L=2 m At t=0 are given. Find θ(t). Applying the Laplace transform,

[r,p,k]=residue(num,den) EXAMPLES: Laplace transform of the homogenous solution (due to the initial conditions) Eigenvalues The system is stable because the real parts of all the roots are negative. clc;clear num=[4 10]; den=[8 4 39.24]; [r,p,k]=residue(num,den) r(2) A=2*abs(r(2)) Fi=angle(r(2)) Re 0.25 0.2556 Img

EXAMPLES: clc;clear dt=0.1418; ts=25.149; t=0:dt:ts; tetat=0.7151*exp(-0.25*t).*cos(2.2006*t-0.7965); plot(t,tetat)