16 real(r8),
intent(in) :: xaxis
18 real(r8),
dimension(nr),
intent(out) :: xell, xtria
20 real(r8),
dimension(4 * (np - 1)) :: rrt
21 real(r8),
dimension(8 * (np - 1)) :: rr
24 real(r8) :: xrad, xshift, xgeo
25 real(r8) :: xleft, xright
26 real(r8) :: xtop, ytop, dummy
28 real(r8),
parameter :: tol = 1._r8 + 1.e-8_r8
29 integer(itm_i4) :: i, j, ngs
30 integer(itm_i4) :: n1, n2, n3, n4
31 integer(itm_i4) :: npt
32 integer(itm_i4) :: ifail
34 if (standard_output)
then
35 write(out_he, *)
'**************************************************'
36 write(out_he, *)
'* ellipticity and triangularity (fourier co.) *'
37 write(out_he, *)
'**************************************************'
38 write(out_he, *)
'* index, s, radius, shift, ellip, tria *'
39 write(out_he, *)
'**************************************************'
49 s = -1._r8 + 0.5_r8 * dble(ngs - 1)
50 call
interpolation(0, xx(1, n1), xx(1, n2), xx(1, n3), xx(1, n4), &
52 call
interpolation(0, yy(1, n1), yy(1, n2), yy(1, n3), yy(1, n4), &
54 call
interpolation(0, psi(4 * (n1 - 1) + 1), psi(4 * (n2 - 1) + 1), &
55 psi(4 * (n3 - 1) + 1), psi(4 * (n4 - 1) + 1), r, s, ps)
56 rrt(4 * (j - 1) + ngs) = sqrt((x - xaxis)**2 + y * y)
59 rrt(4 * (np - 1) + 1) = sqrt((xx(1, i * np) - xaxis)**2)
60 do j = 1, 4 * (np - 1) + 1
61 rr(j) = rrt(4 * (np - 1) - j + 2)
63 do j = 1, 4 * (np - 1) - 1
64 rr(4 * (np - 1) + j + 1) = rr(4 * (np - 1) - j + 1)
68 xrad = rr(1) / dble(npt)
69 xshift = -2._r8 * rr(3) / dble(npt) / sqrt(ps)
70 xell(i) = -4._r8 * rr(5) / dble(npt) / sqrt(ps)
71 xtria(i) = 8._r8 * rr(7) / dble(npt) / ps
72 if (standard_output) &
73 write(out_he, 11) i, sqrt(ps), xrad, xshift, xell(i), xtria(i)
80 if (standard_output)
then
81 write(out_he, *)
'**************************************************'
82 write(out_he, *)
'* ellipticity and triangularity (geometric co.) *'
83 write(out_he, *)
'**************************************************'
88 n2 = (i - 1) * np + j + 1
89 if (yy(3, n1) * yy(3, n2) <= 0._r8)
then
91 call
quad_equation(yy(1, n1), yy(3, n1), yy(1, n2), yy(3, n2), &
94 xx(3, n2), s, xtop, dummy)
96 yy(3, n2), s, ytop, dummy)
97 xleft = xx(1, (i - 1) * np + 1)
98 xright = xx(1, (i - 1) * np + np)
99 xgeo = (xleft + xright) / 2._r8
100 xrad = (xright - xleft) / 2._r8
101 xshift = (xaxis - xgeo) / xrad
102 ell = ytop / xrad - 1._r8
103 tri = -(xtop - xgeo) / xrad**2
104 ps = psi(4 * (n1 - 1) + 1)
105 if (standard_output) &
106 write(out_he, 11) i, sqrt(ps), xrad, xshift, ell, tri
111 11
format(i3, 5e16.8)
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 rft2(data, nr, kr)
subroutine cubic_interp_1d(x1, x1s, x2, x2s, s, x, xs)
subroutine, public quad_equation(p_m, p_mr, p_p, p_pr, tol, r, ifail)
subroutine triangularity(xaxis, xell, xtria)