ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fourier_backtransform.f90
Go to the documentation of this file.
1 subroutine fourier_backtransform(fm, mfm)
2 
3 !-----------------------------------------------------------------------
4 ! transforms the array of Fourier coefficients fm(1:mfm) back into
5 ! an array of radii fr(1:mfm)
6 !-----------------------------------------------------------------------
7 
8  use itm_types
9  use mod_output
10  use mod_parameter
11  use plot_data
12 
13  implicit none
14 
15  real(r8), dimension(mfm), intent(in) :: fm
16  integer(itm_i4), intent(in) :: mfm
17 
18  real(r8), dimension(mfm) :: fr, theta
19  integer(itm_i4) :: i, m
20 
21  do i = 1, mfm
22  theta(i) = 2._r8 * pi * (i - 1) / dble(mfm - 1)
23  fr(i) = fm(1) / 2._r8
24  do m = 2, mfm / 2
25  fr(i) = fr(i) + fm(2 * m - 1) * cos((m - 1) * theta(i)) &
26  + fm(2 * m) * sin((m - 1) * theta(i))
27  end do
28  end do
29 
30  if (xmgrace_output) then
31  call plot_data_1d('line', theta, fr, mfm, 'xmgr_boundary_back')
32  end if
33 
34  return
35 
36 end subroutine fourier_backtransform
subroutine plot_data_1d(type_plot, x, y, np, printname, z)
Definition: plot_data.f90:11
subroutine fourier_backtransform(fm, mfm)