ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_reajust_profiles.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 
4  SUBROUTINE fc2k_readjust_profiles &
5  (prof_flag, q0_flag, coreprof_in, equilibrium_in, coreprof_out)
6 
7 !-------------------------------------------------------!
8 ! This routine readjusts consistently !
9 ! profiles of psi, q and jparallel !
10 ! !
11 ! information received in: COREPROF !
12 ! EQUILIBRIUM. !
13 ! !
14 ! information saved in: COREPROF !
15 ! !
16 ! controling parameter: PROF_FLAG !
17 ! !
18 !-------------------------------------------------------!
19 ! Source: --- !
20 ! Developers: D.Kalupin !
21 ! Kontacts: Denis.Kalupin@efda.org !
22 ! !
23 ! Comments: created for V&V between ETS, JETTO !
24 ! and ASTRA !
25 ! !
26 !-------------------------------------------------------!
27 
28 
29  USE euitm_schemas
30  USE itm_constants
32 
33  IMPLICIT NONE
34 
35  INTEGER :: ifail
36 
37 ! +++ CPO derived types:
38  TYPE (type_equilibrium), POINTER :: equilibrium_in(:) !input CPO with geometry quantities from previous time
39  TYPE (type_coreprof), POINTER :: coreprof_in(:) !input/output CPO with plasma profiles
40  TYPE (type_coreprof), POINTER :: coreprof_out(:) !input/output CPO with plasma profiles
41 
42 
43 ! +++ Dimensions:
44  INTEGER :: prof_flag !determines primary profile
45  INTEGER :: q0_flag !Flag for positive dq/drho: 0-allowed, >0-cut off
46 
47 
48 
49  CALL readjust_profiles &
50  (prof_flag, q0_flag, coreprof_in, equilibrium_in, coreprof_out)
51 
52 
53 
54  RETURN
55 
56  END SUBROUTINE fc2k_readjust_profiles
57 
58 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
59 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
subroutine fc2k_readjust_profiles(PROF_FLAG, Q0_FLAG, COREPROF_IN, EQUILIBRIUM_IN, COREPROF_OUT)
subroutine readjust_profiles(PROF_FLAG, Q0_FLAG, COREPROF_IN, EQUILIBRIUM_IN, COREPROF_OUT)