ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
rft.f90
Go to the documentation of this file.
1 subroutine rft(f, ffnul, ffcos, ffsin, jpts, mharm)
2 !-----------------------------------------------------------------------
3 ! calculates fourier cosine and sine coefficients ffcos and
4 ! ffsin of the array ff corresponding to the function
5 ! f(t)=.5*ffnul+sum(ffcos(m)*cos(m*t)+ffsin(m)*sin(m*t))
6 ! where mharm.le.jpts/2-1, ffnul=ff(0) and t=2*pi*(j-1)/jpts.
7 ! the input array f(j) is not destroyed by calling rftcos.
8 ! typical use is for mharm much smaller than jpts/2-1, so that
9 ! rft2 cannot be used directly.
10 !-----------------------------------------------------------------------
11 
12  use itm_types
13 
14  implicit none
15 
16  integer(itm_i4), intent(in) :: jpts, mharm
17  real(r8), dimension(jpts), intent(in) :: f
18  real(r8), intent(out) :: ffnul
19  real(r8), dimension(mharm), intent(out) :: ffcos, ffsin
20 
21  real(r8), dimension(jpts + 2) :: fstore
22  real(r8) :: fac
23  integer(itm_i4) :: j, m
24 
25  do j = 1, jpts
26  fstore(j) = f(j)
27  end do
28  call rft2(fstore, jpts, 1)
29  fac = 2._r8 / jpts
30  ffnul = fstore(1) * fac
31 
32  do m =1, mharm
33  ffcos(m) = fstore(2 * m + 1) * fac
34  ffsin(m) = - fstore(2 * m + 2) * fac
35  end do
36 
37  return
38 end subroutine rft
subroutine rft2(data, nr, kr)
Definition: rft2.f90:1
subroutine rft(f, ffnul, ffcos, ffsin, jpts, mharm)
Definition: rft.f90:1