Low Pass Filters: 1. Maximally Flat Low Pass Filter (N 5 - FC 2Ghz)
Low Pass Filters: 1. Maximally Flat Low Pass Filter (N 5 - FC 2Ghz)
G1= 0.618
G2= 1.618
G3= 2.000
G4= 1.618
G5= 0.618
freq=2*10.^9
omega= 2*pi*freq
T=table(C1,L2,C3,L4,C5)
In Filter design:-
Capacitance is taken in PF
Inductance is taken in nH
C1 L2 C3 L4 C5
__________ __________ __________ __________ __________
Results
Analysis:-
In case of low pass maximally flat N=5 filter, starting the design with L or C does not make any
observable difference in Filter Response
C1 L2 C3
Result
L1 C2 L3
Results
Before Tuning After Tuning
Analysis:-
In case of low pass maximally flat N=3 filter, starting the design with L or C does not make any
observable difference in Filter Response.
G1= 1.7058
G2= 1.2296
G3= 2.5408
G4= 1.2296
G5= 1.7058
freq=2*10.^9
omega= 2*pi*freq
%Frequency Scaling and Conversion
T=table(C1,L2,C3,L4,C5)
Values:
C1 L2 C3 L4 C5
Results
Sharp attenuation at cutoff
Before Tuning
After Tuning
L1 C2 L3 C4 L5
Results
C1 L2 C3
Results
Before Tuning After Tuning
Calculated Values:-
L1 C2 L3
Matlab Code
G1=1.7058;
G2=1.2296;
G3=2.5408;
G4=1.2296
G5=1.7058
R=50;
bw=0.1
freq=2*10.^9
w= 2*pi*(freq)
C1=(G1)/(w*bw*R)
L1=(bw*R)/(G1*w)
C2=(bw)/(w*G2*R)
L2=(G2*R)/(w*bw)
C3=(G3)/(w*bw*R)
L3=(bw*R)/(G3*w)
C4=(bw)/(w*G4*R)
L4=(G4*R)/(w*bw)
C5=(G5)/(w*bw*R)
C1 L1 C2 L2 C3
2.7149e-11 2.3326e-10 1.2944e-13 4.8924e-08 4.0438e-11
L3 C4 L4 C5 L5
1.566e-10 1.2944e-13 4.8924e-08 2.7149e-11 2.3326e-10
Circuit In ADS
Result
10. ChebyShev Band Pass Filter N=5 (Starting with an Inductor)
L1 C1 L2 C2 L3 C3
L4 C4 L5 C5
Analysis: For N=5, Chebyshev 0.5 db , has a much better response when
capacitor is taken as first element during circuit design and same is depicted
through S(2,1) values.
11. ChebyShev Band Pass Filter N=3 (Starting with a Capacitor)
G1=1.5963;
G2=1.0967;
G3=1.5963;
RL=1;
R=50;
bw=0.1
freq=2*10.^9
w= 2*pi*(freq)
C1=(G1)/(w*bw*R)
L1=(bw*R)/(G1*w)
C2=(bw)/(w*G2*R)
L2=(G2*R)/(w*bw)
C3=(G3)/(w*bw*R)
L3=(bw*R)/(G3*w)
Values
C1 L1 C2 L2 C3 L3
Results
Ro=50;
bw=0.1
freq=2*10.^9
w= 2*pi*freq
L1=(G1*Ro)/(w*bw)
C1=bw/(G1*w*Ro)
L2=(bw*Ro)/(w*G2)
C2=G2/(w*bw*Ro)
L3=(G3*Ro)/(w*bw)
C3=bw/(w*G3*Ro)
T=table(L1,C1,L2,C2,L3,C3)
L1 C1 L2 C2 L3 C3
Results
Passes signal max at 2 G Hz , however, pass band response is not good as all signal in pass band is
not transmitted.
Analysis: Pass band response of Chebyshev Filter for N=3 is much better incase we take first
element as capacitor than when we take inductor as first element which is evident from S(1,1) and
S(2,1)
Conclusion
In this assignment, we have studied effects of considering first value of design
as inductor / capacitor on filter response. It was found that in case of
Butterworth and Chebyshev(N=3 and N=5) there is no observable effect of
selecting either inductor or capacitor on filter response, whereas, Pass band
response of Chebyshev Filter for N=3 and N=5 is much better incase we take
first element as capacitor than when we take inductor as first element which is
evident from S(1,1) and S(2,1).