ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
grid2nv.f90
Go to the documentation of this file.
1 subroutine grid2nv(tin, tout, jpts, acc, igrd, ll)
2 !---------------------------------------------------------------------------
3 ! The function tin(tout), given on the grid tout = 2 * pi * (j - 1) / jpts,
4 ! is inverted to give tout(tin) on the grid tin = 2 * pi * (i - 1) / jpts.
5 ! This is done by determining the zeros of the function
6 ! y(t) = t + sum(gf(m) * sin(m * t)) - 2 * pi * (i - 1) / jpts,
7 ! where gf(m) are the fourier coefficients of g(t) = tin(t) - t.
8 ! Diagnostic information is printed if l /= 0.
9 ! The argument ll has the double function of communicating the
10 ! output unit iout = ll / 10 and the print switch l = ll - iout * 10.
11 ! iout = 0 (l=ll): file is "output".
12 !-----------------------------------------------------------------------
13 
14  use itm_types
15 
16  implicit none
17 
18  integer(itm_i4), intent(in) :: jpts
19  real(r8), dimension(jpts), intent(inout) :: tin
20  real(r8), dimension(jpts), intent(out) :: tout
21  real(r8), intent(in) :: acc
22  integer(itm_i4), intent(in) :: igrd, ll
23 
24  real(r8), dimension(jpts + 1) :: t, g
25  real(r8), dimension(jpts / 2 - 1) :: gfcos, gfsin
26 
27  real(r8), parameter :: pi = 3.1415926535898_r8
28  integer(itm_i4), parameter :: ninv = 100
29  real(r8) :: t1, y1, t0, y0, t2, y2
30  real(r8) :: sum1, sum2, gfnul
31  integer(itm_i4) :: mharm
32  integer(itm_i4) :: iout, iout_pr
33  integer(itm_i4) :: l, i, j, jj, j1, n
34  integer(itm_i4) :: igrdnv, ifirst, icirc
35 
36  mharm = jpts / 2 - 1
37 
38  do jj = 2, jpts
39  if (tin(jj - 1) > tin(jj)) tin(jj) = tin(jj) + 2._r8 * pi
40  end do
41  iout = ll / 10
42  l = ll - iout * 10
43  iout_pr = iout * 10 + l
44  if (iout == 0) iout = 6
45  if (l /= 0) write(iout, 3)
46 
47  do i = 1, jpts
48  g(i) = tin(i) - 2._r8 * pi * (i - 1) / dble(jpts)
49  end do
50  call rft(g, gfnul, gfcos, gfsin, jpts, mharm)
51  if (l /= 0) then
52  call prarr1('tin(j) : ', tin, jpts, iout_pr)
53  call prarr1('g(i):', t, jpts, iout_pr)
54  write(iout, 56) gfnul
55  call prarr1('gfcos(m):', gfcos, mharm, iout_pr)
56  call prarr1('gfsin(m):', gfsin, mharm, iout_pr)
57  end if
58  do i = 1, jpts + 1
59  t(i) = 2._r8 * pi * (i - 1) / dble(jpts)
60  end do
61  j1 = 1
62  igrdnv = 1
63  ifirst = 0
64  icirc = -(int(tin(1) / (2._r8 * pi) + 10000) - 9999)
65  if (abs(tin(1)) < 1.e-12_r8) icirc = 0
66 
67  loop_i: do i = 1, jpts
68  j = j1
69  t1 = t(j) + icirc * 2._r8 * pi
70  call fsum2(sum1, t1, gfnul, gfcos, gfsin, mharm)
71  y1 = t1 + sum1 - t(i)
72  do
73  t0 = t1
74  y0 = y1
75  if (abs(y0) <= acc) then
76  tout(i) = t0
77  cycle loop_i
78  end if
79  if (j == jpts + 1) then
80  if (ifirst == 0) then
81  j = 1
82  icirc = icirc + 1
83  ifirst = 1
84  else
85  write(iout, 70)
86  return
87  end if
88  else
89  j = j + 1
90  end if
91  t1 = t(j) + icirc * 2._r8 * pi
92  call fsum2(sum1, t1, gfnul, gfcos, gfsin, mharm)
93  y1 = t1 + sum1 - t(i)
94  if (sign(1._r8, y0) /= sign(1._r8, y1)) exit
95  end do
96 
97  j1 = j - 1
98 
99  do n = 1, ninv
100  t2 = t0 - (t1 - t0) * y0 / (y1 - y0)
101  call fsum2(sum2, t2, gfnul, gfcos, gfsin, mharm)
102  y2 = t2 + sum2 - t(i)
103  if (l /= 0) write(iout, 25) n, t0, t1, y0, y1, t2, y2, j
104  if (abs(y2) <= acc) exit
105  if (sign(1._r8, y2) /= sign(1._r8, y1)) then
106  t0 = t2
107  y0 = y2
108  else
109  t1 = t2
110  y1 = y2
111  end if
112  end do
113 
114  tout(i) = t2
115  if (l /= 0) write(iout, 55) i, n
116  if (n > igrdnv) igrdnv = n
117 
118  end do loop_i
119 
120  return
121 
122  3 format(///1x, 'subroutine gridinv')
123  25 format(1x, 'n=', i3, ' t0=', f10.5, ' t1=', f10.5, &
124  ' y0=', f10.5, ' y1=', f10.5, ' t2=', f10.5, ' y2=', f10.5, ' j=',i3)
125  55 format(1x, 'i=', i3, 5x, 'n=', i3)
126  56 format(/1x, 'gfnul = ', 1pe12.4)
127  70 format(/1x, '***subroutine gridinv: no zero found ')
128 
129 end subroutine grid2nv
subroutine grid2nv(tin, tout, jpts, acc, igrd, ll)
Definition: grid2nv.f90:1
subroutine prarr1(name, array, isize, ll)
Definition: prarr1.f90:1
subroutine fsum2(f, t, ffnul, ffcos, ffsin, mharm)
Definition: fsum2.f90:1
subroutine rft(f, ffnul, ffcos, ffsin, jpts, mharm)
Definition: rft.f90:1