LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Obtaining frequency amplitude graph by fft in LabView from time-amplitude data

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?

Download All
0 Kudos
Message 1 of 2
(2,843 Views)

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

0 Kudos
Message 2 of 2
(2,814 Views)