ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
assign_equil_parameters.f90
Go to the documentation of this file.
1 subroutine assign_equil_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 !-----------------------------------------------------------------------
7 
8  USE bdseq_coeff
9 
10  use euitm_schemas
11  use euitm_xml_parser
12 
13  implicit none
14 
15  type (type_param), intent(in) :: code_parameters
16  integer(itm_i4), intent(out) :: return_status
17 
18  type(tree) :: parameter_list
19  type(element), pointer :: temp_pointer
20  integer(itm_i4) :: i, nparm, n_values
21  character(len = 132) :: cname
22 
23 !... initialisations
24 
25  nparm = 0
26  n_values = 0
27  return_status = 0 ! no error
28 
29 !-- parse xml-string code_parameters%parameters using W3C XML schema in
30 ! code_parameters%schema
31 
32  call euitm_xml_parse(code_parameters, nparm, parameter_list)
33 
34 !-- assign variables
35 
36  temp_pointer => parameter_list%first
37 
38  outer: do
39  cname = char2str(temp_pointer%cname) ! necessary for AIX
40  select case (cname)
41 !-- parameters overall
42  case ("parameters")
43  temp_pointer => temp_pointer%child
44  cycle
45 !-- parameter classes
46 !-- individual parameters
47  case ("symmetry_coords")
48  if (allocated(temp_pointer%cvalue)) &
49  call char2num(temp_pointer%cvalue, symmetry_coords)
50  case ("write_cpos")
51  if (allocated(temp_pointer%cvalue)) &
52  call char2num(temp_pointer%cvalue, write_cpos)
53  case ("write_diags")
54  if (allocated(temp_pointer%cvalue)) &
55  call char2num(temp_pointer%cvalue, write_diags)
56  case ("nr_eq")
57  if (allocated(temp_pointer%cvalue)) &
58  call char2num(temp_pointer%cvalue, nr_eq)
59  case ("neta_eq")
60  if (allocated(temp_pointer%cvalue)) &
61  call char2num(temp_pointer%cvalue, neta_eq)
62  case default
63  write(*, *) 'ERROR: invalid parameter', cname
64  return_status = 1
65  exit
66  end select
67  do
68  if (associated(temp_pointer%sibling)) then
69  temp_pointer => temp_pointer%sibling
70  exit
71  end if
72  if (associated(temp_pointer%parent, parameter_list%first )) &
73  exit outer
74  if (associated(temp_pointer%parent)) then
75  temp_pointer => temp_pointer%parent
76  else
77  write(*, *) 'ERROR: broken list.'
78  return
79  end if
80  end do
81  end do outer
82 
83 !-- destroy tree
84  call destroy_xml_tree(parameter_list)
85 
86  return
87 
88 end subroutine assign_equil_parameters
subroutine assign_equil_parameters(code_parameters, return_status)