ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
theta_derivative.f90
Go to the documentation of this file.
1 subroutine theta_derivative(arrin, darr, nchi)
2 !---------------------------------------------------------------------
3 ! subroutine to calculate the theta derivate using fft.
4 ! arrin : the input array
5 ! darr : the resulting theta derivative
6 ! nchi : the number of poloidal points
7 ! ias : 0 for up/down symmetric equilibria, 1 for asymmetric equil.
8 !---------------------------------------------------------------------
9 
10  use itm_types
11  use mod_parameter
12  use mod_mesh
13 
14  implicit none
15 
16  integer(itm_i4), intent(in) :: nchi
17  real(r8), dimension(nchi), intent(in) :: arrin
18  real(r8), dimension(nchi), intent(out) :: darr
19 
20  integer(itm_i4) :: j, n
21  integer(itm_i4), dimension(2 * nchi - 2) :: indices
22  real(r8), allocatable :: ff(:), df(:)
23 
24  do j = 1, nchi
25  indices(j) = j
26  end do
27 
28  if (ias == 0) then
29  do j = nchi + 1, 2 * nchi - 2
30  indices(j) = 2 * nchi - j
31  end do
32  end if
33 
34  if (ias == 0) then
35  n = 2 * (nchi - 1)
36  else
37  n = nchi
38  end if
39 
40  allocate(ff(2 * n))
41 
42  ff = 0._r8
43 
44  do j = 1, n
45  ff(j) = arrin(indices(j))
46  end do
47 
48  call rft2(ff, n, 1)
49 
50  allocate(df(2 * n))
51 
52  df = 0._r8
53 
54  do j = 1, n / 2
55  df(2 * j - 1) = -dble(j - 1) * ff(2 * j)
56  df(2 * j) = dble(j - 1) * ff(2 * j - 1)
57  end do
58 
59  call rfi2(df, n, 1)
60 
61  do j = 1, nchi
62  darr(j) = df(j)
63  end do
64 
65  deallocate(ff)
66  deallocate(df)
67 
68  return
69 
70 end subroutine theta_derivative
subroutine rft2(data, nr, kr)
Definition: rft2.f90:1
subroutine theta_derivative(arrin, darr, nchi)
subroutine rfi2(data, nr, kr)
Definition: rfi2.f90:1