ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
mod_profiles.f90
Go to the documentation of this file.
2 
3  use itm_types
4  use helena_spline
5 
6  implicit none
7 
8  integer(itm_i4), parameter :: max_points_profile = 2001
9 
10  integer(itm_i4) :: npts
11 
12  real(r8), allocatable, dimension(:) :: dp, fdf, j_tor, q_in
13  target :: dp, fdf, j_tor, q_in
14 
15  real(r8), allocatable :: dpres(:), p_int(:), dgam(:), gam_int(:)
16  target :: dpres, p_int, dgam, gam_int
17 
18  real(r8), allocatable :: psi_in(:)
19 
20  real(r8), allocatable :: psivec(:)
21 
22  type(spline_coefficients) :: gam_spline, dp_spline, j_spline
23 
24 
25  contains
26 
27  subroutine allocate_spline_coefficients(spline, n)
28 
29  implicit none
30 
32  integer(itm_i4) :: n, alloc_error
33 
34  allocate(spline%sp1(n), spline%sp2(n), spline%sp3(n), spline%sp4(n), &
35  stat = alloc_error)
36  if (alloc_error /= 0) then
37  print *, "Allocation Error"
38  stop
39  end if
40 
41  end subroutine allocate_spline_coefficients
42 
43  subroutine deallocate_spline_coefficients(spline)
44 
45  implicit none
46 
48  integer(itm_i4) :: dealloc_error
49 
50  deallocate(spline%sp1, spline%sp2, spline%sp3, spline%sp4, &
51  stat = dealloc_error)
52  if (dealloc_error /= 0) then
53  print *, "Couldn't deallocate space for spline"
54  stop
55  end if
56 
57  end subroutine deallocate_spline_coefficients
58 
59 end module mod_profiles
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)