25 USE deallocate_structures
35 TYPE (type_coreprof
),
POINTER :: coreprof(:)
36 TYPE (type_coresource
),
POINTER :: coresource(:)
40 INTEGER,
PARAMETER :: nslice = 1
45 INTEGER,
ALLOCATABLE :: nzimp(:)
47 INTEGER,
ALLOCATABLE :: ncomp(:)
48 INTEGER,
ALLOCATABLE :: ntype(:)
53 nrho =
SIZE (coreprof(1)%rho_tor, dim=1)
55 CALL
get_comp_dimensions(coreprof(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
58 call deallocate_cpo(coresource(1)%COMPOSITIONS)
59 CALL copy_cpo(coreprof(1)%COMPOSITIONS, coresource(1)%COMPOSITIONS)
63 coresource(1)%time = coreprof(1)%time
64 coresource(1)%VALUES(1)%rho_tor = coreprof(1)%rho_tor
65 coresource(1)%VALUES(1)%rho_tor_norm = coreprof(1)%rho_tor/coreprof(1)%rho_tor(nrho)
71 ALLOCATE (coresource(1)%VALUES(1)%sourceid%id(1))
72 ALLOCATE (coresource(1)%VALUES(1)%sourceid%description(1))
73 coresource(1)%VALUES(1)%sourceid%id =
'not_provided'
74 coresource(1)%VALUES(1)%sourceid%flag = 31
75 coresource(1)%VALUES(1)%sourceid%description =
'No data provided'
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_coresource_cpo(NSLICE, NRHO, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP, CORESOURCE)
This routine allocates CORESOURCE CPO.
subroutine ignore_sources(COREPROF, CORESOURCE)