ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fft2.f90
Go to the documentation of this file.
1 subroutine fft2 (datar, datai, n, inc)
2 !---------------------------------------------------------------------------
3 !
4 ! ******************************************************************
5 ! * fft2 fortran version clair nielson may 75. *
6 ! ******************************************************************
7 !
8 !---------------------------------------------------------------------------
9 
10  use itm_types
11 
12  implicit none
13 
14  integer(itm_i4), intent(in) :: n, inc
15  real(r8), dimension(iabs(inc) * n), intent(inout) :: datar, datai
16 
17  real(r8) :: tempr, tempi, theta, sinth, wstpr, wstpi, wr, wi
18  integer(itm_i4) :: ktran, ks, ip0, ip1, ip2, ip3, irev, ibit, i
19  integer(itm_i4) :: i1, i3, j0, j1
20 
21  ktran = sign(-1, inc)
22  ks = abs(inc)
23  ip0 = ks
24  ip3 = ip0 * n
25  irev = 1
26 
27  do i = 1, ip3, ip0
28  if (i < irev) then
29  tempr = datar(i)
30  tempi = datai(i)
31  datar(i) = datar(irev)
32  datai(i) = datai(irev)
33  datar(irev) = tempr
34  datai(irev) = tempi
35  end if
36  ibit = ip3 / 2
37  do
38  if (irev <= ibit) exit
39  irev = irev - ibit
40  ibit = ibit / 2
41  if (ibit < ip0) exit
42  end do
43  irev = irev + ibit
44  end do
45 
46  ip1 = ip0
47  theta = dble(ktran) * 3.1415926535898_r8
48  do
49  if (ip1 >= ip3) exit
50  ip2 = ip1 + ip1
51  sinth = sin(.5_r8 * theta)
52  wstpr = -2._r8 * sinth * sinth
53  wstpi = sin(theta)
54  wr = 1._r8
55  wi = 0._r8
56  do i1 = 1, ip1, ip0
57  do i3 = i1, ip3, ip2
58  j0 = i3
59  j1 = j0 + ip1
60  tempr = wr * datar(j1) - wi * datai(j1)
61  tempi = wr * datai(j1) + wi * datar(j1)
62  datar(j1) = datar(j0) - tempr
63  datai(j1) = datai(j0) - tempi
64  datar(j0) = datar(j0) + tempr
65  datai(j0) = datai(j0) + tempi
66  end do
67  tempr = wr
68  wr = wr * wstpr - wi * wstpi + wr
69  wi= wi * wstpr + tempr * wstpi + wi
70  end do
71  ip1 = ip2
72  theta = .5_r8 * theta
73  end do
74 
75  return
76 end subroutine fft2
subroutine fft2(datar, datai, n, inc)
Definition: fft2.f90:1