Flutter analysis: filtering data
Flutter analysis: filtering data
(OP)
Hi
I am measuring the bending strain via strain gauges for flutter tests but need a method to filter the data. As the gauges are sensitive the data file contains a lot of 'noise' (its not noise technically, the voltage just jumps up and down by small amounts). How can I filter this data to get the trend and a smooth curve? As I eventually need to use the amplitudes to work out the damping ratio. Thanks in advance.
I am measuring the bending strain via strain gauges for flutter tests but need a method to filter the data. As the gauges are sensitive the data file contains a lot of 'noise' (its not noise technically, the voltage just jumps up and down by small amounts). How can I filter this data to get the trend and a smooth curve? As I eventually need to use the amplitudes to work out the damping ratio. Thanks in advance.





RE: Flutter analysis: filtering data
Hunh? Isn't that a definition of noise, random unexplained jumps up and down in your data? Presumably, if you could explain the source of the jumps, you could write a simple algorithm to calibrate it out of your data. E.g. thermal shifts, or changes in ground states due to operation of other pieces of equipment, etc.
Have you done a FFT or DFT on the data? Is the bandwidth of the noise well below or above the frequencies of interest for you?
RE: Flutter analysis: filtering data
Anyway, assuming it is some sort of high excursion followed by a sinusoidal decay curve over several cycles, just low pass filter it to say 10 times the decay frequency.
If you are suspicious of this, use the unfiltered data to estimate the damping ratio, then LP filter it to 25% of the sampling frequency, estimate the damping ratio, and then 12%, then 6% and so on right down to the frequency of interest. Plot that trend to see how much filtering is acceptable.
Estimating damping ratios is a bit of a black art anyway, non linearities render any attempt at precision dubious, on real structures.
Cheers
Greg Locock
SIG:Please see FAQ731-376: Eng-Tips.com Forum Policies for tips on how to make the best use of Eng-Tips.
RE: Flutter analysis: filtering data
Straight Nyquist theory said that you only needed to over sample by 2x. Still 5x was the rule. I was told it was because we always reviewed the data in the time domain, but I never worked with the 30 lb. brains that analyzed the data so I cannot really say.
You have to supress high frequency noise because it will ailias and corrupt your data if it's sampled under 2x freq.
RE: Flutter analysis: filtering data
Fe
RE: Flutter analysis: filtering data
I can't give you a reason or many details. I was a civil service engineer working on the Boeing/Navy integrated test team for the F18 E/F. They had a very large catalog of standard sensors and modular instrumentation gear that was compatible with the onboard data aquisition system built into the test airplanes. All I remeber was that 6 pole LPF was the standard. I couldn't tell you what kind.
I had been an A&P since the 80s, this was my first EE job. I was told that presample filtering was essential.
RE: Flutter analysis: filtering data
Fe
RE: Flutter analysis: filtering data