19 (coreprof_pivot, coreprof_new, coredelta)
26 USE deallocate_structures
34 TYPE (type_coreprof
),
POINTER :: coreprof_pivot(:)
35 TYPE (type_coreprof
),
POINTER :: coreprof_new(:)
36 TYPE (type_coreprof
),
POINTER :: coreprof_interp(:)
37 TYPE (type_coredelta
),
POINTER :: coredelta(:)
40 INTEGER,
PARAMETER :: nslice = 1
41 INTEGER :: nrho1, nrho2
45 INTEGER,
ALLOCATABLE :: nzimp(:)
47 INTEGER,
ALLOCATABLE :: ncomp(:)
48 INTEGER,
ALLOCATABLE :: ntype(:)
52 ALLOCATE (coreprof_interp(1))
53 CALL copy_cpo(coreprof_new(1), coreprof_interp(1))
55 nrho =
SIZE(coreprof_new(1)%rho_tor)
59 CALL
get_comp_dimensions(coreprof_new(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
61 CALL copy_cpo(coreprof_new(1)%COMPOSITIONS, coredelta(1)%COMPOSITIONS)
65 coredelta(1)%VALUES(1)%rho_tor = coreprof_new(1)%rho_tor
66 coredelta(1)%VALUES(1)%rho_tor_norm = coreprof_new(1)%rho_tor_norm
67 coredelta(1)%VALUES(1)%psi = coreprof_new(1)%psi%value
68 coredelta(1)%VALUES(1)%delta_psi = coreprof_new(1)%psi%value - coreprof_interp(1)%psi%value
69 coredelta(1)%VALUES(1)%delta_te = coreprof_new(1)%te%value - coreprof_interp(1)%te%value
70 coredelta(1)%VALUES(1)%delta_ne = coreprof_new(1)%ne%value - coreprof_interp(1)%ne%value
71 coredelta(1)%VALUES(1)%delta_ti = coreprof_new(1)%ti%value - coreprof_interp(1)%ti%value
72 coredelta(1)%VALUES(1)%delta_ni = coreprof_new(1)%ni%value - coreprof_interp(1)%ni%value
73 coredelta(1)%VALUES(1)%delta_vtor = coreprof_new(1)%vtor%value - coreprof_interp(1)%vtor%value
77 ALLOCATE (coredelta(1)%VALUES(1)%deltaid%id(1))
78 ALLOCATE (coredelta(1)%VALUES(1)%deltaid%description(1))
79 coredelta(1)%VALUES(1)%deltaid%id =
'unspecified'
80 coredelta(1)%VALUES(1)%deltaid%flag = 0
81 coredelta(1)%VALUES(1)%deltaid%description =
'Unspecified coredelta'
84 10
IF(
ALLOCATED(nzimp))
DEALLOCATE (nzimp)
85 IF(
ALLOCATED(ncomp))
DEALLOCATE (ncomp)
86 IF(
ALLOCATED(ntype))
DEALLOCATE (ntype)
88 CALL deallocate_cpo(coreprof_interp)
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)
subroutine interpolate_prof(COREPROF_IN, COREPROF_OUT)
This module contains routines for allocation/deallocation if CPOs used in ETS.
subroutine coreprof2coredelta(COREPROF_PIVOT, COREPROF_NEW, COREDELTA)