You are on page 1of 4

PROBLEM STATEMENT:

Question : 2:-
(a) An LC circuit shows a natural oscillations of 5 radian/sec when excited by
DC source. If resistance is included in the system, what will be its value if the
oscillations is reduced by 20%?
(Given: L=0.1H)

(b)What will be the value of the resistance in order to die out these oscillations?

AIM:

To find the step input response characteristics of the LC circuit and


view the effect of resistors on the oscillations of the system.

MATLAB CODE:

Answer to 2(a):

clear
sys=tf([25],[1 6 0])
close=feedback(sys,1)
step(close)
clc
SIMULATION DIAGRAM:
Step Response
1.2

System: close
System: close Settling time (seconds): 1.19 System: close
Peak amplitude: 1.09 Final value: 1
1
System: close Overshoot (%): 9.48
Rise time (seconds): 0.371 At time (seconds): 0.783

0.8
Amplitude

0.6

0.4

0.2

0
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6
Time (seconds)

Answer to 2(b)
clear
sys=tf([25],[1 10 0])
close=feedback(sys,1)
step(close)
clc
SIMULATION DIAGRAM:
Step Response
1
System: close2
System: close2
Final value: 1
Settling time (seconds): 1.17
0.9

0.8

0.7

0.6
Amplitude

0.5

0.4

0.3

0.2

0.1

0
0 0.5 1 1.5 2 2.5
Time (seconds)

CALCULATIONS:
INFERENCE:

From the simulation plot of the given second order system (in the form of an L-C
circuit), it can be inferred that the resistance in the circuit acts as a natural
damper for the oscillations in the output response of the system.

In case of the second simulation plot, it can be observed that the oscillations die-
out, and there are no overshoots and undershoots in the response, indicating
that with the introduction of a resistor with higher value of resistance in an L-C
circuit, the oscillations can not just be minimised, but can be completely
eliminated from the system, without affecting its order.

You might also like