8 use mod_dat, only : zgeo, verbosity
15 real(r8),
intent(in) :: r_bnd(n_bnd), z_bnd(n_bnd)
16 integer(itm_i4),
intent(in) :: mfm
17 integer(itm_i4),
intent(inout) :: n_bnd
18 real(r8),
intent(out) :: fr(mfm)
19 real(r8),
intent(out) :: rgeo, amin
21 real(r8),
parameter :: error = 1e-8_r8
22 real(r8),
dimension(n_bnd) :: tht_tmp, fr_tmp
23 real(r8),
dimension(3 * n_bnd + 6) :: work
24 real(r8),
dimension(n_bnd + 2) :: tht_sort, fr_sort, dfr_sort
25 integer(itm_i4),
dimension(n_bnd + 2) :: index_order
26 real(r8) :: reast, rwest
27 real(r8) :: tht, values(4)
28 integer(itm_i4) :: ieast(1), iwest(1), n_bnd_short
32 write(iu6, *)
'fshape : (R, Z) set given on ', n_bnd,
' points'
34 reast = maxval(r_bnd(1 : n_bnd))
35 rwest = minval(r_bnd(1 : n_bnd))
36 ieast = maxloc(r_bnd(1 : n_bnd))
37 iwest = minloc(r_bnd(1 : n_bnd))
38 rgeo = (reast + rwest) / 2._r8
39 zgeo = (z_bnd(ieast(1)) + z_bnd(iwest(1))) / 2._r8
40 amin = (reast - rwest) / 2._r8
43 write(iu6,
'(A, 3f12.8)')
'Rgeo, Zgeo, a : ', rgeo, zgeo, amin
48 tht_tmp(i) = atan2(z_bnd(i) - zgeo, r_bnd(i) - rgeo)
49 fr_tmp(i) = sqrt((r_bnd(i) - rgeo)**2 + (z_bnd(i) - zgeo)**2)
52 if (abs(tht_tmp(n_bnd) - tht_tmp(1)) < error) n_bnd = n_bnd - 1
58 call
qsortc(tht_tmp(1 : n_bnd), index_order(1 : n_bnd))
60 tht_sort(1 : n_bnd) = tht_tmp(1 : n_bnd)
62 fr_sort(i) = fr_tmp(index_order(i))
69 if ((tht_sort(i) - tht_sort(1)) > twopi)
then
76 if (abs(tht_sort(n_bnd_short) - tht_sort(1)) < error)
then
77 tht_sort(n_bnd_short) = tht_sort(1) + twopi
78 fr_sort(n_bnd_short) = fr_sort(1)
80 tht_sort(n_bnd_short + 1) = tht_sort(1) + twopi
81 fr_sort(n_bnd_short + 1) = fr_sort(1)
82 n_bnd_short = n_bnd_short + 1
85 call
tb15a(n_bnd_short, n_bnd, tht_sort, fr_sort, dfr_sort, work, iu6)
88 tht = twopi * float(i - 1) / float(mfm)
89 if (tht < tht_sort(1)) tht = tht + twopi
90 if (tht > tht_sort(n_bnd_short)) tht = tht - twopi
92 call
tg02a(0, n_bnd_short, n_bnd, tht_sort, fr_sort, dfr_sort, tht, &
subroutine tg02a(ix, n, n_bnd, u, s, d, x, v)
subroutine tb15a(n, n_bnd, x, f, d, w, lp)
recursive subroutine, public qsortc(A, indices)
subroutine shape_from_points(R_bnd, Z_bnd, n_bnd, mfm, Rgeo, amin, fr)