ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
tb15a.f90
Go to the documentation of this file.
1 subroutine tb15a(n ,n_bnd, x, f, d, w, lp)
2 !------------------------------------------------------------------
3 ! HSL routine for cubic spline with periodic boundary conditions
4 ! first point must be the same as last : f(1) = f(n)
5 ! n : number of points
6 ! x : coordinate (input)
7 ! f : the function values to be splined (input)
8 ! d : the derivatives at the points (output)
9 ! w : workspace (dimension 3n)
10 ! lp : unit number for output
11 !------------------------------------------------------------------
12 
13  use itm_types
14 
15  implicit none
16 
17  integer(itm_i4) :: lp, n, n_bnd
18  real(r8) :: d(n_bnd + 2), f(n_bnd + 2), x(n_bnd + 2)
19  real(r8) :: w(3 * n_bnd + 6)
20  real(r8) :: a3n1, f1, f2, h1, h2, p
21  integer(itm_i4) :: i, k
22 
23 !. write(lp, *) f(1), f(n)
24  if (n < 4) then
25  write (lp, '(a39)') 'return from tb15a because n too small'
26  w(1) = 1._r8
27  return
28  end if
29  do i = 2, n
30  if (x(i) <= x(i - 1)) then
31  write (lp, '(a29, i3, a13)') 'return from tb15a because ', i, &
32  ' out of order'
33  w(1) = 2._r8
34  return
35  end if
36  end do
37  if (f(1) /= f(n)) then
38  write (lp, '(a40)') 'return from tb15ad because f(1) /= f(n)'
39  w(1) = 3._r8
40  return
41  end if
42  do i = 2, n
43  h1 = 1._r8 / (x(i) - x(i - 1))
44  f1 = f(i - 1)
45  if (i == n) then
46  h2 = 1._r8 / (x(2) - x(1))
47  f2 = f(2)
48  else
49  h2 = 1._r8 / (x(i + 1) - x(i))
50  f2 = f(i + 1)
51  end if
52  w(3 * i - 2) = h1
53  w(3 * i - 1) = 2._r8 * (h1 + h2)
54  w(3 * i) = h2
55  d(i) = 3._r8 * (f2 * h2 * h2 + f(i) * (h1 * h1 - h2 * h2) - f1 * h1 &
56  * h1)
57  end do
58  k = 5
59  a3n1 = w(3 * n - 1)
60  do i = 2, n - 2
61  p = w(k + 2) / w(k)
62  w(k + 3) = w(k + 3) - p * w(k + 1)
63  d(i + 1) = d(i + 1) - p * d(i)
64  w(k + 2) = -p * w(k - 1)
65  p = w(k - 1) / w(k)
66  a3n1 = -p * w(k - 1) + a3n1
67  d(n) = d(n) - p * d(i)
68  k = k + 3
69  end do
70  p = (w(k + 2) + w(k - 1)) / w(k)
71  a3n1 = a3n1 - p * (w(k + 1) + w(k - 1))
72  d(n) = (d(n) - p * d(n - 1)) / a3n1
73  do i = 3, n
74  k = n + 2 - i
75  d(k) = (d(k) - w(3 * k) * d(k + 1) - w(3 * k - 2) * d(n)) / w(3 * k - 1)
76  end do
77  d(1) = d(n)
78  w(1) = 0._r8
79 
80  return
81 
82 end subroutine tb15a
subroutine tb15a(n, n_bnd, x, f, d, w, lp)
Definition: tb15a.f90:1
real(r8) function p(a, x, xr, xs, yr, ys, psi, psir, F_dia)