ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
wrapper_ual.f90
Go to the documentation of this file.
2 !----------------------------------------------------------------------------
3 ! This wrapper calls the HELENA fixed boundary equilibrium code as a
4 ! subroutine.
5 !----------------------------------------------------------------------------
6 
7  use itm_types
8  use mod_parameter
9  use mod_corners
10  use mod_dat
11  use mod_dete
12  use mod_gauss
13  use mod_map
14  use mod_mesh
15  use mod_meshacc
16  use mod_output
17  use mod_profiles
18  use mod_helena_io
19  use deallocate_structures
20  use copy_structures
21  use is_set_structures
22  use size_of_structures
23  use euitm_schemas
24  use euitm_routines
25  use euitm_xml_parser
26  use xml_file_reader
27 
29 
30  implicit none
31 
32 !-- interface definitions for actors
33 
34  interface
35  subroutine helena(equilibrium_in, equilibrium_out, path, code_parameters)
36  use euitm_schemas
37  use euitm_xml_parser
38  type (type_equilibrium), pointer :: equilibrium_in(:)
39  type (type_equilibrium), pointer :: equilibrium_out(:)
40  character(len = 132), optional :: path
41  type (type_param) :: code_parameters
42  end subroutine helena
43 
44  subroutine progen(equilibrium_in, equilibrium_out, active, path, &
45  path_tag, code_parameters)
46  use euitm_schemas
47  use euitm_xml_parser
48  use itm_types
49  type (type_equilibrium), pointer :: equilibrium_in(:)
50  type (type_equilibrium), pointer :: equilibrium_out(:)
51  integer(itm_i4), intent(in) :: active
52  character(len = 132), optional :: path
53  character(len = 132), optional :: path_tag
54  type (type_param) :: code_parameters
55  end subroutine progen
56  end interface
57 
58 !-- variable definitions
59 
60  type (type_equilibrium), pointer :: equilibrium_in(:)
61  type (type_equilibrium), pointer :: equilibrium_out(:)
62  integer(itm_i4) :: active = 1 ! progen always active in wrapper
63  character(len = 132) :: filename_progen_xml
64  character(len = 132) :: filename_helena_xml
65  character(len = 132) :: path, path_tag
66  type (type_param) :: code_parameters
67 
68  integer(itm_i4) :: i
69  integer(itm_i8) :: total_size = 0
70  logical, parameter :: human_readable = .true.
71 
72 !-- UAL variables
73  integer(itm_i4) :: idxout, shot, runout, refshot, refrun
74  character(len = 5) :: treename
75 
76  integer(itm_i4) :: iargc
77 
78 !-- define default behaviour without input arguments
79  path = './' ! run locally
80  filename_progen_xml = 'progen.xml'
81  filename_helena_xml = 'helena.xml'
82 
83  path_tag = ''
84  if (iargc() >= 2) then
85  call getarg(1, filename_progen_xml)
86  call getarg(2, filename_helena_xml)
87  if (iargc() >= 3) then
88  call getarg(3, path)
89  end if
90  if (index(filename_helena_xml, 'helena') /= -1) then
91  path_tag = filename_helena_xml(index(filename_helena_xml, 'helena') &
92  + 6 : index(filename_helena_xml, '.xml') - 1)
93  end if
94  end if
95 
96 !-- define shot
97  shot = 9
98  runout = 1
99  refshot = 0 ! Dummy, not used
100  refrun =0 ! Dummy, not used
101  treename = 'euitm' ! Mandatory, do not change
102 
103 !-- allocate empty input CPO
104  allocate(equilibrium_in(1))
105 
106 !-- read PROGEN schema and input
107  call fill_param(code_parameters, trim(adjustl(path)) &
108  // trim(adjustl(filename_progen_xml)), '', trim(adjustl(path)) &
109  // 'progen.xsd')
110 !-- profiles and shape generation: PROGEN
111  call progen(equilibrium_in = equilibrium_in, &
112  equilibrium_out = equilibrium_out, active = active, path = path, &
113  path_tag = path_tag, code_parameters = code_parameters)
114 
115 !-- destroy equilibrium_in
116  call set_deallocate_verbosity(1) ! verbose output
117  do i = 1, size(equilibrium_in)
118  call deallocate_cpo(equilibrium_in(i))
119  end do
120  deallocate(equilibrium_in)
121 
122 !-- test which fields have been set
123  call is_set_cpo(equilibrium_out(1), 'equilibrium_out')
124 
125 !-- allocate equilibrium_in
126  allocate(equilibrium_in(size(equilibrium_out)))
127 
128 !-- copy equilibrium_out to equilibrium_in
129  call set_copy_verbosity(1) ! verbose output
130  do i = 1, size(equilibrium_out)
131  call copy_cpo(equilibrium_out(i), equilibrium_in(i))
132  end do
133 
134 !-- destroy equilibrium_out
135  do i = 1, size(equilibrium_out)
136  call deallocate_cpo(equilibrium_out(i))
137  end do
138  deallocate(equilibrium_out)
139 
140 !-- read HELENA schema and input
141  call fill_param(code_parameters, trim(adjustl(path)) &
142  // trim(adjustl(filename_helena_xml)), '', trim(adjustl(path)) &
143  // 'helena.xsd')
144 
145 !-- set path to output path
146  if (path_tag /= '') then
147  path = trim(adjustl(path)) // 'helena' // trim(adjustl(path_tag)) // '/'
148  write(iu6, *) 'HELENA output redirected to ', trim(adjustl(path))
149  end if
150 
151 !-- solve equilibrium: HELENA
152  call helena(equilibrium_in = equilibrium_in, &
153  equilibrium_out = equilibrium_out, path = path, &
154  code_parameters = code_parameters)
155 
156 !-- test which fields have been set
157  call is_set_cpo(equilibrium_out(1), 'equilibrium_out')
158 
159 !-- display size of output CPO
160  call set_size_of_verbosity(0)
161  call set_size_of_maxlevel(1)
162 ! call size_of_cpo(equilibrium_out(1), total_size, &
163 ! human_readable, 'equilibrium_out')
164 
165 !-- UAL output
166  write(*, *) 'Creating output run :'
167 !-- This is the UAL function that creates a shot in the ITM MDS+ tree
168  call euitm_create(treename, shot, runout, refshot, refrun, idxout)
169 
170  write(*, *) 'Put result'
171  call euitm_put(idxout, "equilibrium", equilibrium_out)
172 
173  write(*, *) 'Closing Database :'
174  call euitm_close(idxout)
175 
176 !-- output of HELENA equilibrium for ILSA
177  call write_equilibrium(path, equilibrium_out(1))
178 
179 !-- deallocate equilibrium CPOs
180  call set_deallocate_verbosity(0) ! non-verbose output
181  do i = 1, size(equilibrium_in)
182  call deallocate_cpo(equilibrium_in(i))
183  end do
184  deallocate(equilibrium_in)
185  do i = 1, size(equilibrium_out)
186  call deallocate_cpo(equilibrium_out(i))
187  end do
188  deallocate(equilibrium_out)
189 
190  stop 'finished wrapper'
191 
192 end program wrapper_helena
subroutine helena(equilibrium_in, equilibrium_out, in_path, code_parameters)
Definition: helena.f90:1
subroutine write_equilibrium(path, equilibrium_out)
program wrapper_helena
subroutine, public equilibrium_destructor(equilibrium)
subroutine euitm_close(idx)