You are on page 1of 1

close all

clear all
clc
w = logspace(log10(0.001),log10(100000),1000);
s = j*w;
Vm = 4.5;
R = 1;
R2 = 0.8;
R3 = 1.2;
L = 1;
C = 100;
Is = Vm./ sqrt(R*R + (w*L-1./(w*C)).^2);
Is2 = Vm./ sqrt(R2*R2 + (w*L-1./(w*C)).^2);
Is3 = Vm./ sqrt(R3*R3 + (w*L-1./(w*C)).^2);
wo = 1/sqrt(L*C)
QualityFactor3 = wo*L/R3
QualityFactor33 = 1/(wo*C*R3)
Bandwidth3 = R3/L
Bandwidth33 = wo/QualityFactor3
Bandwidth333 = wo/QualityFactor33
figure()
semilogx(w,abs(Is3), 'LineWidth',5)
xlabel('Frequency (Omega,w)','FontSize',20)

You might also like