ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
helena_assign_code_parameters.f90
Go to the documentation of this file.
1 subroutine helena_assign_code_parameters(code_parameters, return_status)
2 
3 !-----------------------------------------------------------------------
4 ! calls the XML parser for the code parameters and assign the
5 ! resulting values to the corresponding variables
6 !TODO: check an alternative and more elegant solution in Perl
7 !-----------------------------------------------------------------------
8 
9  use itm_types
10  use mod_dat
11  use mod_dete
12  use mod_map
13  use mod_mesh
14  use mod_meshacc
15  use mod_output
16  use mod_profiles
17 
18  use euitm_schemas
19  use euitm_xml_parser
20 
21  implicit none
22 
23  integer(itm_i4), parameter :: iu6 = 6
24 
25  type (type_param) :: code_parameters
26  integer(itm_i4), intent(out) :: return_status
27 
28  type(tree) :: parameter_list
29  type(element), pointer :: temp_pointer
30  integer(itm_i4) :: nparm, n_values
31  character(len = 132) :: cname
32 
33  nparm = 0
34  n_values = 0
35  return_status = 0 ! no error
36 
37 !-- parse xml-string code_parameters%parameters using W3C XML schema in
38 ! code_parameters%schema
39  call euitm_xml_parse(code_parameters, nparm, parameter_list)
40 
41 !-- assign variables
42 
43  temp_pointer => parameter_list%first
44 
45  outer: do
46  cname = char2str(temp_pointer%cname) ! necessary for AIX
47  select case (cname)
48  case ("parameters")
49  temp_pointer => temp_pointer%child
50  cycle
51 !-- profile_parameters
52  case ("profile_parameters")
53  temp_pointer => temp_pointer%child
54  cycle
55  case ("input_type")
56  if (allocated(temp_pointer%cvalue)) &
57  input_type = char2str(temp_pointer%cvalue)
58  case ("radial_coordinate")
59  if (allocated(temp_pointer%cvalue)) &
60  radial_coordinate = char2str(temp_pointer%cvalue)
61  case ("hbt")
62  if (allocated(temp_pointer%cvalue)) &
63  call char2num(temp_pointer%cvalue, hbt)
64  case ("current_averaging")
65  if (allocated(temp_pointer%cvalue)) &
66  current_averaging = char2str(temp_pointer%cvalue)
67 !-- shape_parameters
68  case ("shape_parameters")
69  temp_pointer => temp_pointer%child
70  cycle
71  case ("ellip")
72  if (allocated(temp_pointer%cvalue)) &
73  call char2num(temp_pointer%cvalue, ellip)
74  case ("tria")
75  if (allocated(temp_pointer%cvalue)) &
76  call char2num(temp_pointer%cvalue, tria)
77  case ("quad")
78  if (allocated(temp_pointer%cvalue)) &
79  call char2num(temp_pointer%cvalue, quad)
80  case ("par1")
81  if (allocated(temp_pointer%cvalue)) &
82  call char2num(temp_pointer%cvalue, par1)
83  case ("par2")
84  if (allocated(temp_pointer%cvalue)) &
85  call char2num(temp_pointer%cvalue, par2)
86  case ("par3")
87  if (allocated(temp_pointer%cvalue)) &
88  call char2num(temp_pointer%cvalue, par3)
89  case ("par4")
90  if (allocated(temp_pointer%cvalue)) &
91  call char2num(temp_pointer%cvalue, par4)
92  case ("isol")
93  if (allocated(temp_pointer%cvalue)) &
94  call char2num(temp_pointer%cvalue, isol)
95  case ("ias")
96  if (allocated(temp_pointer%cvalue)) &
97  call char2num(temp_pointer%cvalue, ias)
98  case ("mfm")
99  if (allocated(temp_pointer%cvalue)) &
100  call char2num(temp_pointer%cvalue, mfm)
101  case ("iarc")
102  if (allocated(temp_pointer%cvalue)) &
103  call char2num(temp_pointer%cvalue, iarc)
104  case ("imesh")
105  if (allocated(temp_pointer%cvalue)) &
106  call char2num(temp_pointer%cvalue, imesh)
107  case ("amesh")
108  if (allocated(temp_pointer%cvalue)) &
109  call char2num(temp_pointer%cvalue, amesh)
110  case ("bmesh")
111  if (allocated(temp_pointer%cvalue)) &
112  call char2num(temp_pointer%cvalue, bmesh)
113  case ("n_acc_points")
114  if (allocated(temp_pointer%cvalue)) &
115  call char2num(temp_pointer%cvalue, n_acc_points)
116  case ("s_acc")
117  if (allocated(temp_pointer%cvalue)) &
118  call scan_str2varnum(char2str(temp_pointer%cvalue), s_acc, n_values)
119  case ("sig")
120  if (allocated(temp_pointer%cvalue)) &
121  call scan_str2varnum(char2str(temp_pointer%cvalue), sig, n_values)
122  case ("weights")
123  if (allocated(temp_pointer%cvalue)) &
124  call scan_str2varnum(char2str(temp_pointer%cvalue), weights, &
125  n_values)
126  case ("equidistant")
127  if (allocated(temp_pointer%cvalue)) &
128  call char2num(temp_pointer%cvalue, equidistant)
129 !-- global_parameters
130  case ("global_parameters")
131  temp_pointer => temp_pointer%child
132  cycle
133  case ("match")
134  if (allocated(temp_pointer%cvalue)) &
135  match = char2str(temp_pointer%cvalue)
136  case ("eps")
137  if (allocated(temp_pointer%cvalue)) &
138  call char2num(temp_pointer%cvalue, eps)
139  case ("alfa")
140  if (allocated(temp_pointer%cvalue)) &
141  call char2num(temp_pointer%cvalue, alfa)
142  case ("B")
143  if (allocated(temp_pointer%cvalue)) &
144  call char2num(temp_pointer%cvalue, b)
145  case ("Ip")
146  if (allocated(temp_pointer%cvalue)) &
147  call char2num(temp_pointer%cvalue, ip)
148  case ("q95")
149  if (allocated(temp_pointer%cvalue)) &
150  call char2num(temp_pointer%cvalue, q95)
151  case ("betap")
152  if (allocated(temp_pointer%cvalue)) &
153  call char2num(temp_pointer%cvalue, betap)
154  case ("W_MHD")
155  if (allocated(temp_pointer%cvalue)) &
156  call char2num(temp_pointer%cvalue, wmhd)
157  case ("rvac")
158  if (allocated(temp_pointer%cvalue)) &
159  call char2num(temp_pointer%cvalue, rvac)
160  case ("bvac")
161  if (allocated(temp_pointer%cvalue)) &
162  call char2num(temp_pointer%cvalue, bvac)
163  case ("zeff")
164  if (allocated(temp_pointer%cvalue)) &
165  call char2num(temp_pointer%cvalue, zeff)
166  case ("zn0")
167  if (allocated(temp_pointer%cvalue)) &
168  call char2num(temp_pointer%cvalue, zn0)
169  case ("rpe")
170  if (allocated(temp_pointer%cvalue)) &
171  call char2num(temp_pointer%cvalue, rpe)
172  case ("etaei")
173  if (allocated(temp_pointer%cvalue)) &
174  call char2num(temp_pointer%cvalue, etaei)
175  case ("ne")
176  temp_pointer => temp_pointer%child
177  if (allocated(temp_pointer%cvalue)) &
178  call char2num(temp_pointer%cvalue, ne%shape)
179  temp_pointer => temp_pointer%sibling
180  if (allocated(temp_pointer%cvalue)) &
181  call char2num(temp_pointer%cvalue, ne%h)
182  temp_pointer => temp_pointer%sibling
183  if (allocated(temp_pointer%cvalue)) &
184  call char2num(temp_pointer%cvalue, ne%h_0)
185  temp_pointer => temp_pointer%sibling
186  if (allocated(temp_pointer%cvalue)) &
187  call char2num(temp_pointer%cvalue, ne%slope)
188  temp_pointer => temp_pointer%sibling
189  if (allocated(temp_pointer%cvalue)) &
190  call char2num(temp_pointer%cvalue, ne%psi_m)
191  temp_pointer => temp_pointer%sibling
192  if (allocated(temp_pointer%cvalue)) &
193  call char2num(temp_pointer%cvalue, ne%delta)
194  temp_pointer => temp_pointer%sibling
195  if (allocated(temp_pointer%cvalue)) &
196  call char2num(temp_pointer%cvalue, ne%psi_0)
197  temp_pointer => temp_pointer%sibling
198  if (allocated(temp_pointer%cvalue)) &
199  call scan_str2num(char2str(temp_pointer%cvalue), ne%alpha, n_values)
200  case ("te")
201  temp_pointer => temp_pointer%child
202  if (allocated(temp_pointer%cvalue)) &
203  call char2num(temp_pointer%cvalue, te%shape)
204  temp_pointer => temp_pointer%sibling
205  if (allocated(temp_pointer%cvalue)) &
206  call char2num(temp_pointer%cvalue, te%h)
207  temp_pointer => temp_pointer%sibling
208  if (allocated(temp_pointer%cvalue)) &
209  call char2num(temp_pointer%cvalue, te%h_0)
210  temp_pointer => temp_pointer%sibling
211  if (allocated(temp_pointer%cvalue)) &
212  call char2num(temp_pointer%cvalue, te%slope)
213  temp_pointer => temp_pointer%sibling
214  if (allocated(temp_pointer%cvalue)) &
215  call char2num(temp_pointer%cvalue, te%psi_m)
216  temp_pointer => temp_pointer%sibling
217  if (allocated(temp_pointer%cvalue)) &
218  call char2num(temp_pointer%cvalue, te%delta)
219  temp_pointer => temp_pointer%sibling
220  if (allocated(temp_pointer%cvalue)) &
221  call char2num(temp_pointer%cvalue, te%psi_0)
222  temp_pointer => temp_pointer%sibling
223  if (allocated(temp_pointer%cvalue)) &
224  call scan_str2num(char2str(temp_pointer%cvalue), te%alpha, n_values)
225  case ("cpsurfin")
226  if (allocated(temp_pointer%cvalue)) &
227  call char2num(temp_pointer%cvalue, cpsurfin)
228 !-- numerical_parameters
229  case ("numerical_parameters")
230  temp_pointer => temp_pointer%child
231  cycle
232  case ("nr")
233  if (allocated(temp_pointer%cvalue)) &
234  call char2num(temp_pointer%cvalue, nr)
235  case ("np")
236  if (allocated(temp_pointer%cvalue)) &
237  call char2num(temp_pointer%cvalue, np)
238  case ("nrmap")
239  if (allocated(temp_pointer%cvalue)) &
240  call char2num(temp_pointer%cvalue, nrmap)
241  case ("npmap")
242  if (allocated(temp_pointer%cvalue)) &
243  call char2num(temp_pointer%cvalue, npmap)
244  case ("nchi")
245  if (allocated(temp_pointer%cvalue)) &
246  call char2num(temp_pointer%cvalue, nchi)
247  case ("niter")
248  if (allocated(temp_pointer%cvalue)) &
249  call char2num(temp_pointer%cvalue, niter)
250  case ("nmesh")
251  if (allocated(temp_pointer%cvalue)) &
252  call char2num(temp_pointer%cvalue, nmesh)
253  case ("nouter")
254  if (allocated(temp_pointer%cvalue)) &
255  call char2num(temp_pointer%cvalue, nouter)
256  case ("amix")
257  if (allocated(temp_pointer%cvalue)) &
258  call char2num(temp_pointer%cvalue, amix)
259  case ("errit")
260  if (allocated(temp_pointer%cvalue)) &
261  call char2num(temp_pointer%cvalue, errit)
262  case ("errcur")
263  if (allocated(temp_pointer%cvalue)) &
264  call char2num(temp_pointer%cvalue, errcur)
265  case ("nbb")
266  if (allocated(temp_pointer%cvalue)) &
267  call char2num(temp_pointer%cvalue, nbb)
268  case ("abb")
269  if (allocated(temp_pointer%cvalue)) &
270  call char2num(temp_pointer%cvalue, abb)
271  case ("bbb")
272  if (allocated(temp_pointer%cvalue)) &
273  call char2num(temp_pointer%cvalue, bbb)
274  case ("ampl")
275  if (allocated(temp_pointer%cvalue)) &
276  call char2num(temp_pointer%cvalue, ampl)
277 !-- diagnostics_parameters
278  case ("diagnostics_parameters")
279  temp_pointer => temp_pointer%child
280  cycle
281  case ("verbosity")
282  if (allocated(temp_pointer%cvalue)) &
283  call char2num(temp_pointer%cvalue, verbosity)
284  case ("output")
285  if (allocated(temp_pointer%cvalue)) &
286  output = char2str(temp_pointer%cvalue)
287  case ("diagnostics_on")
288  if (allocated(temp_pointer%cvalue)) &
289  call char2num(temp_pointer%cvalue, diagnostics_on)
290  case ("standard_output")
291  if (allocated(temp_pointer%cvalue)) &
292  call char2num(temp_pointer%cvalue, standard_output)
293  case ("elite_output")
294  if (allocated(temp_pointer%cvalue)) &
295  call char2num(temp_pointer%cvalue, elite_output)
296  case ("profiles_output")
297  if (allocated(temp_pointer%cvalue)) &
298  call char2num(temp_pointer%cvalue, profiles_output)
299  case ("additional_output")
300  if (allocated(temp_pointer%cvalue)) &
301  call char2num(temp_pointer%cvalue, additional_output)
302  case ("xmgrace_output")
303  if (allocated(temp_pointer%cvalue)) &
304  call char2num(temp_pointer%cvalue, xmgrace_output)
305  case ("eqdsk_file")
306  if (allocated(temp_pointer%cvalue)) &
307  call char2num(temp_pointer%cvalue, eqdsk_file)
308  case ("vec_file")
309  if (allocated(temp_pointer%cvalue)) &
310  call char2num(temp_pointer%cvalue, vec_file)
311  case ("edgelabe")
312  if (allocated(temp_pointer%cvalue)) &
313  call char2num(temp_pointer%cvalue, edgelabe)
314  case default
315  if (verbosity > 0) &
316  write(iu6, *) 'ERROR: invalid parameter', cname
317  return_status = 1
318  exit
319  end select
320  do
321  if (associated(temp_pointer%sibling)) then
322  temp_pointer => temp_pointer%sibling
323  exit
324  end if
325  if (associated(temp_pointer%parent, parameter_list%first )) &
326  exit outer
327  if (associated(temp_pointer%parent)) then
328  temp_pointer => temp_pointer%parent
329  else
330  if (verbosity > 0) write(iu6, *) 'ERROR: broken list.'
331  return
332  end if
333  end do
334  end do outer
335 
336 !-- destroy tree
337  call destroy_xml_tree(parameter_list)
338 
339  return
340 
341 end subroutine helena_assign_code_parameters
subroutine helena_assign_code_parameters(code_parameters, return_status)
subroutine output(NGRID, betpol, zli3)
Definition: Eq2_m.f:1