<< Chapter < Page Chapter >> Page >
You will implement a fourth-order, elliptical, low-pass infinite impulse-response (IIR) filter as a cascade of two second-order sections.

Implementation

On the DSP, you will implement the elliptic low-pass filter designed using the ellip command from IIR Filters: Filter-Design Exercise in MATLAB . You should not try to implement the notch filter designed in IIR Filtering: Filter-Coefficient Quantization Exercise in MATLAB , because it will not work correctly when implemented using Direct Form II. (Whynot?)

To implement the fourth-order filter, start with a single set of second-order coefficients and implement a singlesecond-order section. Make sure you write and review pseudo-code before you begin programming. Once your single second-order IIR is working properly you canthen proceed to code the entire fourth-order filter.

Large coefficients

You may have noticed that some of the coefficients you have computed for the second-order sections are larger than 1.0in magnitude. For any stable second-order IIR section, the magnitude of the "0" and "2" coefficients( a 0 and a 2 , for example) will always be less than or equal to 1.0. However, the magnitude of the "1" coefficient can beas large as 2.0. To overcome this problem, you will have to divide the a 1 and b 1 coefficients by two prior to saving them for your DSP code. Then, in your implementation, you will have tocompensate somehow for using half the coefficient value.

Repeating code

Rather than write separate code for each second-order section, you are encouraged first to write one section, thenwrite code that cycles through the second-order section code twice using the repeat structure below. Because the IIRcode will have to run inside the block I/O loop and this loop uses the block repeat counter ( BRC ), you must use another looping structure to avoid corrupting the BRC .

You will have to make sure that your code uses different coefficients and states during the second cycle ofthe repeat loop.

stm (num_stages-1),AR1 start_stage ; IIR code goes here banz start_stage,*AR1-

Gain

It may be necessary to add gain to the output of the system. To do this, simply shift the output left (which can be doneusing the ld opcode with its optional shift parameter) before saving the output to memory.

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Dsp laboratory with ti tms320c54x. OpenStax CNX. Jan 22, 2004 Download for free at http://cnx.org/content/col10078/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Dsp laboratory with ti tms320c54x' conversation and receive update notifications?

Ask