ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
write_parameters.f90
Go to the documentation of this file.
1 subroutine write_parameters
2 !-----------------------------------------------------------------------
3 ! subroutine to write the output to unit 20
4 !-----------------------------------------------------------------------
5 
6  use itm_types
7  use mod_dat
8  use mod_map
9  use mod_mesh
10  use mod_output
11  use mod_profiles
12  use mod_helena_io, only : out_he
13 
14  implicit none
15 
16  write(out_he, *) '*****************************************'
17  write(out_he, 10)
18  write(out_he, *) '*****************************************'
19  write(out_he, *) '* HELENA *'
20  write(out_he, *) '*****************************************'
21 
22  write(out_he, *)
23  write(out_he, *)
24  write(out_he, 20) ellip, tria, quad
25  write(out_he, 21) mharm, isol, ias
26  write(out_he, *)
27  write(out_he, 30) hbt
28  write(out_he, 31) input_type
29  write(out_he, 32) radial_coordinate
30  if (trim(input_type) == "p' and j_tor" &
31  .or. trim(input_type) == "p and j_tor" &
32  .or. trim(input_type) == "p' and q") then
33  write(out_he,36) current_averaging
34  end if
35  write(out_he, *)
36  write(out_he, 40) eps, alfa, b
37  write(out_he, 41) ip, betap
38  write(out_he, *)
39  write(out_he, 50) nr, np, nrmap, npmap, nchi, niter
40  write(out_he, *)
41  if (trim(input_type) == "p' and j_tor" &
42  .or. trim(input_type) == "p and j_tor" &
43  .or. trim(input_type) == "p' and q") then
44  write(out_he, 51) nmesh, npts, errcur
45  end if
46  write(out_he, *)
47  write(out_he, *)
48 
49  10 format(' * helena : grad-shafranov equilibrium *')
50  20 format(' $shape ellip =', e16.8, ', tria =', e16.8, ', quad =', &
51  e16.8)
52  21 format(' mharm =', i3, ', isol =', i2, ', ias = ', i2)
53  30 format(' $profile hbt =', l7, ',')
54  31 format(' input_type = ', a12, ',')
55  32 format(' radial_coordinate = ', a6, ',')
56  36 format(' averaging type: current_averaging = ', a6)
57  40 format(' $phys eps =', e16.8, ', alfa =', e16.8, &
58  ', b =', e16.8, ',')
59  41 format(' Ip =', e16.8, ', betap = ', e16.8)
60  50 format(' $num nr =', i3, ', np =', i3, ', nrmap =', i3, &
61  ', npmap =', i3, ', nchi = ', i3, ', niter = ', i3)
62  51 format(' nmesh =', i3, ', npts =', i4, ', errcur =', e16.8)
63 
64  return
65 end subroutine write_parameters
66 
subroutine write_parameters