4 USE deallocate_structures
19 TYPE (type_coreprof
),
POINTER :: coreprof(:)
20 TYPE (type_coresource
),
POINTER :: coresource_out(:)
21 TYPE (type_coresource
),
POINTER :: coresource_db(:)
22 TYPE (type_coresource
),
POINTER :: coresource_tmp(:)
24 INTEGER,
PARAMETER :: nslice = 1
25 INTEGER :: nrho1, nrho2
29 INTEGER,
ALLOCATABLE :: nzimp1(:)
31 INTEGER,
ALLOCATABLE :: ncomp1(:)
32 INTEGER,
ALLOCATABLE :: ntype1(:)
35 integer :: nvalues,ivalues,combvalue
41 nrho1 =
SIZE(coreprof(1)%rho_tor, dim=1)
42 CALL
get_comp_dimensions(coreprof(1)%COMPOSITIONS, nnucl1, nion1, nimp1, nzimp1, nneut1, ntype1, ncomp1)
43 CALL
allocate_coresource_cpo(nslice, nrho1, nnucl1, nion1, nimp1, nzimp1, nneut1, ntype1, ncomp1, coresource_out)
44 call deallocate_cpo(coresource_out(1)%COMPOSITIONS)
45 CALL copy_cpo(coreprof(1)%COMPOSITIONS, coresource_out(1)%COMPOSITIONS)
46 coresource_out(1)%VALUES(1)%rho_tor = coreprof(1)%rho_tor
50 nvalues=
size(coresource_db(1)%values)
52 if (nvalues.ge.0)
then
55 if (coresource_db(1)%values(ivalues)%sourceid%flag.eq.30) combvalue=ivalues
58 write(*,*)
'no sources are given on input'
61 IF (combvalue.GT.0)
THEN
62 write(*,*)
'take combined sources'
63 ALLOCATE (coresource_tmp(1))
64 ALLOCATE (coresource_tmp(1)%VALUES(1))
65 CALL copy_cpo(coresource_db(1)%VALUES(combvalue), coresource_tmp(1)%VALUES(1))
66 CALL deallocate_cpo(coresource_db(1)%VALUES)
67 ALLOCATE (coresource_db(1)%VALUES(1))
68 CALL copy_cpo(coresource_tmp(1)%VALUES(1), coresource_db(1)%VALUES(1))
70 write(*,*)
'take first value'
71 ALLOCATE (coresource_tmp(1))
72 ALLOCATE (coresource_tmp(1)%VALUES(1))
73 CALL copy_cpo(coresource_db(1)%VALUES(1), coresource_tmp(1)%VALUES(1))
74 CALL deallocate_cpo(coresource_db(1)%VALUES)
75 ALLOCATE (coresource_db(1)%VALUES(1))
76 CALL copy_cpo(coresource_tmp(1)%VALUES(1), coresource_db(1)%VALUES(1))
88 ALLOCATE (coresource_out(1)%VALUES(1)%sourceid%id(1))
89 ALLOCATE (coresource_out(1)%VALUES(1)%sourceid%description(1))
91 coresource_out(1)%VALUES(1)%sourceid%id =
'database'
92 coresource_out(1)%VALUES(1)%sourceid%flag = 27
93 coresource_out(1)%VALUES(1)%sourceid%description =
'Source from database entry'
98 CALL deallocate_cpo(coresource_db)
99 CALL deallocate_cpo(coresource_tmp)
100 IF (
ALLOCATED(nzimp1))
DEALLOCATE (nzimp1)
101 IF (
ALLOCATED(ncomp1))
DEALLOCATE (ncomp1)
102 IF (
ALLOCATED(ntype1))
DEALLOCATE (ntype1)
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 database_source2(COREPROF, CORESOURCE_DB, CORESOURCE_OUT)
subroutine interpolate_source(CORESOURCE_IN, CORESOURCE_OUT)