13 parameter(buflen = 256)
15 type(equationparser
),
allocatable :: f(:)
16 character(len=10) :: variables(1) = [
'x']
20 TYPE (type_param
) :: code_parameters
21 character(len=BUFLEN),
allocatable :: functions(:)
22 integer :: return_status, n_functions
26 real(R8) :: rho_1(0:1000), rho_2(0:1000), rho_3(0:1000), rho_4(0:1000), dummy
29 CALL fill_param(code_parameters,
'XML/test_functions.xml',
'',
'XML/test_functions.xsd')
32 write(*,*)
'# Number of input functions = ', n_functions
34 write(*,*)
'# ', i,
' : ',trim(functions(i))
37 allocate(f(n_functions))
41 f(i) = equationparser(trim(functions(i)), variables)
67 write(*,
'(f10.5,1p,100(1x,g15.6))') x, (f(j)%evaluate([x]), j=1, n_functions)
89 type (type_param
),
intent(in) :: codeparameters
90 integer(ikind),
intent(out) :: return_status
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(:)
103 write(*,*)
'Calling euitm_xml_parse'
104 call euitm_xml_parse(code_parameters, nparm, parameter_list)
105 write(*,*)
'Called euitm_xml_parse'
109 temp_pointer => parameter_list%first
112 cname = char2str(temp_pointer%cname)
115 temp_pointer => temp_pointer%child
120 temp_pointer => temp_pointer%child
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)
131 write(*, *)
'ERROR: invalid parameter', cname
136 if (
associated(temp_pointer%sibling))
then
137 temp_pointer => temp_pointer%sibling
140 if (
associated(temp_pointer%parent, parameter_list%first )) &
142 if (
associated(temp_pointer%parent))
then
143 temp_pointer => temp_pointer%parent
145 write(*, *)
'ERROR: broken list.'
152 call destroy_xml_tree(parameter_list)
subroutine assign_code_parameters(codeparameters, return_status)