ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
suydam_pq.f90
Go to the documentation of this file.
1 subroutine suydam_pq(ias)
2 !-----------------------------------------------------------------------
3 ! subroutine to calculate the p and q coefficents in the ballooning
4 ! equation in all grid points.
5 ! the terms depending on the extended ballooning angle are seperated.
6 ! the ballooning equation (poguste and yurchenko) reads:
7 ! dt((p0 + t * p1 + t^2 p2) dt(f)) - (q0 + t * q1) f = 0
8 !
9 ! note : the final arrays cp and cq have a different index from the
10 ! gij_hel arrays. the j index runs from 0 to 2pi (including 2pi), the
11 ! number of points in poloidal direction is nchi+1 for ias=1 and
12 ! 2*nchi-1 for ias=0.
13 !-----------------------------------------------------------------------
14 
15  use itm_types
16  use mod_map
17  use mod_spline
18  use mod_suydam
19 
20  implicit none
21 
22  integer(itm_i4), intent(in) :: ias
23 
24  integer(itm_i4) :: i, j, ij, ij1, ij2
25  real(r8) :: sps2, zq, zt, zdp, zdq
26  real(r8) :: beta
27 
28  if (ias == 1) then
29  ncpq = nchi + 1
30  else
31  ncpq = 2 * nchi - 1
32  end if
33 
34  allocate(cp0(npsi * ncpq))
35  allocate(cp1(npsi * ncpq))
36  allocate(cp2(npsi * ncpq))
37  allocate(cq0(npsi * ncpq))
38  allocate(cq1(npsi * ncpq))
39 
40  do i = 2, npsi
41  sps2 = 2._r8 * cpsurf * cs(i)
42  zq = qs(i)
43  zt = rbphi(i)
44  zdp = p_spline%sp2(i)
45  zdq = dqs(i)
46  do j = 1, nchi
47  ij = (i - 1) * nchi + j
48  ij1 = (i - 1) * ncpq + j
49 !----------------------------------- lower index geometric coeff. -------
50 ! g33 = 1._r8 / g33_hel(i, j)
51 ! g11 = sps2**2 * (1._r8 + zq**2 / zt**2 / g33_hel(i, j) &
52 ! * g12_hel(i, j)**2 ) / g11_hel(i, j)
53 ! g12 = - sps2 * zq**2 / zt**2 * g12_hel(i, j) / g33_hel(i, j)
54 ! g22 = zq**2 / zt**2 * g11_hel(i, j) / g33_hel(i, j)
55 ! zj = sps2 * zq / g33_hel(i, j) / zt
56 !-----------------------------------------------------------------------
57  beta = -g12_hel(i, j) / g11_hel(i, j)
58  cp0(ij1) = 1._r8 * g33_hel(i, j) / g11_hel(i, j) + zq**2 &
59  * g11_hel(i, j) * beta**2 * g33_hel(i, j) / b02(ij)
60  cp1(ij1) = 2._r8 * beta * g11_hel(i, j) * (zdq * zq) / (sps2 &
61  / g33_hel(i, j) * b02(ij))
62  cp2(ij1) = g11_hel(i, j) * zdq**2 / (sps2**2 / g33_hel(i, j) &
63  * b02(ij))
64  cq0(ij1) = -zdp * zq**2 / g33_hel(i, j) / (sps2 * zt * b02(ij))**2 &
65  * ((2._r8 * zdp + ds_b02(ij)) * b02(ij) + sps2 * beta &
66  * g11_hel(i, j) * g33_hel(i, j) * dt_b02(ij))
67  cq1(ij1) = zdp * zdq * zq / (sps2 * b02(ij))**2 * dt_b02(ij)
68 !-----------------------------------------------------------------------
69  if (ias == 0) then
70  ij2 = i * (2 * nchi - 1) - j + 1
71  cp0(ij2) = cp0(ij1)
72  cp1(ij2) = -cp1(ij1)
73  cp2(ij2) = cp2(ij1)
74  cq0(ij2) = cq0(ij1)
75  cq1(ij2) = -cq1(ij1)
76  else if (ias == 1 .and. j == 1) then
77  ij2 = i * (nchi + 1)
78  cp0(ij2) = cp0(ij1)
79  cp1(ij2) = cp1(ij1)
80  cp2(ij2) = cp2(ij1)
81  cq0(ij2) = cq0(ij1)
82  cq1(ij2) = cq1(ij1)
83  end if
84  end do
85  end do
86 
87  return
88 
89 end subroutine suydam_pq
subroutine suydam_pq(ias)
Definition: suydam_pq.f90:1