47 TYPE (type_coreprof
),
POINTER :: coreprof_iter(:)
48 TYPE (type_coreprof
),
POINTER :: coreprof_new(:)
52 REAL (R8) :: control_double(5)
57 REAL (R8) :: err_psi, err_ni, err_te, err_ti, err_vtor
58 REAL (R8),
PARAMETER :: psi_0 = 1.0e-3_r8
59 REAL (R8),
PARAMETER :: ni_0 = 1.0e10_r8
60 REAL (R8),
PARAMETER :: te_0 = 1.0e-3_r8
61 REAL (R8),
PARAMETER :: ti_0 = 1.0e-3_r8
62 REAL (R8),
PARAMETER :: vtor_0 = 1.0e-3_r8
66 err_psi = maxval(abs(1.0_r8 - (abs(coreprof_iter(1)%psi%value)+psi_0)/(abs(coreprof_new(1)%psi%value)+psi_0)))
67 err_ni = maxval(abs(1.0_r8 - (abs(coreprof_iter(1)%ni%value)+ni_0)/(abs(coreprof_new(1)%ni%value)+ni_0)))
68 err_te = maxval(abs(1.0_r8 - (abs(coreprof_iter(1)%te%value)+te_0)/(abs(coreprof_new(1)%te%value)+te_0)))
69 err_ti = maxval(abs(1.0_r8 - (abs(coreprof_iter(1)%ti%value)+ti_0)/(abs(coreprof_new(1)%ti%value)+ti_0)))
70 err_vtor = maxval(abs(1.0_r8 - (abs(coreprof_iter(1)%vtor%value)+vtor_0)/(abs(coreprof_new(1)%vtor%value)+vtor_0)))
78 conv = max(err_psi, err_ni, err_te, err_ti, err_vtor)
80 control_double(4) = conv
127 INTEGER :: ineut, itype
130 TYPE (type_coreneutrals
),
POINTER :: coreneutrals_iter(:)
131 TYPE (type_coreneutrals
),
POINTER :: coreneutrals_new(:)
139 REAL (R8) :: err_neut
140 REAL (R8),
PARAMETER :: ni_0 = 1.0e10_r8
146 do ineut = 1,
size(coreneutrals_iter(1)%PROFILES)
147 do itype = 1,
size(coreneutrals_iter(1)%PROFILES(ineut)%NEUTRALTYPE)
148 err_neut = max(err_neut, &
149 maxval(abs(1.0_r8 - (abs(coreneutrals_iter(1)%PROFILES(ineut)%NEUTRALTYPE(itype)%n0%value)+ni_0)/ &
150 (abs(coreneutrals_new(1)%PROFILES(ineut)%NEUTRALTYPE(itype)%n0%value)+ni_0))))
203 TYPE (type_coreimpur
),
POINTER :: coreimpur_iter(:)
204 TYPE (type_coreimpur
),
POINTER :: coreimpur_new(:)
208 REAL (R8) :: control_double(5)
214 REAL (R8),
PARAMETER :: nz_0 = 1.0e10_r8
220 do iimp = 1,
size(coreimpur_iter(1)%IMPURITY)
221 err_imp = max(err_imp, &
222 maxval(abs(1.0_r8 - (abs(coreimpur_iter(1)%IMPURITY(iimp)%NZ(:,:))+nz_0)/ &
223 (abs(coreimpur_new(1)%IMPURITY(iimp)%NZ(:,:))+nz_0))))
subroutine check_convergence_neutrals(CORENEUTRALS_ITER, CORENEUTRALS_NEW, CONV)
Convergence check neutrals This routine checks the convergence of plasma profiles.
Module provides routines for copying parts of CPOs (COREPROF and EQUILIBRIUM)
subroutine check_convergence(COREPROF_ITER, COREPROF_NEW, CONTROL_DOUBLE)
Convergence check This routine checks the convergence of plasma profiles.
The module declares types of variables used in ETS (transport code)
subroutine check_convergence_impurities(COREIMPUR_ITER, COREIMPUR_NEW, CONV)
Convergence check impurities This routine checks the convergence of plasma profiles.
Module provides the convergence check for the ETS.