ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
tg02a.f90
Go to the documentation of this file.
1 subroutine tg02a(ix, n, n_bnd, u, s, d, x, v)
2 !------------------------------------------------------------------
3 ! HSL subroutine to calculate splined values
4 ! n : number of points
5 ! ix : negative 0 -> no initial guess for where xi is
6 ! positive -> guess for index close to value x
7 ! u : the coordinates of the spline points
8 ! s : the function values of the spline points
9 ! d : the derivatives on the spline points
10 ! x : the coordinate where the output is wanted
11 ! v(1-4) : value and derivatives of the spline interpolation
12 !------------------------------------------------------------------
13 
14  use itm_types
15 
16  implicit none
17 
18  real(r8), intent(in) :: x
19  integer(itm_i4), intent(in) :: ix, n, n_bnd
20  real(r8), intent(in) :: d(n_bnd + 2), s(n_bnd + 2), u(n_bnd + 2)
21  real(r8), intent(out) :: v(4)
22 
23  real(r8), parameter :: eps = 1e-33_r8
24  real(r8) :: a, b, c, c3, d0, d1
25  real(r8) :: gama, h, hr, hrr, phi, s0, s1, t, theta
26  integer(itm_i4) :: i, j, k
27  integer(itm_i4) :: iflg
28 
29  k = 0
30  iflg = 0
31  if (x < u(1)) go to 990
32  if (x > u(n)) go to 991
33  if (ix < 0 .or. iflg == 0) go to 12
34  if (x > u(j + 1)) go to 1
35  if (x >= u(j)) go to 18
36  go to 2
37 
38  1 j = j + 1
39  11 if (x > u(j + 1)) go to 1
40  go to 7
41  12 j = abs(x - u(1)) / (u(n) - u(1)) * (n - 1) + 1
42  j = min(j, n - 1)
43  iflg = 1
44  if (x >= u(j)) go to 11
45  2 j = j - 1
46  if (x < u(j)) go to 2
47  7 k = j
48  h = u(j + 1) - u(j)
49  hr = 1._r8 / h
50  hrr = 2._r8 * hr * hr
51  s0 = s(j)
52  s1 = s(j + 1)
53  d0 = d(j)
54  d1 = d(j + 1)
55  a = s1 - s0
56  b = a - h * d1
57  a = a - h * d0
58  c = a + b
59  c3 = c * 3._r8
60  18 theta = (x - u(j)) * hr
61  phi = 1._r8 - theta
62  t = theta * phi
63  gama = theta * b - phi * a
64  v(1) = theta * s1 + phi * s0 + t * gama
65  v(2) = theta * d1 + phi * d0 + t * c3 * hr
66  v(3) = (c * (phi - theta) - gama) * hrr
67  v(4) = -c3 * hrr * hr
68  return
69  990 if (x <= u(1) - eps * max(abs(u(1)), abs(u(n)))) go to 99
70  j = 1
71  go to 7
72  991 if (x >= u(n) + eps * max(abs(u(1)), abs(u(n)))) go to 995
73  j = n - 1
74  go to 7
75  995 k = n
76  99 iflg = 0
77  do i = 1, 4
78  v(i) = 0._r8
79  end do
80 
81  return
82 
83 end subroutine tg02a
subroutine tg02a(ix, n, n_bnd, u, s, d, x, v)
Definition: tg02a.f90:1