08-22-2017 05:19 AM
While doing free vibration analysis of cantilever beam I obtained the time-amplitude data. I need to extract the frequency amplitude graph from the obtained time-amplitude data by fft analysis in LabVIEW.
How to import the time and amplitude data to the vi for the same. I have made a vi with the time data incorporated. It doesnt account for amplitude. How to resolve this problem?
08-22-2017 08:07 AM
Do you know about LabVIEW Waveforms? This is basically a cluster whose main component is an array of numbers representing data sampled at a fixed delta-t (time interval), along with the delta-t and the starting time (t0) of the sample. The FFT routines like using such a data structure, as it contains both the amplitude array and the sampling interval, but they can also work with just the data array, alone.
Just to reiterate, the data array, itself, represents the amplitudes you need. The "frequency" information is simply 1/delta-t, which the routines figure out for themselves if you give them the data as a Waveform, or you can provide the (fixed) frequency, or they will use a default value and you can adjust things after the FFT is finished.
Bob Schor