9 real(r8),
dimension(:),
pointer :: sp1, sp2, sp3, sp4
15 subroutine spline(n, x, y, alfa, beta, typ, p)
54 integer(itm_i4),
intent(in) :: n, typ
55 real(r8),
dimension(n),
intent(in) :: x
56 real(r8),
dimension(n),
intent(in) :: y
57 real(r8),
intent(in) :: alfa, beta
60 real(r8),
dimension(n) :: xlocal
61 integer(itm_i4),
parameter :: iu6 = 6
64 real(r8) :: alfa_loc, beta_loc
65 integer(itm_i4) :: i, ierr, nmax
70 if (xlocal(n) < xlocal(1))
then
77 if (typ < 0 .or. typ > 3)
then
78 write(iu6, *)
'Error in routine spline: wrong type'
82 if (n < 3 .or. n > nmax)
then
83 write(iu6, *)
'Error in routine spline: n < 3 or n > nmax'
84 write(iu6, *)
'n = ',n,
' , nmax = ', nmax
91 alfa_loc = (-1)**typ * alfa
92 beta_loc = (-1)**typ * beta
100 h(i) = xlocal(i + 1) - xlocal(i)
101 if (h(i) <= 0._r8)
then
102 write(iu6, *)
'Error in spline: abscissa not monotonic x(i - 1) >= x(i)'
104 write(*,*) xlocal(1:n)
105 pause
'DPC: Error in spline: abscissa not monotonic x(i - 1) >= x(i)'
112 p%sp1(i) = 3.0_r8 * ((y(i + 2) - y(i + 1)) / h(i + 1) - (y(i + 1) &
116 p%sp4(i) = 2.0_r8 * (h(i) + h(i + 1))
124 p%sp1(1) =
p%sp1(1) * h(2) / (h(1) + h(2))
125 p%sp1(n - 2) =
p%sp1(n - 2) * h(n - 2) / (h(n - 1) + h(n - 2))
126 p%sp4(1) =
p%sp4(1) - h(1)
127 p%sp4(n - 2) =
p%sp4(n - 2) - h(n - 1)
128 p%sp3(1) =
p%sp3(1) - h(1)
129 p%sp2(n - 2) =
p%sp2(n - 2) - h(n - 1)
132 p%sp1(1) =
p%sp1(1) - 1.5_r8 * ((y(2) - y(1)) / h(1) - alfa_loc)
133 p%sp1(n - 2) =
p%sp1(n - 2) - 1.5_r8 * (beta_loc - (y(n) - y(n - 1)) &
135 p%sp4(1) =
p%sp4(1) - 0.5_r8 * h(1)
136 p%sp4(n - 2) =
p%sp4(n - 2) - 0.5_r8 * h(n - 1)
139 p%sp1(1) =
p%sp1(1) - 0.5_r8 * alfa_loc * h(1)
140 p%sp1(n - 2) =
p%sp1(n - 2) - 0.5_r8 * beta_loc * h(n - 1)
143 p%sp1(1) =
p%sp1(1) + 0.5_r8 * alfa_loc * h(1) * h(1)
144 p%sp1(n - 2) =
p%sp1(n - 2) - 0.5_r8 * beta_loc * h(n - 1) * h(n - 1)
145 p%sp4(1) =
p%sp4(1) + h(1)
146 p%sp4(n - 2) =
p%sp4(n - 2) + h(n - 1)
150 call
sgtsl(n - 2,
p%sp2,
p%sp4,
p%sp3,
p%sp1, ierr)
153 write(iu6, *)
'error in sgtsl: matrix singular'
158 call dcopy(n - 2,
p%sp1, 1,
p%sp3(2), 1)
163 p%sp3(1) =
p%sp3(2) + h(1) * (
p%sp3(2) -
p%sp3(3)) / h(2)
164 p%sp3(n) =
p%sp3(n - 1) + h(n - 1) * (
p%sp3(n - 1) -
p%sp3(n - 2)) &
167 p%sp3(1) = 1.5_r8*((y(2) - y(1)) / h(1) - alfa_loc) / h(1) - 0.5_r8 &
169 p%sp3(n) = -1.5_r8*((y(n) - y(n - 1)) / h(n - 1) - beta_loc) / &
170 h(n - 1) - 0.5_r8 *
p%sp3(n - 1)
172 p%sp3(1) = 0.5_r8 * alfa_loc
173 p%sp3(n) = 0.5_r8 * beta_loc
175 p%sp3(1) =
p%sp3(2) - 0.5_r8 * alfa_loc * h(1)
176 p%sp3(n) =
p%sp3(n - 1) + 0.5_r8 * beta_loc * h(n - 1)
178 call dcopy(n, y, 1,
p%sp1, 1)
181 p%sp2(i) = (
p%sp1(i + 1) -
p%sp1(i)) / h(i) - h(i) * (
p%sp3(i + 1) &
182 + 2.0_r8 *
p%sp3(i)) / 3.0_r8
183 p%sp4(i) = (
p%sp3(i + 1) -
p%sp3(i)) / (3.0_r8 * h(i))
186 p%sp2(n) = (3.0_r8 *
p%sp4(n - 1) * h(n - 1) + 2.0_r8 &
187 *
p%sp3(n - 1)) * h(n - 1) +
p%sp2(n - 1)
200 function spwert(n, xwert, p, x, abltg, order) result(f_spwert)
220 integer(itm_i4),
intent(in) :: n
222 real(r8),
intent(in) :: xwert
223 real(r8),
intent(in) :: x(n)
224 integer(itm_i4),
intent(in) :: order
225 real(r8),
intent(out) :: abltg(3)
227 integer(itm_i4),
save :: i, k
231 real(r8) :: xx, xwert_loc
232 logical,
save :: first = .true.
236 if (x(n) < x(1))
then
252 if (first .or. i > n .or. k > n)
then
257 if (xwert_loc < x_loc(k))
then
268 if (xwert_loc < x_loc(m))
then
276 xx = xwert_loc - x_loc(i)
277 f_spwert = ((
p%sp4(i) * xx +
p%sp3(i)) * xx +
p%sp2(i)) * xx +
p%sp1(i)
279 if (order <= 0)
return
281 abltg(1) = (3.0_r8 *
p%sp4(i) * xx + 2.0_r8 *
p%sp3(i)) * xx &
289 if (order == 1)
return
291 abltg(2) = 6.0_r8 *
p%sp4(i) * xx + 2.0_r8 *
p%sp3(i)
293 if (order == 2)
return
295 abltg(3) = 6.0_r8 *
p%sp4(i)
subroutine spline(N, X, Y, ALFA, BETA, TYP, A, B, C, D)
REAL *8 function spwert(N, XWERT, A, B, C, D, X, ABLTG)
subroutine sgtsl(n, c, d, e, b, info)
real(r8) function p(a, x, xr, xs, yr, ys, psi, psir, F_dia)