ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ignore_delta.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3 
4  SUBROUTINE ignore_delta (COREPROF, COREDELTA)
5 
6 !-------------------------------------------------------!
7 ! This routine is used by the ETS workflow !
8 ! in case when deltaort should be ignored !
9 !-------------------------------------------------------!
10 ! Source: --- !
11 ! Developers: D.Kalupin !
12 ! Kontacts: Denis.Kalupin@efda.org !
13 ! !
14 ! Comments: output COREDELTA 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_coredelta), POINTER :: coredelta(:) !output CPO with deltaort
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 ! +++ Allocate output CPO:
57  CALL allocate_coredelta_cpo(nslice, nrho, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp, coredelta)
58  CALL deallocate_cpo(coredelta(1)%COMPOSITIONS)
59  CALL copy_cpo(coreprof(1)%COMPOSITIONS, coredelta(1)%COMPOSITIONS)
60 
61 
62 ! +++ Save output in CPO:
63  coredelta(1)%time = coreprof(1)%time !time [s]
64  coredelta(1)%values(1)%rho_tor = coreprof(1)%rho_tor !rho [m]
65 
66 
67 
68 !+++ ADD IDENTIFIER TO OUTPUT CPO VALUES(1):
69  ALLOCATE (coredelta(1)%VALUES(1)%deltaid%id(1))
70  ALLOCATE (coredelta(1)%VALUES(1)%deltaid%description(1))
71  coredelta(1)%VALUES(1)%deltaid%id = 'not_provided'
72  coredelta(1)%VALUES(1)%deltaid%flag = 5
73  coredelta(1)%VALUES(1)%deltaid%description = 'No data provided'
74 
75  RETURN
76 
77 
78  END SUBROUTINE ignore_delta
79 
80 !-------------------------------------------------------!
81 !-------------------------------------------------------!
subroutine allocate_coredelta_cpo(NSLICE, NRHO, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP, COREDELTA)
This routine allocates COREDELTA CPO.
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 ignore_delta(COREPROF, COREDELTA)
Definition: ignore_delta.f90:4