1 / 5

SYSTEM OF DIFFERENTIAL EQUATIONS:

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. * First order derivative terms are on the left hand side. x : State variable matrix (nx1). A : System matrix (nxn).

marlin
Download Presentation

SYSTEM OF DIFFERENTIAL EQUATIONS:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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 * First order derivative terms are on the left hand side x : State variable matrix (nx1) A : System matrix (nxn) u : Input matrix (mx1) * Non-derivative terms are on the right hand side B : Matrix with dimension (nxm)

  2. Let’s use the variables and and Example: f(t):Input x(t) and y(t) : Outputs to be found

  3. s X(s) - x0 = A X(s) + B U(s) s I X(s) – x0 = A X(s) + B U (s) [s I – A] X(s) = x0 + B U (s) X(s) = [s I – A]-1 x0 + [s I – A]-1 B U (s) Particular part Homogenous part

  4. Example: At t=0 u=-2 , v=3 ; F(s) = -4/s D(s)=det[sI-A]=s2+3s+120 : Eigenvalue equation X(s) = [s I – A]-1 x0 + [s I – A]-1 B U (s)

  5. With Matlab : a=[0,1 ; -120,-3] ; eig(a) syms s;a=[0,1;-120,-3] ; i1=eye(2);a1=inv(s*i1-a);pretty(a1)

More Related