ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
test_functions.F90
Go to the documentation of this file.
2 
3  USE itm_constants
4  USE euitm_schemas
5  USE xml_file_reader
6  use euitm_xml_parser
7  use fortranparser, only : equationparser
8 
9  implicit none
10 
11 ! Size of input buffer.
12  integer :: buflen
13  parameter(buflen = 256)
14 
15  type(equationparser), allocatable :: f(:)
16  character(len=10) :: variables(1) = ['x']
17  double precision :: x ! Variable x value.
18  integer :: i, j
19 
20  TYPE (type_param) :: code_parameters
21  character(len=BUFLEN), allocatable :: functions(:)
22  integer :: return_status, n_functions
23 
24  integer :: iion
25 
26  real(R8) :: rho_1(0:1000), rho_2(0:1000), rho_3(0:1000), rho_4(0:1000), dummy
27 
28 
29  CALL fill_param(code_parameters, 'XML/test_functions.xml', '', 'XML/test_functions.xsd')
30  call assign_code_parameters(code_parameters, return_status)
31 
32  write(*,*) '# Number of input functions = ', n_functions
33  do i=1, n_functions
34  write(*,*) '# ', i,' : ',trim(functions(i))
35  enddo
36 
37  allocate(f(n_functions))
38 
39  do i=1, n_functions
40 ! f(i) = evaluator_create (trim(functions(i)) // C_NULL_CHAR)
41  f(i) = equationparser(trim(functions(i)), variables)
42 ! if (.not.c_associated(f(i))) stop
43  enddo
44 
45  ! do i=0,1000
46  ! x=1.0d0/1000*i
47  ! rho_1(i) = x
48  ! rho_2(i) = evaluator_evaluate_x (f(1), x)
49  ! enddo
50  ! rho_3(0)=0
51  ! do i=1,1000
52  ! call cubint(1001, rho_1, rho_2, 1, i+1, rho_3(i), dummy)
53  ! enddo
54  ! rho_3=rho_3/rho_3(1000)
55  ! call l3interp(rho_1, rho_3, 1001, rho_4, rho_1, 1001)
56  ! do i=0,1000
57  ! write(*,'(4(f15.6))') rho_1(i), rho_2(i), rho_3(i), rho_4(i)
58  ! enddo
59 
60  ! stop
61 
62 
63 ! Calculate and print values of function for given value of x.
64  do i=0,100
65  x=1.0d0/100*i
66 ! write(*,'(f10.5,1p,100(1x,g15.6))') x, (evaluator_evaluate_x (f(j), x), j=1, n_functions)
67  write(*,'(f10.5,1p,100(1x,g15.6))') x, (f(j)%evaluate([x]), j=1, n_functions)
68  enddo
69 
70 ! Destroy evaluators.
71 ! do i=1, n_functions
72 ! call evaluator_destroy (f(i))
73 ! enddo
74 
75 contains
76 
77  subroutine assign_code_parameters(codeparameters, return_status)
78 
79  !-----------------------------------------------------------------------
80  ! calls the XML parser for the code parameters and assign the
81  ! resulting values to the corresponding variables
82  !TODO: check an alternative and more elegant solution in Perl
83  !-----------------------------------------------------------------------
84 
85  use mod_f90_kind
86 
87  implicit none
88 
89  type (type_param), intent(in) :: codeparameters
90  integer(ikind), intent(out) :: return_status
91 
92  type(tree) :: parameter_list
93  type(element), pointer :: temp_pointer
94  integer(ikind) :: i, nparm, n_values
95  character(len = 132) :: cname
96  character (len=256) :: tmp_functions(100)
97  character (len=256), allocatable :: tmp_string(:)
98 
99  return_status = 0 ! no error
100 
101  !-- parse xml-string codeparameters%parameters
102 
103  write(*,*) 'Calling euitm_xml_parse'
104  call euitm_xml_parse(code_parameters, nparm, parameter_list)
105  write(*,*) 'Called euitm_xml_parse'
106 
107  !-- assign variables
108 
109  temp_pointer => parameter_list%first
110 
111  outer: do
112  cname = char2str(temp_pointer%cname) ! necessary for AIX
113  select case (cname)
114  case ("parameters")
115  temp_pointer => temp_pointer%child
116  cycle
117 
118 !-- input parameters
119  case ("input")
120  temp_pointer => temp_pointer%child
121  cycle
122  case ("functions")
123  if (allocated(temp_pointer%cvalue)) then
124  call scan_str2str(char2str(temp_pointer%cvalue), 256, tmp_functions, n_functions)
125  allocate(functions(n_functions))
126  functions=tmp_functions(1:n_functions)
127  endif
128 
129 !-- default
130  case default
131  write(*, *) 'ERROR: invalid parameter', cname
132  return_status = 1
133  exit
134  end select
135  do
136  if (associated(temp_pointer%sibling)) then
137  temp_pointer => temp_pointer%sibling
138  exit
139  end if
140  if (associated(temp_pointer%parent, parameter_list%first )) &
141  exit outer
142  if (associated(temp_pointer%parent)) then
143  temp_pointer => temp_pointer%parent
144  else
145  write(*, *) 'ERROR: broken list.'
146  return
147  end if
148  end do
149  end do outer
150 
151  !-- destroy tree
152  call destroy_xml_tree(parameter_list)
153 
154  return
155 
156  end subroutine assign_code_parameters
157 
158 
159 end program test_functions
subroutine assign_code_parameters(codeparameters, return_status)
Definition: emeq.f90:671
program test_functions