I have a problem to do a vibration analysis on scilab. to explain, I have to make a vibration analysis of an engine in 2d and then in 3D (see pictures)
My basic file consists of a CVS with two columns, with time and acceleration. I used the fft function for the 2D graph, but for the 3D I don't know how to do it. The code for the 2D graph:
sample_rate=1/(Time(2)-Time(1));
N=max(size(Time));
freqfftDatas =[sample_rate*(0:(N/2))/N]';
FFT=fft(Datas(1:N));
n=max(size(freqfftDatas));
fftDatas =abs(FFT(1:n))*2/N;
plot(freqfftDatas, fftDatas);
I've read about waterfall, but I don't know how to relate it to my case.
If there are people familiar with scilab who could help me, I thank you!
For this kind of representation you have to use
surf
, here is an example with the sliding window FFT of a chirp like signal: