ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ignore_neoclassic.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3 
4  SUBROUTINE ignore_neoclassic (COREPROF, NEOCLASSIC)
5 
6 !-------------------------------------------------------!
7 ! This routine is used by the ETS workflow !
8 ! in case when transport should be ignored !
9 !-------------------------------------------------------!
10 ! Source: --- !
11 ! Developers: D.Kalupin !
12 ! Kontacts: Denis.Kalupin@efda.org !
13 ! !
14 ! Comments: output NEOCLASSIC CPO is !
15 ! allocated inside the module !
16 ! !
17 !-------------------------------------------------------!
18 
19 
20  USE euitm_schemas
21  USE euitm_routines
23  USE itm_types
24  USE copy_structures
25  USE deallocate_structures
26 
27 
28  IMPLICIT NONE
29 
30 
31  INTEGER :: ifail
32 
33 
34 ! +++ CPO derived types:
35  TYPE (type_coreprof), POINTER :: coreprof(:) !input CPO with internal ETS parameters profiles from previous time
36  TYPE (type_neoclassic), POINTER :: neoclassic(:) !output CPO with transport
37 
38 
39 ! +++ Dimensions:
40  INTEGER, PARAMETER :: nslice = 1 !number of CPO ocurancies in the work flow
41  INTEGER :: nrho !number of radial points (input, determined from COREPROF CPO)
42  INTEGER :: nion !number of ion species (input, determined from COREPROF CPO)
43  INTEGER :: nimp !number of impurities (input)
44  INTEGER :: nnucl !number of nuclei species
45  INTEGER, ALLOCATABLE :: nzimp(:) !number of ionization states for each impurity
46  INTEGER :: nneut !number of neutrals species
47  INTEGER, ALLOCATABLE :: ncomp(:) !number of components for each neutral
48  INTEGER, ALLOCATABLE :: ntype(:) !number of types for each neutral
49 
50 
51 
52 ! +++ Set dimensions:
53  nrho = SIZE (coreprof(1)%rho_tor, dim=1)
54 
55  CALL get_comp_dimensions(coreprof(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
56 
57 ! +++ Allocate output CPO:
58  CALL allocate_neoclassic_cpo(nslice, nrho, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp, neoclassic)
59  CALL deallocate_cpo(neoclassic(1)%COMPOSITIONS)
60  CALL copy_cpo(coreprof(1)%COMPOSITIONS, neoclassic(1)%COMPOSITIONS)
61 
62 
63 ! +++ Save output in CPO:
64  neoclassic(1)%time = coreprof(1)%time !time [s]
65  neoclassic(1)%rho_tor = coreprof(1)%rho_tor !rho [m]
66 
67 
68  RETURN
69 
70 
71  END SUBROUTINE ignore_neoclassic
72 
73 !-------------------------------------------------------!
74 !-------------------------------------------------------!
subroutine ignore_neoclassic(COREPROF, NEOCLASSIC)
subroutine get_comp_dimensions(COMPOSITIONS, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP)
This module contains routines for allocation/deallocation if CPOs used in ETS.
subroutine allocate_neoclassic_cpo(NSLICE, NRHO, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP, NEOCLASSIC)
This routine allocates NEOCLASSIC CPO.