8 type(spline_coefficients
) :: q_spline, p_spline, rbphi_spline
31 type(spline_coefficients
),
intent(in) ::
p
32 real(r8),
intent(in) :: x(:), x_new(:)
33 real(r8),
intent(inout) :: f_new(:)
34 real(r8),
intent(inout),
optional :: fprime_new(:)
35 integer(itm_i4),
intent(out) :: error
37 real(r8) :: x_loc(size(x))
38 real(r8) :: x_new_loc(size(x_new))
39 real(r8) :: xx, xwert_loc
40 integer(itm_i4) :: i, j, k, m
46 if (
size(x) /=
size(
p%sp1) .or.
size(x_new) /=
size(f_new))
then
51 if (present(fprime_new))
then
52 if (
size(x_new) /=
size(fprime_new))
then
59 if (x(
size(x)) < x(1))
then
74 xwert_loc = x_new_loc(1)
84 if (xwert_loc < x_loc(m))
then
92 xx = xwert_loc - x_loc(i)
93 f_new(1) = ((
p%sp4(i) * xx +
p%sp3(i)) * xx +
p%sp2(i)) * xx +
p%sp1(i)
95 if (present(fprime_new)) &
96 fprime_new(1) = (3.0_r8 *
p%sp4(i) * xx + 2.0_r8 *
p%sp3(i)) * xx &
100 xwert_loc = x_new_loc(j)
102 do while (x_loc(k) <= xwert_loc)
103 if (k ==
size(x_loc))
exit
108 xx = xwert_loc - x_loc(i)
109 f_new(j) = ((
p%sp4(i) * xx +
p%sp3(i)) * xx +
p%sp2(i)) * xx +
p%sp1(i)
111 if (present(fprime_new)) &
112 fprime_new(j) = (3.0_r8 *
p%sp4(i) * xx + 2.0_r8 *
p%sp3(i)) * xx &
117 if (inverted .and. present(fprime_new))
then
118 fprime_new = -fprime_new
real(r8) function p(a, x, xr, xs, yr, ys, psi, psir, F_dia)
subroutine evaluate_spline(p, x, x_new, f_new, error, fprime_new)