20 real(r8),
intent(in) :: xaxis, a, cx, cy
21 real(r8),
dimension(npts),
intent(out) :: qprf
22 real(r8),
intent(out) :: q95out, q1out
24 real(r8),
dimension(nr) :: p0tmp, f2tmp, dptmp, dftmp
25 real(r8),
dimension(nr) :: zps, qq, avc
26 real(r8),
dimension(3) :: abltg
28 integer(itm_i4) :: i, j, k
29 integer(itm_i4) :: n1, n2, n3, n4
30 real(r8) :: factas, sumq, avcur, xlength
31 real(r8) :: r, s, ws, x, xr, xs, y, yr, ys, ps, psr, pss
32 real(r8) :: xjac, bigr
41 if (verbosity > 2)
write(iu6, *)
'safety factor'
42 call
profiles(p0tmp, f2tmp, dptmp, dftmp, a)
59 call
interpolation(1, xx(1, n1), xx(1, n2), xx(1, n3), xx(1, n4), &
61 call
interpolation(1, yy(1, n1), yy(1, n2), yy(1, n3), yy(1, n4), &
63 call
interpolation(1, psi(4 * (n1 - 1) + 1), psi(4 * (n2 - 1) + 1), &
64 psi(4 * (n3 - 1) + 1), psi(4 * (n4 - 1) + 1), r, s, ps, &
66 xjac = xr * ys - xs * yr
67 bigr = 1._r8 + eps * x
68 sumq = sumq - ws * xjac / (bigr * abs(psr))
69 xlength = xlength + sqrt(xs**2 + ys**2) * ws
70 arhs =
rh_side(1._r8, x, 0._r8, 0._r8, 0._r8, 0._r8, ps, 0._r8, 0._r8)
71 avcur = avcur + ws * arhs * sqrt(xs**2 + ys**2)
75 qq(nr - i + 1) = factas / 2._r8 * f2tmp(nr - i + 1) * sumq * alfa / pi
76 avc(nr - i + 1) = factas * a * eps * avcur / (alfa * xlength)
79 qq(1) = f2tmp(1) * alfa / (2._r8 * sqrt(cx * cy) * (1._r8 + eps &
83 call
spline(nr, zps, qq, 0._r8, 0._r8, 2, dq_spline)
85 ss = dble(i - 1) / dble(npts - 1)
87 qprf(i) =
spwert(nr, ps, dq_spline, zps, abltg, 0)
90 q95out =
spwert(nr, ps, dq_spline, zps, abltg, 0)
92 if (verbosity > 2)
write(iu6, *)
' q95 : ', q95out
94 avc(1) = avc(2) - (avc(3) - avc(2)) / (zps(3) - zps(2)) * zps(2)
95 call
spline(nr, zps, avc, 0._r8, 0._r8, 2, dq_spline)
97 ss = dble(i - 1) / dble(npts - 1)
99 j_tor(i) =
spwert(nr, ps, dq_spline, zps, abltg, 0)
subroutine profiles(p0, rbphi, dp0, drbphi, a)
subroutine interpolation(type_interp, xn1, xn2, xn3, xn4, r, s, x, xr, xs, xrs, xrr, xss, yn1, yn2, yn3, yn4, pn1, pn2, pn3, pn4, yr, ys, ps)
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)
real(r8) function rh_side(a, x, xr, xs, yr, ys, psi, psir, F_dia)
subroutine deallocate_spline_coefficients(spline)
subroutine safety_factor(xaxis, a, cx, cy, qprf, q95out, q1out)