21 (prof_flag, j0_flag, q0_flag, ext_equil, &
22 coreprof_in, equilibrium_in, toroidfield_in, coreprof_out, equilibrium_out)
53 USE deallocate_structures
74 TYPE (type_equilibrium
),
POINTER :: equilibrium_in(:)
75 TYPE (type_equilibrium
),
POINTER :: equilibrium_out(:)
76 TYPE (type_toroidfield
),
POINTER :: toroidfield_in(:)
77 TYPE (type_coreprof
),
POINTER :: coreprof_in(:)
78 TYPE (type_coreprof
),
POINTER :: coreprof_iter(:)
79 TYPE (type_coreprof
),
POINTER :: coreprof_out(:)
80 TYPE (type_coreprof
),
POINTER :: coreprof_new(:)
84 INTEGER :: prof_flag, flag
92 REAL (R8) :: err_psi, err_q , err_jpar
100 coreprof_in(1)%rho_tor = coreprof_in(1)%rho_tor &
101 / coreprof_in(1)%rho_tor(
SIZE(coreprof_in(1)%rho_tor, dim=1)) &
102 * equilibrium_in(1)%profiles_1d%rho_tor(
SIZE (equilibrium_in(1)%profiles_1d%psi, dim=1))
105 ALLOCATE (coreprof_iter(1))
106 ALLOCATE (coreprof_new(1))
107 CALL copy_cpo(coreprof_in(1), coreprof_iter(1))
108 CALL copy_cpo(coreprof_in(1), coreprof_new(1))
113 coreprof_out, equilibrium_out)
118 7 CALL
equil_input(coreprof_out, toroidfield_in, equilibrium_out, equilibrium_in)
123 IF (ext_equil.EQ.1)
THEN
125 ELSE IF(ext_equil.EQ.2)
THEN
127 ELSE IF(ext_equil.EQ.3)
THEN
129 CALL deallocate_cpo(equilibrium_out)
132 WRITE(*,*)
'No HELENA available at compile time'
135 ELSE IF (ext_equil.EQ.4)
THEN
137 CALL deallocate_cpo(equilibrium_out)
140 WRITE(*,*)
'No CHEASE available at compile time'
146 coreprof_out(1)%rho_tor = coreprof_out(1)%rho_tor &
147 / coreprof_out(1)%rho_tor(
SIZE(coreprof_out(1)%rho_tor, dim=1)) &
148 * equilibrium_out(1)%profiles_1d%rho_tor(
SIZE (equilibrium_out(1)%profiles_1d%psi, dim=1))
155 (3, q0_flag, coreprof_out, equilibrium_out, coreprof_in)
165 err_psi = maxval(abs(1.0_r8 - abs(coreprof_iter(1)%psi%value(2:) / coreprof_out(1)%psi%value(2:))))
166 err_q = maxval(abs(1.0_r8 - abs(coreprof_iter(1)%profiles1d%q%value(2:) / coreprof_out(1)%profiles1d%q%value(2:))))
167 err_jpar = maxval(abs(1.0_r8 - abs(coreprof_iter(1)%profiles1d%jtot%value(2:) / coreprof_out(1)%profiles1d%jtot%value(2:))))
169 conv = max(err_psi, err_q , err_jpar)
171 write(*,
'(a,1p,4(1x,g12.5))')
'START_PROFILES_CONSISTENCY convergence (inner): ', conv, err_psi, err_q, err_jpar
174 CALL copy_cpo(coreprof_out(1), coreprof_iter(1))
178 IF (conv.GT.0.001_r8) goto 7
183 CALL
readjust_profiles(prof_flag, q0_flag, coreprof_new, equilibrium_out, coreprof_out)
188 err_psi = maxval(abs(1.0_r8 - abs(coreprof_out(1)%psi%value(2:) / coreprof_new(1)%psi%value(2:))))
189 err_q = maxval(abs(1.0_r8 - abs(coreprof_out(1)%profiles1d%q%value(2:) / coreprof_new(1)%profiles1d%q%value(2:))))
190 err_jpar = maxval(abs(1.0_r8 - abs(coreprof_out(1)%profiles1d%jtot%value(2:) / coreprof_new(1)%profiles1d%jtot%value(2:))))
192 conv = max(err_psi, err_q , err_jpar)
194 write(*,
'(a,1p,4(1x,g12.5))')
'START_PROFILES_CONSISTENCY convergence (outer): ', conv, err_psi, err_q, err_jpar
196 CALL copy_cpo(coreprof_out(1), coreprof_new(1))
198 IF (conv.GT.0.001_r8) goto 7
204 CALL deallocate_cpo(coreprof_iter)
205 CALL deallocate_cpo(coreprof_new)
subroutine emeq_e3m_wrapper(EQUILIBRIUM_in, EQUILIBRIUM_out)
subroutine parabolic_prof(COREPROF_IN, EQUILIBRIUM_IN, COREPROF_OUT, EQUILIBRIUM_OUT)
subroutine chease_wrapper(euitm_equilibrium_in, euitm_equilibrium_out)
subroutine helena_wrapper(euitm_equilibrium_in, euitm_equilibrium_out)
This module contains routines for allocation/deallocation if CPOs used in ETS.
subroutine readjust_profiles(PROF_FLAG, Q0_FLAG, COREPROF_IN, EQUILIBRIUM_IN, COREPROF_OUT)
subroutine correct_current_prof(J0_FLAG, COREPROF_IN, EQUILIBRIUM, COREPROF_OUT)
subroutine start_profiles_consistency(PROF_FLAG, J0_FLAG, Q0_FLAG, EXT_EQUIL, COREPROF_IN, EQUILIBRIUM_IN, TOROIDFIELD_IN, COREPROF_OUT, EQUILIBRIUM_OUT)