21 type(type_equilibrium
),
intent(in) :: equilibrium_out
24 integer(itm_i4) :: i, j, im, jm
25 real(r8) :: maxerr, err
26 real(r8) :: dgp0, dgp1, dgp
28 real(r8) :: dp_axis, dp_boundary
29 real(r8) :: drbphi_axis, drbphi_boundary
30 real(r8),
dimension(npsi - 1) :: c1
31 real(r8),
dimension(3) :: dummy
32 real(r8),
dimension(nchi) :: dgt
33 real(r8),
dimension(npsi) :: gp
34 real(r8),
dimension(npsi - 1, nchi) :: error, error2
40 drbphi_boundary = 0._r8
41 dp_boundary = equilibrium_out%profiles_1d%pprime(nr) &
42 * 2 * equilibrium_out%profiles_1d%psi(nr) * mu0 &
43 / equilibrium_out%global_param%mag_axis%bphi**2
49 c1(:) = g12_hel(2 : npsi - 1, i)
50 call
spline(npsi - 1, cs(2), c1, 0._r8, 0._r8, 2, q_spline)
51 g12_hel(1, i) =
spwert(npsi - 1, 0._r8, q_spline, cs(2), dummy, 0)
54 call
spline(npsi, cs, p0, dp_axis, dp_boundary, 1, p_spline)
55 call
spline(npsi, cs, rbphi, drbphi_axis, drbphi_boundary, 1, rbphi_spline)
63 gp(i) = g11_hel(i, j) * qs(i) / rbphi(i)
65 dgp0 = (gp(2) - gp(1)) / (cs(2) - cs(1))
66 dgp1 = (gp(npsi) - gp(npsi - 1)) / (cs(npsi) - cs(npsi - 1))
67 call
spline(npsi, cs, gp, dgp0, dgp1, 2, gp_spline)
71 sps2 = 2._r8 * cs(i) * cpsurf
73 dgp = (g11_hel(i + 1, j) * qs(i + 1) / rbphi(i + 1) &
74 - g11_hel(i - 1, j) * qs(i - 1) / rbphi(i - 1)) &
75 / (cs(i + 1) - cs(i - 1))
76 err = abs(rbphi(i) / qs(i) * dgp + dgt(j) * sps2 &
77 + (rbphi(i) * rbphi_spline%sp2(i) + g33_hel(i, j) * p_spline%sp2(i)))
78 if (err > maxerr)
then
85 error(i - 1, j) = log(err)
86 error2(i - 1, j) = err
89 if (standard_output)
then
91 write(out_he, 23) maxerr, im, jm
120 23
format(
' max error in gs after mapping : ', e12.4, 2i5)
subroutine allocate_spline_coefficients(spline, n)
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 deallocate_spline_coefficients(spline)
subroutine theta_derivative(arrin, darr, nchi)
subroutine check_solution(equilibrium_out)