25 TYPE (type_equilibrium
),
POINTER :: equilibrium(:)
26 TYPE (type_coreprof
),
POINTER :: coreprof(:)
29 TYPE (type_param
) :: code_parameters
30 INTEGER :: return_status
33 LOGICAL :: active_mode
34 LOGICAL :: update_profiles
42 update_profiles = .false.
48 update_quantities_from_equilibrium:
IF (active_mode)
THEN
49 nrho =
SIZE(coreprof(1)%rho_tor)
50 npsi =
SIZE(equilibrium(1)%profiles_1d%psi)
53 coreprof(1)%rho_tor = coreprof(1)%rho_tor_norm * equilibrium(1)%profiles_1d%rho_tor(npsi)
56 ip_star = equilibrium(1)%global_param%i_plasma * (1.0_r8 + &
57 (coreprof(1)%psi%value(nrho)-equilibrium(1)%profiles_1d%psi(npsi)) / &
58 (equilibrium(1)%profiles_1d%psi(1)-equilibrium(1)%profiles_1d%psi(npsi)))
61 CALL
l3interp(equilibrium(1)%profiles_1d%psi, equilibrium(1)%profiles_1d%rho_tor, npsi, &
62 coreprof(1)%psi%value, coreprof(1)%rho_tor, nrho)
64 update_other_profiles:
IF (update_profiles)
THEN
66 CALL
l3interp(equilibrium(1)%profiles_1d%q, equilibrium(1)%profiles_1d%rho_tor, npsi, &
67 coreprof(1)%profiles1d%q%value, coreprof(1)%rho_tor, nrho)
69 CALL
l3interp(equilibrium(1)%profiles_1d%jparallel, equilibrium(1)%profiles_1d%rho_tor, npsi, &
70 coreprof(1)%profiles1d%jtot%value, coreprof(1)%rho_tor, nrho)
72 coreprof(1)%globalparam%current_tot = ip_star
73 coreprof(1)%globalparam%current_bnd = ip_star
76 END IF update_other_profiles
78 update_boundary_conditions_fixed_psi:
IF (bc_type.EQ.1)
THEN
79 coreprof(1)%psi%boundary%type = 1
80 coreprof(1)%psi%boundary%value(1) = equilibrium(1)%profiles_1d%psi(npsi)
81 coreprof(1)%psi%boundary%value(2) = 0.0_r8
82 coreprof(1)%psi%boundary%value(3) = 0.0_r8
84 END IF update_boundary_conditions_fixed_psi
86 update_boundary_conditions_total_current:
IF (bc_type.EQ.2)
THEN
87 coreprof(1)%psi%boundary%type = 2
88 coreprof(1)%psi%boundary%value(1) = ip_star
89 coreprof(1)%psi%boundary%value(2) = 0.0_r8
90 coreprof(1)%psi%boundary%value(3) = 0.0_r8
91 END IF update_boundary_conditions_total_current
93 update_boundary_conditions_loop_voltage:
IF (bc_type.EQ.3)
THEN
94 WRITE(*,*)
"NOT ACTIVE PLACE HOLDER"
95 END IF update_boundary_conditions_loop_voltage
97 update_boundary_conditions_generic:
IF (bc_type.EQ.4)
THEN
98 WRITE(*,*)
"NOT ACTIVE PLACE HOLDER"
99 END IF update_boundary_conditions_generic
101 END IF update_quantities_from_equilibrium
133 TYPE(type_param
) :: codeparameters
134 INTEGER(ITM_I4) :: return_status
136 CHARACTER(len = 132) :: parameter_name
137 CHARACTER(len = 132) :: parameter_value
138 TYPE(element
),
POINTER :: temp_pointer
139 TYPE(tree
) :: parameter_list
140 INTEGER(ITM_I4) :: nparam
146 CALL euitm_xml_parse(codeparameters, nparam, parameter_list)
149 parameter_name =
'parameters/ACTIVE/ACTIVE_MODE'
150 temp_pointer => parameter_list%first
151 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
152 IF (len(trim(parameter_value)).GT.0)
THEN
158 parameter_name =
'parameters/ACTIVE/IMPORT_PROFILES/IMPORT'
159 temp_pointer => parameter_list%first
160 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
161 IF (len(trim(parameter_value)).GE.3) &
162 CALL char2bool(str2char(parameter_value), update_profiles)
166 parameter_name =
'parameters/ACTIVE/IMPORT_BOUNDARY_CONDITIONS/YES/CHOOSE_BC_TYPE/fixed_PSI/BC_psi'
167 temp_pointer => parameter_list%first
168 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
169 IF (len(trim(parameter_value)).GT.0)
THEN
174 parameter_name =
'parameters/ACTIVE/IMPORT_BOUNDARY_CONDITIONS/YES/CHOOSE_BC_TYPE/Total_Current/BC_current'
175 temp_pointer => parameter_list%first
176 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
177 IF (len(trim(parameter_value)).GT.0)
THEN
182 parameter_name =
'parameters/ACTIVE/IMPORT_BOUNDARY_CONDITIONS/YES/CHOOSE_BC_TYPE/Loop_Voltage/BC_voltage'
183 temp_pointer => parameter_list%first
184 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
185 IF (len(trim(parameter_value)).GT.0)
THEN
190 parameter_name =
'parameters/ACTIVE/IMPORT_BOUNDARY_CONDITIONS/YES/CHOOSE_BC_TYPE/Generic/BC_generic'
191 temp_pointer => parameter_list%first
192 CALL find_parameter(parameter_name, parameter_value, temp_pointer)
193 IF (len(trim(parameter_value)).GT.0)
THEN
subroutine assign_code_parameters(codeparameters, return_status)
subroutine equilibrium2coreprof(EQUILIBRIUM, COREPROF, code_parameters)
subroutine l3interp(y_in, x_in, nr_in, y_out, x_out, nr_out)