1 subroutine tg02a(ix, n, n_bnd, u, s, d, x, v)
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)
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
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
39 11
if (x > u(j + 1)) go to 1
41 12 j = abs(x - u(1)) / (u(n) - u(1)) * (n - 1) + 1
44 if (x >= u(j)) go to 11
60 18 theta = (x - u(j)) * hr
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
69 990
if (x <= u(1) - eps * max(abs(u(1)), abs(u(n)))) go to 99
72 991
if (x >= u(n) + eps * max(abs(u(1)), abs(u(n)))) go to 995
subroutine tg02a(ix, n, n_bnd, u, s, d, x, v)