3
$\begingroup$

I am trying to extract the kinematic parameters (rotation velocity, velocity dispersion, ...) of an elliptical galaxy by extracting the kinematical broadening function using the FCQ-Algortihm first described by Bender 1990: (https://ui.adsabs.harvard.edu/abs/1990A%26A...229..441B/abstract)

I am therefore using the central line spectra of the elliptical galaxy NGC 4697 and the 1D template spectra of the K2-III star HD 132345. After some preprocessing steps I calculated the cross correlation function between the galaxy and the template and extracted the peak of it.

enter image description hereenter image description here

I calculated the velocity spacing per pixel and the velscale is approximately 30 km/s per pixel. I

Now I have to transform the peak of the correlation function into fourierspace:

from numpy.fft import fft as fourier, ifft as ifourier
corr_gal_tem_peak_fourier = np.fft.fftshift(fourier(corr_gal_tem_peak))

The plotted resulting powerspectrum (absolute square) in fourierspace has the expected gaussian form, plotting it leaving out the x-values like:plt.plot(np.power(np.abs(corr_gal_tem_peak_fourier), 2)) results in: enter image description here

I now need to fit a model for this powerspectrum to create an optimal Wienerfilter in fourierspace. I therefore need some x-values in fourierspace. I tried to create x-values using np.fft.fftfreq() with: n = corr_gal_tem_peak.size s = np.fft.fftfreq(n, d=velscale) Plotting this idea results in this:enter image description here Can anybody tell me how to properly create the array for the x-values in fourierspace, they would have unit of s/km ?

$\endgroup$
2
  • 1
    $\begingroup$ have you tried using fftshift? From the last plot it looks like your frequency array is sorted in a different way than your porwerspectrum array $\endgroup$
    – Prallax
    Commented Sep 22, 2021 at 11:50
  • $\begingroup$ Thank you very much with fftshift it is working. But I am not sure if I approached it right in general ? $\endgroup$
    – trynerror
    Commented Sep 22, 2021 at 12:54

0

You must log in to answer this question.