Question

In: Electrical Engineering

Butterworth filter a)Design a 5th order low pass Butterworth low-pass filter with a cut-off frequency of...

Butterworth filter

a)Design a 5th order low pass Butterworth low-pass filter with a cut-off frequency of 1592 Hz and a dc gain of 3dB. Find and present the mathematical transfer function of the filter, showing all your steps.

b) Write a Matlab code to plot the magnitude of this function with a linear scale in dB units on the ordinate, and a log scale of frequency on the abscissa.
The plot range should be: ordinate- linear scale from -100dB to +10dB; abscissa- log scale from 1000 rads/sec to 100,000 radians/sec.


Solutions

Expert Solution

Question a

The normalized transfer function of a 5th order Butterworth Low Pass filter with a cut off frequency of 1 rad/sec is given as

Let K denote the dc gain. So


We need a dc gain of 3 dB. So the gain should be

The dc gain is the gain of the transfer function when s = 0

So

The cut off frequency required is

So the cut off frequency in rad/sec will be

Now we can make the cut off frequency as by replacing s in the normalized transfer function with

Question b

MATLAB Script

clear;
close all;
clc;
format long

b = [1.41254e20]; % Numerator Coefficients
a = [1, 3.2369e4, 5.23897e8, 5.24045e12, 3.2397e16, 1e20]; % Denominator Coefficients

w = [1000:100000];

H = freqs(b, a, w);

H_dB = 20*log10(abs(H));

semilogx(w, H_dB, 'linewidth', 2);
grid;
ylim([-100, 10]);
xlabel('Frequency, \omega (rad/sec)');
ylabel('Magnitude in dB');
title('Magnitude Response');

After executing we get

We can see that the pass band gain is 2.9969 dB which is approximately equal to 3 dB .The gain at 10000 rad/sec is equal to 0 dB. So the cut off frequency is 10000 rad/sec. This frequency is equal to 1592 Hz as follows.



Related Solutions

Design and build an active second order low pass filter with cut off frequency of 8kHz...
Design and build an active second order low pass filter with cut off frequency of 8kHz using opamp -Show circuit diagram -Show input voltage and frequency - Show all calculations and placement of indicator to measure output frequency to measure cut off
Design a 3-pole Butterworth low-pass filter with a DC gain of 5 and a -3db frequency...
Design a 3-pole Butterworth low-pass filter with a DC gain of 5 and a -3db frequency of 550Hz. design should use capacitors of the following values: 0.01uf, 0.022uf, 0.033uf, 0.047uf, 0.056uf, 0.1uf, 0.22uf, and 1uf.
Q1: Design a 9th order low-pass filter with cut-off ?? /2 using the Hanning window. a)...
Q1: Design a 9th order low-pass filter with cut-off ?? /2 using the Hanning window. a) Plot its frequency response. b) Express the Input/ Output relation. c) let ??[??]{ 0    ??or ??=0,1,2…..,10 {1 ??or ??=11,12,…..30 Calculate ??=????. Plot and comment on the shape of y. Q2: Design a 9th order high-pass filter with cut-off ??/ 4 using the Hanning window. a) Plot the frequency response. b) Express the Input/ Output relation. c) let ??[??]={ 0    ??or ??=0,1,2…..,10 {1...
Design a 9th order low-pass filter with cut-off ??/ 2 using the Hanning window. a) Plot...
Design a 9th order low-pass filter with cut-off ??/ 2 using the Hanning window. a) Plot its frequency response. b) Express the Input/ Output relation. c) let ??[??] = { 0           ?????? ?? = 0,1,2…..,10 1    , ?????? ?? = 11,12,…..30        Calculate ?? = ?? ? ?. Plot and comment on the shape of y.
Design a second order (two pole) high-pass filter for the following specifications Cut-off frequency, fo or...
Design a second order (two pole) high-pass filter for the following specifications Cut-off frequency, fo or fH = 2kHz   Maximally Flat, i.e. Q=1/√2 > Justify any assumption you make. > Draw circuit with all designed values. > Draw the frequency response (Gain magnitude only)
Create a 2nd order Butterworth 150 Hz frequency low pass filter. Please provide transfer function and...
Create a 2nd order Butterworth 150 Hz frequency low pass filter. Please provide transfer function and frequency response. Thank you
1) A student wants to design a low-pass Butterworth filter for a data acquisition system that...
1) A student wants to design a low-pass Butterworth filter for a data acquisition system that will not attenuate 2 Hz signal more than 4 dB but will have more than 80 dB of attenuation at 50 Hz signal. (a) Determine the minimum number of filter stages required and the cutoff frequency (in Hz) that can be used (For the cutoff frequency, choose an integer number in the range) (b) Assuming the source and load resistances are 50 Ω, draw...
Using a general Op-Amp 741, design a first order and a second-order low-pass filter with cut...
Using a general Op-Amp 741, design a first order and a second-order low-pass filter with cut off frequent of 5kHz. Subject sinusoidal inputs with frequency from 1kHz to 10kHz and plot the frequency responses for both the filters and provide your opinion.
I need to obtain an approximate implementation of a Butterworth low pass first order filter using...
I need to obtain an approximate implementation of a Butterworth low pass first order filter using P-spice. It suppose to have a cutoff frequency of 1000Hz and the attenuation cutoff frequencies fixed at 3db.
MATLAB. Design your own low-cut shelving filter which can cut the low frequency of given music...
MATLAB. Design your own low-cut shelving filter which can cut the low frequency of given music signal. Include magnitude and phase plot of your filter.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT