ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_workaround_eqstart.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
8 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
9 
10  SUBROUTINE eqstart(PROF_FLAG, J0_FLAG, Q0_FLAG, &
11  coreprof_in, equilibrium_in, toroidfield_in, &
12  coreprof_out, equilibrium_out)
13 
14  USE euitm_schemas
15 
17 
18  IMPLICIT NONE
19 
20 ! +++ CPO derived types:
21  TYPE (type_equilibrium), POINTER :: equilibrium_in(:) !input CPO with geometry quantities from previous time
22  TYPE (type_equilibrium), POINTER :: equilibrium_out(:) !output CPO with geometry quantities from previous iteration
23  TYPE (type_toroidfield), POINTER :: toroidfield_in(:) !toroidal field, major radius, total current
24  TYPE (type_coreprof), POINTER :: coreprof_in(:) !input CPO with plasma profiles
25  TYPE (type_coreprof), POINTER :: coreprof_iter(:) !iterration CPO with plasma profiles
26  TYPE (type_coreprof), POINTER :: coreprof_out(:) !output CPO with plasma profiles
27  TYPE (type_coreprof), POINTER :: coreprof_new(:) !output CPO with plasma profiles
28 
29 
30 ! +++ Dimensions:
31  INTEGER :: prof_flag, flag !determines primary profile
32  INTEGER :: j0_flag !flag for negative current, if J0_FLAG>0 negative current will be cut off
33  INTEGER :: q0_flag !Flag for positive dq/drho: 0-allowed, >0-cut off
34  INTEGER, PARAMETER :: ext_equil = 2
35 
36 
37  CALL start_profiles_consistency(prof_flag, j0_flag, q0_flag, ext_equil, &
38  coreprof_in, equilibrium_in, toroidfield_in, &
39  coreprof_out, equilibrium_out)
40 
41  RETURN
42 
43 
44  END SUBROUTINE eqstart
subroutine eqstart(PROF_FLAG, J0_FLAG, Q0_FLAG, COREPROF_IN, EQUILIBRIUM_IN, TOROIDFIELD_IN, COREPROF_OUT, EQUILIBRIUM_OUT)
Module to cope with problems in fc2k.
EQUILIBRIUM_START.
subroutine start_profiles_consistency(PROF_FLAG, J0_FLAG, Q0_FLAG, EXT_EQUIL, COREPROF_IN, EQUILIBRIUM_IN, TOROIDFIELD_IN, COREPROF_OUT, EQUILIBRIUM_OUT)