ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
matrix_calculations.f90
Go to the documentation of this file.
2 
3  use itm_types
4  use mod_corners, only : nodeno
5  use mod_helena_io
6 
7  implicit none
8 
9  contains
10 
11  subroutine set_node_number(n_node, n1, n2, n3, n4)
12 
13  implicit none
14 
15  integer(itm_i4), intent(in) :: n_node
16  integer(itm_i4), intent(out) :: n1, n2, n3, n4
17 
18  if (n_node .lt. lbound(nodeno,1)) then
19  write(iu6,*) 'n_node out of bounds = ', n_node
20  read(*,*)
21  stop 'Error in set_node_number'
22  else if (n_node .gt. ubound(nodeno,1)) then
23  write(iu6,*) 'n_node out of bounds = ', n_node
24  read(*,*)
25  stop 'Error in set_node_number'
26  end if
27 
28  n1 = nodeno(n_node, 1)
29  n2 = nodeno(n_node, 2)
30  n3 = nodeno(n_node, 3)
31  n4 = nodeno(n_node, 4)
32 
33  return
34  end subroutine set_node_number
35 
36  subroutine set_index(indices, inv)
37 !-----------------------------------------------------------------------
38 ! Calculate the index in the matrix or its inverse. It is reordered from
39 ! clockwise ordering in the rest of helena to help reduce the matrix size
40 ! by a factor of 2.
41 ! The poloidal index j changes to:
42 ! jn = 1 (j = 1, np)
43 ! jn = 2 * (j - 1), (2 .le. j .le. (np - 1) / 2 + 1)
44 ! jn = 2 * (np - j) + 1, ((np - 1) / 2 + 2 .le. j .le. np - 1)
45 !-----------------------------------------------------------------------
46 !
47 ! the inverse of index in build_matrix will be restored
48 !-----------------------------------------------------------------------
49 
50  use mod_mesh, only : nr, np, ias
51 
52  implicit none
53 
54  integer(itm_i4), dimension(nr * np), intent(inout) :: indices
55  logical, intent(in) :: inv
56  integer(itm_i4) :: i, j, jn, ij1, ijn
57 
58  if (ias == 1) then
59  do i = 1, nr
60  j = 1
61  jn = 1
62  ij1 = (i - 1) * np + j
63  ijn = (i - 1) * (np - 1) + jn
64  if (inv) then
65  indices(ijn) = ij1
66  else
67  indices(ij1) = ijn
68  end if
69  do j = 2, (np - 1) / 2 + 1
70  jn = 2 * (j - 1)
71  ij1 = (i - 1) * np + j
72  ijn = (i - 1) * (np - 1) + jn
73  if (inv) then
74  indices(ijn) = ij1
75  else
76  indices(ij1) = ijn
77  end if
78  end do
79  do j = (np - 1) / 2 + 2, np - 1
80  jn = 2 * (np - j) + 1
81  ij1 = (i - 1) * np + j
82  ijn = (i - 1) * (np - 1) + jn
83  if (inv) then
84  indices(ijn) = ij1
85  else
86  indices(ij1) = ijn
87  end if
88  end do
89 
90  if ( .not. inv ) then
91  j = np
92  jn = 2 * (np - j) + 1
93  ij1 = (i - 1) * np + j
94  ijn = (i - 1) * (np - 1) + jn
95  indices(ij1) = ijn
96  end if
97  end do
98  if (inv) return
99  else
100  do i = 1, nr
101  do j = 1, np
102  ij1 = (i - 1) * np + j
103  indices(ij1) = ij1
104  end do
105  end do
106  endif
107 
108  return
109  end subroutine set_index
110 
111 end module matrix_calculations
subroutine set_index(indices, inv)
subroutine set_node_number(n_node, n1, n2, n3, n4)