ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
dp_fdf_iteration.f90
Go to the documentation of this file.
1 subroutine dp_fdf_iteration(first, a, psaxis, xaxis, yaxis, nax, rax, sax)
2 !-----------------------------------------------------------------------------
3 ! subroutine to solve the Grad-Shafranov equation for p' and FF' input
4 !-----------------------------------------------------------------------------
5 
6  use itm_types
7  use mod_dat, only : errit, amix, niter, verbosity
8  use mod_helena_io, only : iu6, out_he
9  use mod_mesh, only : psi, psiold, nr, np
10  use mod_output
11  use mod_solver
12  use solver
15 
16  implicit none
17 
18  logical, intent(inout) :: first
19 
20  real(r8), intent(inout) :: a
21  real(r8), intent(inout) :: xaxis
22  real(r8), intent(inout) :: yaxis
23  real(r8), intent(inout) :: rax, sax
24 
25  real(r8), intent(out) :: psaxis
26  integer(itm_i4), intent(out) :: nax
27 
28  real(r8) :: residual
29  integer(itm_i4) :: i, j
30 
31 !-- start of inner iteration (with fixed dp and fdf)
32  do i = 1, niter
33 
34  psiold = psi
35 
36  !call system('date +%s%N')
37 
38 !-- build matrix, no boundary conditions
39  call build_matrix(a, first)
40 
41  !call system('date +%s%N')
42 
43 !-- solve set of equations
44  call gaussian_elimination(first)
45 
46  !call system('date +%s%N')
47 
48 !-- matrix built and decomposed
49  if (first) first = .false.
50 
51 !-- find magnetic axis and psi on axis
52  call find_axis(psaxis, xaxis, yaxis, nax, rax, sax)
53 
54  !call system('date +%s%N')
55 
56  a = a / (1._r8 - psaxis)
57 
58  if (verbosity > 1) &
59  write(iu6, *) 'iteration ', i
60  if (verbosity > 2) then
61  write(iu6, 1) xaxis, yaxis
62  write(iu6, *) 'new A = ', a, ' psaxis = ', psaxis
63  end if
64 
65  1 format('magnetic axis : x = ', e14.6, ' y = ', e14.6)
66 
67 !-- normalize flux to zero on axis
68  call normalize_psi(psaxis)
69  if (amix /= 0._r8) then
70  psi = (1._r8 - amix) * psi + amix * psiold
71  call find_axis(psaxis, xaxis, yaxis, nax, rax, sax)
72  a = a / (1._r8 - psaxis)
73  call normalize_psi(psaxis)
74  end if
75 
76 !-- calculate residual
77  residual = 0._r8
78  do j = 1, 4 * nr * np
79  residual = residual + abs(psi(j) - psiold(j))
80  end do
81  residual = residual / dble(nr * np)
82  write(iu6, *) 'helena: residual = ', residual
83  if (residual < errit) exit
84 
85  if (verbosity > 0) then
86  if (i == niter) then
87  write(iu6, *) 'WARNING: inner loop not fully converged!'
88  read(*,*)
89  stop 'not converging in fp_fdf_iteration'
90  end if
91  end if
92 
93  !call system('date +%s%N')
94 
95  write(*, *) 'iteration ', i, ' end'
96 
97  end do
98 !-- end of inner iteration
99 
100  if (standard_output) write(out_he, 2) i, residual
101 
102  2 format(' residual after ', i3, 'iterations = ', es10.3)
103 
104  return
105 end subroutine dp_fdf_iteration
subroutine dp_fdf_iteration(first, a, psaxis, xaxis, yaxis, nax, rax, sax)
Definition: solver.f90:1
subroutine normalize_psi(psaxis)
Definition: solver.f90:446
subroutine build_matrix(a, first)
Definition: solver.f90:208
subroutine find_axis(psaxis, xaxis, yaxis, nax, rax, sax)
Definition: solver.f90:52
subroutine gaussian_elimination(first)
Definition: solver.f90:357