OOPS
fft_f.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #include "model/fft_f.h"
9 
10 #include <unsupported/Eigen/FFT>
11 #include <cmath>
12 #include <vector>
13 
14 #include "oops/util/Logger.h"
15 
16 // -----------------------------------------------------------------------------
17 namespace qg {
18 // -----------------------------------------------------------------------------
19 
20 void fft_fwd_f(const int & kk, const double * xx, double * ff) {
21  static Eigen::FFT<double> fft;
22  std::vector<double> grid(kk);
23  const unsigned int size = kk/2+1;
24  std::vector<std::complex<double> > coefs(size);
25 
26  for (int jj = 0; jj < kk; ++jj) grid[jj] = xx[jj];
27 
28  fft.fwd(coefs, grid);
29 
30  for (unsigned int jj = 0; jj < size; ++jj) {
31  ff[2*jj] = coefs[jj].real();
32  ff[2*jj+1] = coefs[jj].imag();
33  }
34 }
35 
36 // -----------------------------------------------------------------------------
37 
38 void fft_inv_f(const int & kk, const double * ff, double * xx) {
39  static Eigen::FFT<double> fft;
40  std::vector<double> grid(kk);
41  std::vector<std::complex<double> > coefs(kk);
42 
43  const std::complex<double> zero(0.0, 0.0);
44  const int size = kk/2+1;
45  for (int jj = 0; jj < size; ++jj) {
46  std::complex<double> zz(ff[2*jj], ff[2*jj+1]);
47  coefs[jj] = zz;
48  }
49  for (int jj = size; jj < kk; ++jj) coefs[jj] = zero;
50 
51  fft.inv(grid, coefs);
52 
53  for (int jj = 0; jj < kk; ++jj) xx[jj] = grid[jj];
54 }
55 
56 // -----------------------------------------------------------------------------
57 
58 } // namespace qg
The namespace for the qg model.
void fft_inv_f(const int &kk, const double *ff, double *xx)
Definition: fft_f.cc:38
void fft_fwd_f(const int &kk, const double *xx, double *ff)
Definition: fft_f.cc:20