How to plot frequency vs gain for a filter?

AI Thread Summary
To plot frequency versus gain for a filter, understanding the transfer function H(z) is essential, where z represents the frequency variable in digital filters. The user seeks to create a program that allows for interactive manipulation of parameters like center frequency, gain, and bandwidth. Complex arithmetic is typically used for plotting frequency responses, and while tools like Matlab simplify this process, programming in C# or Python is also feasible. Resources such as Bode plot references and existing applications can provide guidance on implementing the desired functionality. The goal is to enable users to visualize and adjust filter characteristics dynamically.
trip6
Messages
6
Reaction score
0
Hello,

I am trying to understand how this graph http://en.wikipedia.org/wiki/File:Bandwidth_2.svg
gets plotted. My goal is to write a small program that takes the center frequency/bandwidth and a (cut/boost) gain values and plot the curve.

I initially assumed, all I needed to find was an equation of gain in terms of frequency to plot it. I have been searching for a few weeks now and I keep running into transfer functions and many different types of them. But I don't understand how this translates into a gain(yaxis) vs freq(xaxis) plot.

For example, I found the following equation at http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt

b0 + b1*z^-1 + b2*z^-2
H(z) = ------------------------ (Eq 1)
a0 + a1*z^-1 + a2*z^-2


the a0,a1,a2,b0,b1,b2 are calculated in terms of frequency/gain/bandwidth. On plotting H(z) I get something that looks like a bandpass filter curve but what does H(z) and z represent?

I don't have an electrical engineering/math background but am really interested in understanding how this bandpass curve gets drawn. Any advice on how to go about this would be greatly appreciated. Thanks!
 
Engineering news on Phys.org
What programming language do you intend to use to write your plotting program?

The function H(z) is simply the transfer function itself. The z is the frequency variable. The symbol z is customarily used for digital filters. For analog filters, it's customary to use the variable s, so your transfer function might be denoted H(s).

Do you understand complex arithmetic? The plotting of frequency responses from given transfer functions is most conveniently done using complex arithmetic.

It is possible to convert typical transfer functions to a form that doesn't involve complex arithmetic, but they then become very much more complicated.
 
Thanks for the response. I have done complex arithmetic in college, but have never found a use for it since. I don't mind dusting out the cobwebs if it makes plotting the curve simpler. I am just not very sure where to start.

As to the language, I would use C# or python. I have seen audio apps where the user interface allows graphical manipulation of the wave by picking a center frequency, setting a db level and the pass band. I would like to do something like that.
 
Have a look at this:

http://jegyzet.sth.sze.hu/ftp/!BSc/Szabalyozastechnika/BodePl.pdf

This reference should help a lot.

Usually one uses an application like Matlab to do these kind of plots. It has built-in functions for the purpose. It certainly can be done in C# or Python, but it won't be as easy.

Here is a program to do Bode plots. I don't know if the author's source code is available, but maybe you can contact him about it.

http://www.bode.cg.yu/

Part of your problem beyond just learning how to do the plots will be how to get the transfer function for your desired filter with explicit parameters for center frequency/bandwidth and (cut/boost) gain values.
 
Last edited by a moderator:
The Electrician said:
Have a look at this:

http://jegyzet.sth.sze.hu/ftp/!BSc/Szabalyozastechnika/BodePl.pdf

Thanks for the pdf. Very useful though its taking a while to fully digest...

Part of your problem beyond just learning how to do the plots will be how to get the transfer function for your desired filter with explicit parameters for center frequency/bandwidth and (cut/boost) gain values.

I don't really have a "desired filter". I really just want to provide an (interactive) visualization, where the user picks a center frequency, chooses to cut or boost gain and then sets a pass band. Should be basically able to manipulate the curve through this interface.
 
Last edited by a moderator:
Hi all I have some confusion about piezoelectrical sensors combination. If i have three acoustic piezoelectrical sensors (with same receive sensitivity in dB ref V/1uPa) placed at specific distance, these sensors receive acoustic signal from a sound source placed at far field distance (Plane Wave) and from broadside. I receive output of these sensors through individual preamplifiers, add them through hardware like summer circuit adder or in software after digitization and in this way got an...
I have recently moved into a new (rather ancient) house and had a few trips of my Residual Current breaker. I dug out my old Socket tester which tell me the three pins are correct. But then the Red warning light tells me my socket(s) fail the loop test. I never had this before but my last house had an overhead supply with no Earth from the company. The tester said "get this checked" and the man said the (high but not ridiculous) earth resistance was acceptable. I stuck a new copper earth...
I am not an electrical engineering student, but a lowly apprentice electrician. I learn both on the job and also take classes for my apprenticeship. I recently wired my first transformer and I understand that the neutral and ground are bonded together in the transformer or in the service. What I don't understand is, if the neutral is a current carrying conductor, which is then bonded to the ground conductor, why does current only flow back to its source and not on the ground path...
Back
Top