42 TYPE (type_coreprof
),
POINTER :: coreprof(:)
44 TYPE (type_param
) :: codeparameters
48 INTEGER :: neu_bnd_type
54 REAL (R8) :: coef_recycle
56 INTEGER :: return_status
58 nrho =
SIZE (coreprof(1)%rho_tor, dim=1)
62 IF (return_status /= 0)
THEN
63 WRITE(*,*)
'ERROR: Could not assign NEUTRALS settings.'
73 neutrals%NEU_BND_TYPE(1) = neu_bnd_type
80 neutrals%MION = coreprof(1)%composition%amn
120 TYPE(type_param
) :: codeparameters
121 INTEGER(ITM_I4) :: return_status
123 TYPE(tree
) :: parameter_list
124 TYPE(element
),
POINTER :: temp_pointer
125 INTEGER(ITM_I4) :: i, nparm, n_values
126 CHARACTER(len = 132) :: cname
133 WRITE(6,*)
'Calling euitm_xml_parse'
134 CALL euitm_xml_parse(codeparameters, nparm, parameter_list)
135 WRITE(6,*)
'Called euitm_xml_parse'
139 temp_pointer => parameter_list%first
142 cname = char2str(temp_pointer%cname)
148 temp_pointer => temp_pointer%child
152 case (
"boundary_conditions")
153 temp_pointer => temp_pointer%child
157 if (
allocated(temp_pointer%cvalue)) &
158 call char2num(temp_pointer%cvalue, n0_bnd)
160 if (
allocated(temp_pointer%cvalue)) &
161 call char2num(temp_pointer%cvalue, t0_bnd)
162 case (
"neu_bnd_type")
163 if (
allocated(temp_pointer%cvalue)) &
164 call char2num(temp_pointer%cvalue, neu_bnd_type)
168 case (
"coefficients")
169 temp_pointer => temp_pointer%child
172 case (
"coef_recycle")
173 if (
allocated(temp_pointer%cvalue)) &
174 call char2num(temp_pointer%cvalue, coef_recycle)
178 write(*, *)
'ERROR: invalid parameter', cname
185 if (
associated(temp_pointer%sibling))
then
186 temp_pointer => temp_pointer%sibling
189 if (
associated(temp_pointer%parent, parameter_list%first )) &
191 if (
associated(temp_pointer%parent))
then
192 temp_pointer => temp_pointer%parent
194 write(*, *)
'ERROR: broken list.'
201 CALL destroy_xml_tree(parameter_list)
subroutine assign_neutrals_parameters(codeparameters, return_status)
subroutine get_neutrals_settings(COREPROF, NEUTRALS, codeparameters)
??