Fourier transform in MATLAB || FFT of vibration || Vibration with MATLAB L6 || Harmonic Analysis

  Рет қаралды 30,047

ASHISH PUROHIT

ASHISH PUROHIT

3 жыл бұрын

Brief theory of Fourier Transformation and Systematic explanation of its application in vibration Harmonic Analysis. Development of MATLAB code

Пікірлер: 26
@m.kalaivanan1206
@m.kalaivanan1206 3 жыл бұрын
I just liked the video even before watching it. That’s the quality of the content you deliver man. Keep up the good work always 🥳🥳🥳🥳🥳👍👍👍👍👍
@rishabhchaudhary8769
@rishabhchaudhary8769 3 жыл бұрын
Clear explanation of FFT. Thank you sir
@user-el9mv9wp1q
@user-el9mv9wp1q 5 ай бұрын
Thank you so much for this video Sir.
@r.m.c.asanga6298
@r.m.c.asanga6298 3 жыл бұрын
Amazing!!!
@siddharamkotnur4810
@siddharamkotnur4810 2 жыл бұрын
Thank you this thing saved my lots of time
@yadavrohitumashankar1992
@yadavrohitumashankar1992 2 жыл бұрын
very nice explanation!!!!!
@ritusingh-uw5ez
@ritusingh-uw5ez 2 жыл бұрын
Thanks very much
@aymanboudaya2917
@aymanboudaya2917 2 жыл бұрын
thank you sir
@yassirmohd7830
@yassirmohd7830 Жыл бұрын
Thank you for your value lecture,Dr.How can i determine these frequencies in this code 50Hz (pump speed) 350Hz (blade pass frequency ?as you know Fmax=Fs/2 how can i determine it ?
@hendrokhumoro
@hendrokhumoro 8 ай бұрын
thx for sharing, but how if i have a signal from accelerometer and i wanna transform with fft to know freq and amp?
@baghdadiabdellatif1581
@baghdadiabdellatif1581 2 жыл бұрын
Thank you. How can i get amplitude Values of f1 and f2 and f3 and seve theme?
@RahulSharma-oc2qd
@RahulSharma-oc2qd 2 жыл бұрын
Is it necessary that in FFT transformation all the frequencies peak must be integer harmonic or fundamental harmonic? I mean at 9:06, you said 15Hz is first harmonic and other ones are fundamental harmonics. Can “n” in general formula of Fourier transformation be in decimal? Because every time the frequencies wouldn’t be a multiple of the base frequency.
@JosueA_455
@JosueA_455 2 жыл бұрын
When you use the vector V, according to Simple Harmonic Motion, I believe it is the displacement history, right?
@ashishpurohit9138
@ashishpurohit9138 2 жыл бұрын
Can you specify time
@JosueA_455
@JosueA_455 2 жыл бұрын
@@ashishpurohit9138 Dr. Purohit, thank you for your response. You used V = amp*sin(2*pi*f*time), I believe it is the equation for displacement, right? Because the equation for velocity should have also 2*pi*f multiplying the amp.
@cooltrainerxi5766
@cooltrainerxi5766 2 жыл бұрын
%% Fourier transform of vibration signal clc; clear all; %% input signal frequency=10 amp=5 dt=1/ (frequency*20); time=0:dt:2000*dt V=amp*sin(2*pi* frequency*time); %% FFT fs=1/dt; 11= length(V); fft V= fft(v,11)*(2/11); abs V=abs(fft_V); %% FR vector freq=0: (1/time(end) ): fs/2-(1/time(end)) %%plotting plot (ytime,V) ylim([-10 10]) figure plot(freq,abs_V(1:length(freq))) ylim([0 10])
@Owaso
@Owaso 2 жыл бұрын
legands never die
@Owaso
@Owaso 2 жыл бұрын
but there is few mistakes here is correction %% Fourier transform of vibration signal clc; clear all; %% input signal frequency=10 amp=5 dt=1/(frequency*20); time=0:dt:2000*dt ; V=amp*sin(2*pi* frequency*time); %% FFT fs=1/dt; L=length(V); fft_V= fft(V,L)*(2/L); abs_V=abs(fft_V); %% FR vector freq=0: (1/time(end)): fs/2-(1/time(end)) %%plotting plot (time,V) ylim([-10 10]) figure plot(freq,abs_V(1:length(freq))) ylim([0 10])
@TheShaq007
@TheShaq007 Жыл бұрын
%% Fourier transform of vibration signal clc % clear command window clear variables % clear all variables from workspace %% input signal frequency=10; amp=5; dt=1/ (frequency*20); time=0:dt:2000*dt; V=amp*sin(2*pi* frequency*time); %% FFT fs=1/dt; L1 = length(V); fft_V= fft(V,L1)*(2/L1); abs_V=abs(fft_V); %% FR vector freq=0: (1/time(end) ): fs/2-(1/time(end)); %% plotting plot (time,V) ylim([-10 10]) figure plot(freq,abs_V(1:length(freq))) ylim([0 10])
@abdjabarelmaqdoudy1447
@abdjabarelmaqdoudy1447 2 жыл бұрын
brother you said we use FFT to know the frequency of signal but you give it 10
@rsr7102
@rsr7102 Жыл бұрын
How to get data from fft analysis tool in powergui block.
@ashishpurohit9138
@ashishpurohit9138 Жыл бұрын
Powergui of Matlab ??
@rsr7102
@rsr7102 Жыл бұрын
@@ashishpurohit9138 yes
@abuhoraira7637
@abuhoraira7637 3 жыл бұрын
Hello Bro can u help Plz solve a problem and send plz
@evrik78
@evrik78 Жыл бұрын
You repeat over and over again that your sampling rate is 2000 when it is 200...
@Owaso
@Owaso 2 жыл бұрын
%% Fourier transform of vibration signal clc; clear all; %% input signal frequency=10 amp=5 dt=1/(frequency*20); time=0:dt:2000*dt ; V=amp*sin(2*pi* frequency*time); %% FFT fs=1/dt; L=length(V); fft_V= fft(V,L)*(2/L); abs_V=abs(fft_V); %% FR vector freq=0: (1/time(end)): fs/2-(1/time(end)) %%plotting plot (time,V) ylim([-10 10]) figure plot(freq,abs_V(1:length(freq))) ylim([0 10])
Free Vibration of Two DOF system  in MATLAB|| Vibration with MATLAB || State Space Formulation || L7
30:26
Mechanical Engineering by Ashish Purohit
Рет қаралды 12 М.
The Revolutionary Genius Of Joseph Fourier
16:17
Dr. Will Wood
Рет қаралды 105 М.
I’m just a kid 🥹🥰 LeoNata family #shorts
00:12
LeoNata Family
Рет қаралды 19 МЛН
버블티로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 95 МЛН
Did you believe it was real? #tiktok
00:25
Анастасия Тарасова
Рет қаралды 17 МЛН
What is a Discrete Fourier Transform? | Week 14 | MIT 18.S191 Fall 2020 | Grant Sanderson
34:48
Why is the output of the FFT symmetrical?
10:56
Mark Newman
Рет қаралды 12 М.
STM32 Fast Fourier Transform (CMSIS DSP FFT) - Phil's Lab #111
20:12
All Types of Fourier Transforms in PYTHON
30:44
Mr. P Solver
Рет қаралды 52 М.
The Fourier Series and Fourier Transform Demystified
14:48
Up and Atom
Рет қаралды 787 М.
The Fast Fourier Transform (FFT): Most Ingenious Algorithm Ever?
28:23
FFT in excel for spectral analysis
11:33
Mike Holden
Рет қаралды 120 М.
Wavelets: a mathematical microscope
34:29
Artem Kirsanov
Рет қаралды 608 М.
I’m just a kid 🥹🥰 LeoNata family #shorts
00:12
LeoNata Family
Рет қаралды 19 МЛН