CT-LTI System Analysis: Approach #I
CT-LTI System Analysis: Approach #I
Approach #I Steps:
(i) Derive the I/O DE
(ii) Solve the ODE using standard technique
j 1
ZSR
ZIR
The technique discussed above is illustrated using
R= 3 W, L= 1 H, C=0.5 F and vs(t)=x(t)=10e-3tu(t).
The generalized ODE can be written in the operator notation as
( D 2 3D 2) y 2 x
The characteristic equation is ( 2 3 2) 0
The characteristic roots are 1 and -2
Natural response/
Homogeneous solution yn (t ) C1e 1t C2 e 2 t
of the ODE is
Forced response/Particular solution of the ODE
y (t ) C1e t C2 e 2 t
ICs : vc (0 ) vc (0 ) 5V y (0)
dvc dy
i (0 ) i (0 ) C t 0
0 t 0
0
dt dt
y (0) C1 C2 5
dy
t 0
C1 2C2 0
dt
Solving : C1 10, C2 5
yZSR (t ) (10e 5e )u (t )
t 2 t
( 2 a1 a0 ) 0
a1 1
1 / 2 (a12 4a02 ( 2 n2
2 2
a
Where is the damping factor (neper/s) and
2
n = a0 is the undamped natural frequency(rad/s).
The ratio is called the damping ratio of the system.
n
Using these notations, the characteristics equation of SOS
can be written as
2 2n n2 0
Case I: Overdamped response(when >n )
1 and 1 are real and negative. Natural response
y n (t ) A1e t A2 e t
1 2
Case I: Critically damped response(when nI )
1 and 1 are real, equal and negative. Natural response
y n (t ) ( A1 A2t )e t
Case III: underdamped response(when n )
1 and 1 are complex conjugate with negative real part.
1 /2 =- j n2 2 =- jd
Where d = n2 2 is the damped natural frequency of the SOS
Natural response
y n (t ) A1e(- j ) t A2 e(- j ) t e t ( B1 cos d t B2 sin d t )
d d
Case IV: undamped response(when 0)
1 and 1 are complex conjugate with negative real part.
1 /2 = j n2 2
Natural response
y n (t ) A1e(j ) t A2 e( j ) t ( B1 cos d t B2 sin d t )
d d
Symbolic Solution of ODE using Matlab
syms y(t)
Dy=diff(y)
vc=dsolve(diff(y,2)+3*diff(y)+2*y==20*exp(-3*t),y(0)==5,Dy(0)==0)
i=0.5*diff(vc)
i
Undamped case
VC
i
Finding Initial Values