Noise removal from the samples is a core requirement for the DSP processing ....
Typical Averaging algorithms.
Box Car.
Smoothing algorithms involving unweighted averages can be
performed in various ways. One method, known as boxcar averaging, involves collecting a
specified number of points and averaging them to produce a single point.
Moving Average. Another method
involves a "moving" average, where a specified number of successive points (n) are collected
and averaged, then the next measurement is averaged with the previous n-1 measurements, and
this process continues through the data set. Uses alot or RAM if more than 1 sample point is to be averaged.
Moving Average Box. ( my name for it ... cant find a citation )
The Box Car and Moving average both either throw away information and/or utilise excessive amounts of ram and cpu cycles. In this case the problem is to extract the averaged waveform from noise and without distortion of the waveform features at high speed.
Funnily enough I think this algorithm had its origins in financial software for extracting market trends from huge amounts of raw stock data in real time but I cannot lay my hand on the reference ....
The algorithm goes thus ....
CONDITIONS / ASSUMPTIONS
A periodic waveform is sampled at a specific time for S samples and the requirement is to average the wave form for N complete sets of S samples ( ie waveforms) .
The sampling MUST commence at exactly the same time ( ie synchronous) with the waveform
N should be a binary number 4,8,16,32,64,128,256,512,1024 etc etc for optimal code performance. The higher the number the more noise will be removed from the waveform but it will take longer to for each cycle to complete.
This will require N locations of ram for storage noting that these locations will also be used for summing ( dependant on bit size of ADC multiplied by averaging N bit size ).
The initial value of the ram locations (eg after CPU reset / initialisation ) is arbitrary ... though for this case we will set it to 0.
EXECUTION
1. Sample each point along the waveform from 1 to S and ADD the ADC value to corresponding RAM location ( 0 to S-1). ie keep a running sum in each RAM location.
2. Increment the Average count and repeat step 1 till N cycles have been done.
3. The MSB ( most significant bits + oversampling gain bits ) of each RAM location now contain the average value ... grab or process the results of the averaging NOW. ( ie you will do this every N cycles of waveform conversions)
4. Now REINITIALISE each ram location by dividing the current value by 2 ...( most efficient to shift the value 1 bit right.)
5.Set the average count N to 0 and GOTO step 1.
END.....
For example if I use a long integer ( 4 bytes ) in DSPIC to store 512 samples ( ie I am digitising the RX waveform in a PI circuit for 512 us ) then I need 2048 bytes of RAM + a couple of counter variables for index pointer and cycle counter.
Utilising this algorithm I dont have to remember the discrete values as for example with the traditional moving average I have to pop out the oldest value and insert the new for averaging and I would have to do this for each point in the waveform ( I would need N x S x no_of_bytes_to_store or 1024 x 512 x 2 bytes !!!)
The dspic code for the diff front end averages 64 x 64bit discrete samples 5300 times a second with an averaging cycle of 1024 for each of the 64 bit sample points on the waveform. I have run it out to 512 samples but this is stretching the friendship if the pulse repetition rate is to remain high ( > 4 Khz ).
On an FPGA with 24 bit ADCs the results using this algorithm are spectacular !
moodz.
Typical Averaging algorithms.
Box Car.
Smoothing algorithms involving unweighted averages can be
performed in various ways. One method, known as boxcar averaging, involves collecting a
specified number of points and averaging them to produce a single point.
Moving Average. Another method
involves a "moving" average, where a specified number of successive points (n) are collected
and averaged, then the next measurement is averaged with the previous n-1 measurements, and
this process continues through the data set. Uses alot or RAM if more than 1 sample point is to be averaged.
Moving Average Box. ( my name for it ... cant find a citation )
The Box Car and Moving average both either throw away information and/or utilise excessive amounts of ram and cpu cycles. In this case the problem is to extract the averaged waveform from noise and without distortion of the waveform features at high speed.
Funnily enough I think this algorithm had its origins in financial software for extracting market trends from huge amounts of raw stock data in real time but I cannot lay my hand on the reference ....
The algorithm goes thus ....
CONDITIONS / ASSUMPTIONS
A periodic waveform is sampled at a specific time for S samples and the requirement is to average the wave form for N complete sets of S samples ( ie waveforms) .
The sampling MUST commence at exactly the same time ( ie synchronous) with the waveform
N should be a binary number 4,8,16,32,64,128,256,512,1024 etc etc for optimal code performance. The higher the number the more noise will be removed from the waveform but it will take longer to for each cycle to complete.
This will require N locations of ram for storage noting that these locations will also be used for summing ( dependant on bit size of ADC multiplied by averaging N bit size ).
The initial value of the ram locations (eg after CPU reset / initialisation ) is arbitrary ... though for this case we will set it to 0.
EXECUTION
1. Sample each point along the waveform from 1 to S and ADD the ADC value to corresponding RAM location ( 0 to S-1). ie keep a running sum in each RAM location.
2. Increment the Average count and repeat step 1 till N cycles have been done.
3. The MSB ( most significant bits + oversampling gain bits ) of each RAM location now contain the average value ... grab or process the results of the averaging NOW. ( ie you will do this every N cycles of waveform conversions)
4. Now REINITIALISE each ram location by dividing the current value by 2 ...( most efficient to shift the value 1 bit right.)
5.Set the average count N to 0 and GOTO step 1.
END.....
For example if I use a long integer ( 4 bytes ) in DSPIC to store 512 samples ( ie I am digitising the RX waveform in a PI circuit for 512 us ) then I need 2048 bytes of RAM + a couple of counter variables for index pointer and cycle counter.
Utilising this algorithm I dont have to remember the discrete values as for example with the traditional moving average I have to pop out the oldest value and insert the new for averaging and I would have to do this for each point in the waveform ( I would need N x S x no_of_bytes_to_store or 1024 x 512 x 2 bytes !!!)
The dspic code for the diff front end averages 64 x 64bit discrete samples 5300 times a second with an averaging cycle of 1024 for each of the 64 bit sample points on the waveform. I have run it out to 512 samples but this is stretching the friendship if the pulse repetition rate is to remain high ( > 4 Khz ).
On an FPGA with 24 bit ADCs the results using this algorithm are spectacular !
moodz.
Comment