Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to calculate frequency of a give wave and time

I have data for Velocity vs time. The time steps are not uniform, but the Velocity data is a wave. How do I calculate the principal frequency of the velocity using FFT of Python? Most of the examples I am seeing online are for uniform time stepping.

My data is like

7.56683038E+02  2.12072850E-01 
7.56703750E+02  2.13280844E-01
7.56724461E+02  2.14506402E-01
7.56745172E+02  2.15748934E-01
7.56765884E+02  2.17007907E-01
7.56786595E+02  2.18282753E-01

10000 lines like that.

Seeing some online responses, I wrote a code like the following, but it is not working:

#!/usr/bin/env python

import numpy as np
import scipy as sy
import scipy.fftpack as syfp
import pylab as pyl

# Calculate the number of data points
length = 0
for line in open("data.dat"):
    length = length + 1

# Read in data from file here
t = np.zeros(shape=(length,1))
u = np.zeros(shape=(length,1))


length = 0
for line in open("data.dat"):
    columns = line.split(' ')
    t[length] = float(columns[0])
    u[length] = float(columns[1])
    length = length + 1

# Do FFT analysis of array
FFT = sy.fft(u)

# Getting the related frequencies
freqs = syfp.fftfreq(len(u))

# Create subplot windows and show plot
pyl.subplot(211)
pyl.plot(t, u)
pyl.xlabel('Time')
pyl.ylabel('Amplitude')
pyl.subplot(212)
pyl.plot(freqs, sy.log10(FFT), 'x')
pyl.show()

---------------------- edit ------------------------

with this code I am getting an output like the following figure. I am not sure what this figure shows. I was expecting just to see one peak in the FFT diagram Output by the python program

---------------------- edit ------------------------

My results with the mock data with the sin functions suggested in the comments below are here:

results of the mock data

like image 540
Pradeep Kumar Jha Avatar asked Sep 29 '14 17:09

Pradeep Kumar Jha


1 Answers

From what I can see, your code is basically fine, but missing a few details. I think your issues are mostly about interpretation. Because of this, the mock data is the best to look at now, and here's an example with the mock data I suggested in the comments (and I've added comments about the important lines, and ## for changes):

import numpy as np
import scipy as sy
import scipy.fftpack as syfp
import pylab as pyl

dt = 0.02071 
t = dt*np.arange(100000)             ## time at the same spacing of your data
u = np.sin(2*np.pi*t*.01)            ## Note freq=0.01 Hz

# Do FFT analysis of array
FFT = sy.fft(u)

# Getting the related frequencies
freqs = syfp.fftfreq(len(u), dt)     ## added dt, so x-axis is in meaningful units

# Create subplot windows and show plot
pyl.subplot(211)
pyl.plot(t, u)
pyl.xlabel('Time')
pyl.ylabel('Amplitude')
pyl.subplot(212)
pyl.plot(freqs, sy.log10(abs(FFT)), '.')  ## it's important to have the abs here
pyl.xlim(-.05, .05)                       ## zoom into see what's going on at the peak
pyl.show()

enter image description here

As you can see, there are two peaks, at + and - the input frequency (.01 Hz), as expected.

Edit:
Puzzled why this approach didn't work for the OP's data, I took a look at that too. The problem is that the sample times aren't evenly spaced. Here's a histogram of the times (code below).

enter image description here

So the time between samples is roughly evenly split between a short time and a long time. I took a quick look for a pattern here and nothing was obvious.

To do an FFT, one needs evenly spaced time samples, so I interpolated to get the following:

enter image description here

which is reasonable (a DC offset, a primary peak and a small harmonic). Here's the code:

data = np.loadtxt("data.dat", usecols=(0,1))
t = data[:,0]
u = data[:,1]

tdiff = t[1:]-t[:-1]
plt.hist(tdiff)

new_times = np.linspace(min(t), max(t), len(t))
new_data = np.interp(new_times, t, u)

t, u = new_times, new_data

FFT = sy.fft(u)
freqs = syfp.fftfreq(len(u), dt)

# then plot as above
like image 158
tom10 Avatar answered Sep 19 '22 05:09

tom10