1 subroutine database_impurity (coreprof_in, coresource_db, coreimpur_db, coresource_new, coreimpur_new)
4 USE deallocate_structures
19 TYPE (type_coreprof
),
POINTER :: coreprof_in(:)
20 TYPE (type_coresource
),
POINTER :: coresource_db(:),coresource_new(:)
21 TYPE (type_coreimpur
),
POINTER :: coreimpur_db(:), coreimpur_new(:)
23 INTEGER,
PARAMETER :: nslice = 1
24 INTEGER :: nrho, nrho1
28 INTEGER,
ALLOCATABLE :: nzimp(:)
30 INTEGER,
ALLOCATABLE :: ncomp(:)
31 INTEGER,
ALLOCATABLE :: ntype(:)
32 REAL(R8),
allocatable,
dimension(:) :: rho,rho1,
fun
33 integer :: nvalues, ivalues,impvalue,iimp
36 write(*,*)
'time used',coreprof_in(1)%time
37 nrho =
SIZE(coreprof_in(1)%rho_tor, dim=1)
38 write(*,*)
'nrho=', nrho
39 CALL
get_comp_dimensions(coreprof_in(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
46 if (.not.
associated(coreimpur_new(1)%impurity(iimp)%tz)) &
47 allocate(coreimpur_new(1)%impurity(iimp)%tz(nrho,nzimp(iimp)))
52 if (.not.
associated(coresource_new(1)%VALUES(1)%sourceid%id)) &
53 ALLOCATE (coresource_new(1)%VALUES(1)%sourceid%id(1))
54 if (.not.
associated(coresource_new(1)%VALUES(1)%sourceid%description)) &
55 ALLOCATE (coresource_new(1)%VALUES(1)%sourceid%description(1))
57 call copy_cpo(coreprof_in(1)%compositions, coresource_new(1)%compositions)
58 call copy_cpo(coreprof_in(1)%compositions, coreimpur_new(1)%compositions)
60 coreimpur_new(1)%rho_tor=coreprof_in(1)%rho_tor
61 coreimpur_new(1)%rho_tor_norm=coreprof_in(1)%rho_tor_norm
62 coresource_new(1)%values(1)%rho_tor=coreprof_in(1)%rho_tor
63 coresource_new(1)%values(1)%rho_tor_norm=coreprof_in(1)%rho_tor_norm
64 coresource_new(1)%VALUES(1)%sourceid%id =
'impurity'
65 coresource_new(1)%VALUES(1)%sourceid%flag = 29
66 coresource_new(1)%VALUES(1)%sourceid%description =
'Impurity source'
68 allocate (
fun(nrho),rho(nrho))
69 rho=coreprof_in(1)%rho_tor
72 IF(
ASSOCIATED(coresource_db))
then
73 nvalues=
size(coresource_db(1)%values)
75 write(*,*)
'time from database',coresource_db(1)%time
76 if (nvalues.ge.0)
then
79 if (coresource_db(1)%values(ivalues)%sourceid%flag.eq.29) impvalue=ivalues
82 write(*,*)
'no sources are given on input'
84 write(*,*)
'impvalue',impvalue
85 if (
associated(coresource_db(1)%values(impvalue)%rho_tor))
then
86 nrho1=
size(coresource_db(1)%values(impvalue)%rho_tor)
88 write(*,*)
'rho_tor from database (coresource) is not found'
91 write(*,*)
'nrho1',nrho1
93 rho1(:)=coresource_db(1)%values(impvalue)%rho_tor(:)
95 if (
associated(coresource_db(1)%values(impvalue)%se%exp))
then
97 IF(
ASSOCIATED(coresource_db(1)%VALUES(impvalue)%Se%exp))
THEN
99 if (all(coresource_db(1)%VALUES(impvalue)%Se%exp==0))
then
100 coresource_new(1)%VALUES(1)%Se%exp(:) = 0.0
102 CALL
l3interp(coresource_db(1)%VALUES(impvalue)%Se%exp, rho1, nrho1, &
104 coresource_new(1)%VALUES(1)%Se%exp(:) =
fun(:)
109 if (
associated(coresource_db(1)%values(impvalue)%qe%exp))
then
111 IF(
ASSOCIATED(coresource_db(1)%VALUES(impvalue)%qe%exp))
THEN
113 CALL
l3interp(coresource_db(1)%VALUES(impvalue)%qe%exp, rho1, nrho1, &
115 coresource_new(1)%VALUES(1)%Qe%exp(:) =
fun(:)
119 write(*,*)
'after coresource'
122 write(*,*)
'after impurity'
123 CALL deallocate_cpo(coresource_db)
124 call deallocate_cpo(coreimpur_db)
125 deallocate(
fun,rho,rho1)
subroutine allocate_coreimpur_cpo(NSLICE, NRHO, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP, COREIMPUR)
This routine allocates COREIMPUR CPO.
subroutine get_comp_dimensions(COMPOSITIONS, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP)
subroutine l3interp(y_in, x_in, nr_in, y_out, x_out, nr_out)
subroutine database_impurity(coreprof_in, coresource_db, coreimpur_db, coresource_new, coreimpur_new)
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 interpolate_impur(COREIMPUR_IN, COREIMPUR_OUT)