- Frequency Indexing: The way you're indexing the results of the STFT might not correspond to the exact frequencies you're interested in. You're using the 128th element (Vfsw(128,:), Ifsw(128,:), etc.), which doesn't necessarily correspond to the 60 Hz or 5 kHz components unless the frequency resolution of the STFT exactly matches these frequencies.
- Amplitude Extraction: The STFT returns complex values representing both amplitude and phase information. To get the amplitude, you should take the absolute value (abs ()) of the complex result.
Extracting amplitude and frequency component using short time Fourier transform
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to calculate the capacitance and equivalent series resistance (ESR) of a capacitor in a Boost converter. My boost converter simulation is simulated on Simulink and I am exporting the values to Matlab. The ESR and C values can be achieved by measuring the voltage across and current through the output capacitor and using a short time Fourier transform (STFT) method. The mathematical equations require the amplitudes of the voltages and currents at both the fundamental (=60Hz) and the switching frequency ( = 5kHz) harmonics.
, ,
[Vfsw,fsw_Vc,t_fsw_Vc] = stft(Vc,fsw,'Window',hamming(128,'periodic'),'OverlapLength',50);
Vfsw = Vfsw(128,:);
[Ifsw,fsw_Ic,t_fsw_Ic] = stft(Ic,fsw,'Window',hamming(128,'periodic'),'OverlapLength',50);
Ifsw = Ifsw(128,:);
[Vfm,fm_Vc,t_fm_Vc] = stft(Vc,fm,'Window',hamming(128,'periodic'),'OverlapLength',50);
Vfm = Vfm(128,:);
[Ifm,fm_Ic,t_fm_Ic] = stft(Ic,fm,'Window',hamming(128,'periodic'),'OverlapLength',50);
Ifm = Ifm(128,:);
C = Ifm/(2*pi*fm_Vc*Vfm);
ESR = Vfsw/Ifsw;
My final ESR and C values are quite different than the expected values. Am I extracting the amplitude and frequency component values correctly?
0 Kommentare
Antworten (1)
Shreshth
am 7 Feb. 2024
Bearbeitet: Shreshth
am 7 Feb. 2024
Hello Sudarshan,
Through the code provided, I can understand that you are aiming to extract amplitudes at 60Hz and 5KHz to determine the capacitance and ESR of a capacitor in a boost converter using STFT (Short Time Fourier Transform) function.
However there are couple of issues I can point out that might be resulting in the discrepancy of the final ESR (equivalent series resistance) and C (capacitance) values.
Additionally, you can use the ‘min’ function to find the indices (‘fsw_index’ and ‘fm_index’) that are closest to the switching and the fundamental frequencies.
For more information about the use of ‘min’ or ‘max’ functions in MATLAB you can refer to the below link to find further details,
Hope it helps,
Regards,
Shubham Shreshth
0 Kommentare
Siehe auch
Kategorien
Mehr zu Discrete Fourier and Cosine Transforms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!