ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
assign_turb_parameters.f90
Go to the documentation of this file.
1 subroutine assign_etaigb_parameters(codeparameters, 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 etaigb_coeff
9 
10  use euitm_schemas
11  use euitm_xml_parser
12 
13  implicit none
14 
15  type (type_param), intent(in) :: codeparameters
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  return_status = 0 ! no error
24 
25 !-- parse xml-string codeparameters%parameters
26 
27  call euitm_xml_parse(codeparameters, nparm, parameter_list)
28 
29 !-- assign variables
30 
31  temp_pointer => parameter_list%first
32 
33  outer: do
34  cname = char2str(temp_pointer%cname) ! necessary for AIX
35  select case (cname)
36 !-- parameters overall
37  case ("parameters")
38  temp_pointer => temp_pointer%child
39  cycle
40 !-- parameter classes
41  case ("physical")
42  temp_pointer => temp_pointer%child
43  cycle
44  case ("grid")
45  temp_pointer => temp_pointer%child
46  cycle
47 !-- individual parameters
48  case ("thresh")
49  if (allocated(temp_pointer%cvalue)) &
50  call char2num(temp_pointer%cvalue, thresh)
51  case ("tfloor")
52  if (allocated(temp_pointer%cvalue)) &
53  call char2num(temp_pointer%cvalue, tfloor)
54  case ("beta_reduction")
55  if (allocated(temp_pointer%cvalue)) &
56  call char2num(temp_pointer%cvalue, beta_reduction)
57  case ("etae_pinch")
58  if (allocated(temp_pointer%cvalue)) &
59  call char2num(temp_pointer%cvalue, etae_pinch)
60  case ("chi_d")
61  if (allocated(temp_pointer%cvalue)) &
62  call char2num(temp_pointer%cvalue, chi_d)
63  case ("nrho_transp")
64  if (allocated(temp_pointer%cvalue)) &
65  call char2num(temp_pointer%cvalue, nrho_transp)
66  case ("nion")
67  if (allocated(temp_pointer%cvalue)) &
68  call char2num(temp_pointer%cvalue, nion)
69  case default
70  write(*, *) 'ERROR: invalid parameter', cname
71  return_status = 1
72  exit
73  end select
74  do
75  if (associated(temp_pointer%sibling)) then
76  temp_pointer => temp_pointer%sibling
77  exit
78  end if
79  if (associated(temp_pointer%parent, parameter_list%first )) &
80  exit outer
81  if (associated(temp_pointer%parent)) then
82  temp_pointer => temp_pointer%parent
83  else
84  write(*, *) 'ERROR: broken list.'
85  return
86  end if
87  end do
88  end do outer
89 
90 !-- destroy tree
91  call destroy_xml_tree(parameter_list)
92 
93  return
94 
95 end subroutine assign_etaigb_parameters
subroutine assign_etaigb_parameters(codeparameters, return_status)