You are on page 1of 9

Student: Beril Günay 2232015 27/03/2018

Assistant: Baver Özceylan Tuesday morning

EXPERIMENT 5

FREQUENCY RESPONSE

SIMULATION REPORT

Q1) a) wc=1/RC=33*10^-5 rad/sec

Figure 1: Schematic of a series RC circuit

Figure 2: Magnitude response of series resistor with capacitor


b) i) wc=R/L=27k rad/sec

Figure 3: Schematic of a circuit functioning as a series RL circuit

Figure 4: Magnitude response of series resistor with inductor

ii) wc1=2.525 rad/sec wc2=0.0299 rad/sec wo=1/LC= 1n rad/sec

Figure 5: An RLC circuit schematic with two resistors


Figure 6: Magnitude responses of resistors

c) 4a) i)

Figure 7: An RLC circuit with R=3.3k

Figure 8: Magnitude response of 3.3k resistor


ii)

Figure 9: An RLC circuit with R=3.3k with square input

Figure 10: Vin(t) and V1(t)

c) 4b) i)

Figure 11: An RLC circuit with R=10k


Figure 12: Magnitude response of 10k resistor

ii)

Figure 13: An RLC circuit with R=10k with square input

Figure 14: Vin(t) and V1(t)


MATLAB

a)

Figure 15
R=33000;
C=0.01*10^-6;
num=[1,0];
den=[1,1/(R*C)];
H=tf(num,den);
bode(H), grid

b)

Figure 16
R=2700;
L=0.1;
num=[R/L];
den=[1,R/L];
H=tf(num,den);
bode(H), grid

c)

Figure 17

R1=2700;
R2=33000;
L=0.1;
C=0.01*10^-6;
A=(R1*R2)/(L*(R1+R2));
B=(L/R1+R2*C);
K=(R1)/(L*C*(R1+R2));
num=[A,0];
den=[1,B*K,K];
H=tf(num,den);
bode(H), grid
d) 4a)

Figure 18

R=3300;
L=0.1;
C=0.1*10^-6;
num=[1/(R*C),0];
den=[1,1/(R*C),1/(L*C)];
H=tf(num,den);
bode(H), grid
d) 4b)

Figure 19

R=10000;
L=0.1;
C=0.1*10^-6;
num=[1/(R*C),0];
den=[1,1/(R*C),1/(L*C)];
H=tf(num,den);
bode(H), grid

You might also like