ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_checkconvergence.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
11 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
12  SUBROUTINE checkconvergence (COREPROF_ITER, COREPROF_NEW, CONV)
13 
14 !-------------------------------------------------------!
15 ! This routinechecks the convergence of plasma !
16 ! profiles. !
17 !-------------------------------------------------------!
18 ! Source: --- !
19 ! Developers: D.Kalupin !
20 ! Kontacts: D.Kalupin@fz-juelich.de !
21 ! !
22 ! Comments: --- !
23 ! !
24 !-------------------------------------------------------!
25 
26 
27 ! +++ Declaration of variables:
28  USE euitm_schemas
29  USE itm_constants
31 
32 
33  IMPLICIT NONE
34 
35 ! +++ CPO derived types:
36  TYPE (type_coreprof), POINTER :: coreprof_iter(:) !input/output CPO with internal ETS parameters profiles
37  TYPE (type_coreprof), POINTER :: coreprof_new(:) !input/output CPO with internal ETS parameters profiles
38 
39 
40 ! +++ Internal ETS derived types:
41  REAL (R8) :: control_double(5)!real control parameters
42  REAL (R8) :: conv
43 
44 
45  CALL check_convergence(coreprof_iter, coreprof_new, control_double)
46 
47  conv = control_double(4)
48 
49 
50  RETURN
51 
52  END SUBROUTINE checkconvergence
53 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
54 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
subroutine check_convergence(COREPROF_ITER, COREPROF_NEW, CONTROL_DOUBLE)
Convergence check This routine checks the convergence of plasma profiles.
subroutine checkconvergence(COREPROF_ITER, COREPROF_NEW, CONV)
Convergence check This routine checks the convergence of plasma profiles.
Module provides the convergence check for the ETS.