(x(t) depends on the initial conditions)

Slides:



Advertisements
Similar presentations
Solving Differential Equations BIOE Solving Differential Equations Ex. Shock absorber with rigid massless tire Start with no input r(t)=0, assume.
Advertisements

LAPLACE TRANSFORMS.
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:
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
Ch 6.2: Solution of Initial Value Problems
Lecture 171 Higher Order Circuits. Lecture 172 Higher Order Circuits The text has a chapter on 1st order circuits and a chapter on 2nd order circuits.
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.
Lecture 2 Differential equations
ISAT 412 -Dynamic Control of Energy Systems (Fall 2005)
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.
Lecture 2 Differential equations
Signals and Systems 1 Lecture 8 Dr. Ali. A. Jalali September 6, 2002.
Mathematical Models and Block Diagrams of Systems Regulation And Control Engineering.
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.
SECOND ORDER LINEAR Des WITH CONSTANT COEFFICIENTS.
Chapter 7 The Laplace Transform
, Free vibration Eigenvalue equation EIGENVALUE EQUATION
Differential Equations Linear Equations with Variable Coefficients.
Modeling Transient Response So far our analysis has been purely kinematic: The transient response has been ignored The inertia, damping, and elasticity.
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
Ch 4.2: Homogeneous Equations with Constant Coefficients Consider the nth order linear homogeneous differential equation with constant, real coefficients:
Inverse Laplace Transform. Laplace Transform of derivatives.
Lecture 2: The Laplace Transform Laplace transform definition Laplace transform properties Relation between time and Laplace domains Initial and Final.
DR S. & S.S. GHANDHY ENGINEENRING COLLEGE SUBJECT:- ADVANCE ENGINEERING MATHEMATICS SUBJECT CODE : Topic : Laplace Transform.
Properties of the z-Transform
Mathematical Models of Control Systems
Differential Equations
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
자동제어 3강: 라플라스 역변환 강의실 : 산107 담당교수 : 고경철(기계공학부) 사무실 : 산학협력관 105B
(x(t) depends on the initial conditions)
Mathematical Modeling of Control Systems
Equations of Motion: Kinetic energy: Potential energy: Sin≈
Lecture 3: Solving Diff Eqs with the Laplace Transform
ME375 Handouts - Fall 2002 MESB374 Chapter8 System Modeling and Analysis Time domain Analysis Transfer Function Analysis.
Equations of Motion: Kinetic energy: Potential energy: Sin≈
8. Solution of Linear Differential Equations
Eigenvalues: p1=-4.526, p2,3= ±2.7883i, p4=
Example: Obtain the equation of motion of the mechanical system given below. Write the form of the output θ(t) in case of free vibration and determine.
Mechatronics Engineering
(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
CHAPTER-6 Z-TRANSFORM.
Week 9 3. Applications of the LT to ODEs Theorem 1:
8. Solution of Linear Differential Equations: f(t): Input,
Linear Differential Equations with Constant Coefficients:
8. Solution of Linear Differential Equations: f(t): Input,
8. Solution of Linear Differential Equations: f(t): Input,
Eigenvalues: p1=-4.526, p2,3= ±2.7883i, p4=
2a. Transfer function of closed loop system
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
Linear Time Invariant systems
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)
Presentation transcript:

(x(t) depends on the initial conditions) Linear Differential Equations with Constant Coefficients: (Characteristic polynomial) If Different two roots (No oscillation) Repeated roots Complex roots (Oscillatory response) The form of the system response is determined by the eigenvalues of the system which are determined by m, c and k. Critical damping coefficient (Damping ratio) f(t) k c m x(t) Assume Homogeneous Form (x(t) depends on the initial conditions) 

Example: f(t): Input u(t): Output (response) 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)