ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
suydam_bfield.f90
Go to the documentation of this file.
1 subroutine suydam_bfield
2 !-----------------------------------------------------------------------
3 ! subroutine to calculate :
4 ! - the total magnetic field squared
5 ! - the radial and poloidal derivative of the total field squared
6 ! on the grid points of the straight field line coordinate system.
7 !-----------------------------------------------------------------------
8 
9  use itm_types
10  use mod_map
11  use mod_mesh
12  use mod_spline
13  use mod_suydam
14 
15  implicit none
16 
17  type(spline_coefficients) :: s_spline
18  integer(itm_i4) :: i, j, ij
19 
20  real(r8), dimension(npsi) :: sp
21 
22  allocate(b02(npsi * nchi))
23  allocate(dt_b02(npsi * nchi))
24  allocate(ds_b02(npsi * nchi))
25 
26 !---------------------------------------- b0 on grid points -----------
27  do i = 1, npsi
28  do j = 1, nchi
29  ij = (i - 1) * nchi + j
30  b02(ij) = (g11_hel(i, j) + rbphi(i)**2) * g33_hel(i, j)
31  end do
32  end do
33 !---------------------------------------- d(b02)/d(theta) -------------
34  do i = 1, npsi
35  ij = (i - 1) * nchi + 1
36  call theta_derivative(b02(ij), dt_b02(ij), nchi)
37  end do
38 !---------------------------------------- d(b02)/ds --------------------
39  call allocate_spline_coefficients(s_spline, npsi)
40  do j = 1, nchi
41  do i = 1, npsi
42  ij = (i - 1) * nchi + j
43  sp(i) = b02(ij)
44  end do
45  call spline(npsi, cs, sp, 0.0_r8, 0.0_r8, 2, s_spline)
46  do i = 1, npsi
47  ij = (i - 1) * nchi + j
48  ds_b02(ij) = s_spline%sp2(i)
49  end do
50  end do
51  call deallocate_spline_coefficients(s_spline)
52 
53  return
54 
55 end subroutine suydam_bfield
subroutine suydam_bfield
subroutine allocate_spline_coefficients(spline, n)
subroutine spline(N, X, Y, ALFA, BETA, TYP, A, B, C, D)
Definition: solution6.f90:655
subroutine deallocate_spline_coefficients(spline)
subroutine theta_derivative(arrin, darr, nchi)