Maximal length sequences (MLS or m-sequences) are useful for system identification and digital communication. For example if a MLS is used to excite the input to a linear time-invariant (LTI) system, the system's impulse response can be determined from the cross correlation of the input and output. The impulse response can be useful in its own right or can be windowed to obtain a quasi-anechoic frequency response.
This code is written for an AVR ATMEGA8, which is an easy-to-use, low-cost microcontroller, but should work with others. It outputs the MLS on pin 18 (PB4). A clock signal is output on pin 19 (PB5), transitioning high on each value. Pin 17 (PB3) is a synchronizing signal, going high for one sample at the start of each loop of the sequence.
The MLS is generated by a 16-bit linear feedback shift register. The "feedback" variable can be changed to other values to generate other sequences. See http://www.ece.cmu.edu/~koopman/lfsr/index.html for other values.
The code is written for gcc with -O3 optimization and the loop runs in a minimum 19 clock cycles if the delay function is removed. The "NOP" (No OPeration) lines must be tuned if you use a different compiler, to ensure that each branch of each "if" statement takes the same number of cycles.
"N_delay" can be used to change the loop's speed. It is currently set for a loop of 73 cycles or approx 219 kHz for a 16 MHz clock.
Download from here. You have to sign up (free), but if you're interested in AVR microcontrollers you should be a member anyway.
Thursday, December 11, 2008
Sunday, November 23, 2008
Acoustic Tomography


One of the projects that I'm currently working on is a method of measuring temperature and velocity fields using sound, called acoustic tomography. This method relies on the two properties of sound: it's speed is temperature dependent, and the sonic speed is relative to the motion of the fluid (in our case, air). The principle is similar to that used for sonic anemometers, the time taken for a sound to cross a distance is measured in two directions and the mean wind speed and temperature can be determined. If we set up a large number of speakers and microphones around a measurement area, it is possible to reconstruct the temperature and/or velocity fields within the area. This can be used to generate an image or video of the temperature and wind distribution.
This has been done before, however we are looking at much smaller scales in order to measure the flow in street canyons.
For more information, see my paper at the New Zealand Acoustic Society conference. Example code is also available from my section of the Matlab File Exchange.
The image above shows the temperature (colours) and wind velocity (arrows) field for votex shedding behind a cylinder. The top image shows the simulated flow, and the bottom one shows the reconstruction. The video below shows multiple frames of similar data. Unfortunately the resolution is low, if you would like to see the full video, please contact me.
Labels:
acoustic tomography,
flow,
temperature,
tomography,
velocity,
wind
Thursday, November 20, 2008
New Slide Background

.jpg)
In preparation for next week's presentation, I got Amy Templeman to design some new Powerpoint slide backgrounds. I really like them, so I thought I'd share. The top one is for Nutaksas; the other is for the University of Auckland.
Labels:
amytempleman,
auckland,
powerpoint,
slide
Wednesday, November 19, 2008
Upcoming Conferences

Next week (Nov 24-28), Travis will be speaking at two conferences. He will be presenting some recent developments in acoustic tomography at ENZCON 2008, "New Zealand’s leading national conference in electronics", as well as the New Zealand Acoustic Society Conference 2008. Acoustic tomography is a non-invasive method of measuring temperature and flow fields by measuring the time taken for sound to cross an area or volume.
Colleagues from the University of Auckland will also be presenting at both conferences.
Watch this space for details.
Tuesday, November 11, 2008
PhD Thesis Available

My PhD Thesis, "Online Learning of a Neural Fuel Control System for Gaseous Fueled SI Engines," is now available at lulu.com. This is a beautifully bound 153-page hardcover version of the dissertation including all the papers and a listing of the computer code used. If the price is too expensive for you, please feel free to email me for a free electronic copy. I'm not posting direct links for the first couple years so I can get some feedback as to who is interested in the work.
The cover was designed by Amy Templeman.
Wednesday, October 22, 2008
Internoise 2008
Travis will be presenting two papers at the Internoise 2008 conference next week. The papers are entitled "Experimental Characterization of Sound Propagation in a Dense New Zealand Forest" and "Long Range Identification of Wildlife Using Phased Arrays of Microphones: A Feasibility Study".
The first is a study which measures the sound attenuation of the very dense forests on New Zealand; that is, how quickly a sound decreases in sound pressure level over distance. We found that sound is attenuated more in the native forests of the Hunua Ranges than in any forest in the literature, at approximately 0.5 dB/m.
The second paper investigates the feasibility of locating birds by their calls, with the particular application of finding the location of kokako in the Hunua Ranges. Due to the high attenuation of sound through the forest, we investigated a scheme which would place arrays of microphones on towers above the canopy. This was compared to a more traditional method of installing a grid of individual microphones near the forest floor. This work used the forest reverb model seen earlier on this blog.
Details to follow.
The first is a study which measures the sound attenuation of the very dense forests on New Zealand; that is, how quickly a sound decreases in sound pressure level over distance. We found that sound is attenuated more in the native forests of the Hunua Ranges than in any forest in the literature, at approximately 0.5 dB/m.
The second paper investigates the feasibility of locating birds by their calls, with the particular application of finding the location of kokako in the Hunua Ranges. Due to the high attenuation of sound through the forest, we investigated a scheme which would place arrays of microphones on towers above the canopy. This was compared to a more traditional method of installing a grid of individual microphones near the forest floor. This work used the forest reverb model seen earlier on this blog.
Details to follow.
Saturday, September 20, 2008
Thesis Defense Update
I am happy to announce that, as of Wednesday, I am now officially Dr. Travis Wiens. My thesis defense went well and had a lot of good questions. My dissertation, entitled "ONLINE LEARNING OF A NEURAL FUEL CONTROL SYSTEM FOR GASEOUS FUELED SI ENGINES" will be available shortly. If you'd like a copy, please feel free to contact me.
I'd also like to announce that Nutaksas will now be adding minor surgery to our list of services available.
I'd also like to announce that Nutaksas will now be adding minor surgery to our list of services available.
Thursday, September 11, 2008
University of Reading Seminar
Travis recently presented a seminar at the Department of Meteorology at the University of Reading. The topic was the introduction of the acoustic tomography system currently in development at the University of Auckland. The slide show is available here.
Bath/ASME Symposium on Fluid Power and Motion Control

Travis recently presented the Recurrent Generalized Neural Network with training via the Complex Method at the Bath Conference. Details are available in a previous post. The slides may be found here.
Friday, August 15, 2008

One of the many uses of artificial neural networks is for nonlinear black-box dynamic modeling. This is the process of predicting the response of a dynamic system to its inputs. A number of researchers have attempted this using gradient methods of selecting the neural network parameters, to varying levels of success. However, most will tell you that the most difficult (and accuracy effecting) process is approximating the derivatives. For example, Backpropagation Through Time uses an algebraic "unrolling" of the IIR filter's derivative into its approximate FIR form, although the algebra quickly gets out of hand for systems with long impulse responses.
An easier (and arguably better) method is to use a non-derivative optimization method. My favorite is the Complex Method (matlab code), which is a simpler method of the Nelder-Mead Simplex Method. This method requires the ability to calculate a "fitness" for each set of parameters (network weights), which will be maximized. In the case of dynamic system modelling, we want to minimize the error between the neural network estimate of the system response to a given input and the real system's measured response, so we use the negative error. The fitness of a large number of paremeter sets are calculated. The worst is removed from the set, and a new set of parameters is generated, based on the fitness of the previous points. This process is repeated for a number of generations until a desired accuracy is reached.
We (myself and University of Saskatchewan colleagues Rich Burton, Doug Bitner and Greg Schoenau) have put together a paper showing how this works, to be presented at the Bath Symposium on Power Transmission and Motion Control. This paper shows the performance of the complex method when applied to the modelling of real data from a load-sensing hydraulic pump. We found the complex method to be more accurate and much faster than a previous method used on the same data.
You can get a preprint of the paper here, and the Matlab code here. As always, comments are appreciated.
Subscribe to:
Posts (Atom)