18 (coreprof_pivot, coredelta, coreprof_new)
24 USE deallocate_structures
33 TYPE (type_coreprof
),
POINTER :: coreprof_pivot(:)
34 TYPE (type_coreprof
),
POINTER :: coreprof_new(:)
35 TYPE (type_coredelta
),
POINTER :: coredelta_interp(:)
36 TYPE (type_coredelta
),
POINTER :: coredelta(:)
37 TYPE (type_coredelta
),
POINTER :: coredelta_v1(:)
40 INTEGER,
PARAMETER :: nslice = 1
41 INTEGER :: nrho1, nrho2
45 INTEGER,
ALLOCATABLE :: nzimp(:)
47 INTEGER,
ALLOCATABLE :: ncomp(:)
48 INTEGER,
ALLOCATABLE :: ntype(:)
53 nrho =
SIZE(coreprof_pivot(1)%rho_tor)
54 CALL
get_comp_dimensions(coreprof_pivot(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
56 CALL copy_cpo(coreprof_pivot(1)%COMPOSITIONS, coredelta_interp(1)%COMPOSITIONS)
57 coredelta_interp(1)%VALUES(1)%rho_tor = coreprof_pivot(1)%rho_tor
61 ALLOCATE (coredelta_v1(1))
62 ALLOCATE (coredelta_v1(1)%VALUES(1))
63 CALL copy_cpo(coredelta(1)%COMPOSITIONS, coredelta_v1(1)%COMPOSITIONS)
64 CALL copy_cpo(coredelta(1)%VALUES(1), coredelta_v1(1)%VALUES(1))
72 ALLOCATE (coreprof_new(1))
73 CALL copy_cpo(coreprof_pivot(1), coreprof_new(1))
78 coreprof_new(1)%psi%value = coreprof_pivot(1)%psi%value + coredelta_interp(1)%VALUES(1)%delta_psi
79 coreprof_new(1)%te%value = coreprof_pivot(1)%te%value + coredelta_interp(1)%VALUES(1)%delta_te
80 coreprof_new(1)%ne%value = coreprof_pivot(1)%ne%value + coredelta_interp(1)%VALUES(1)%delta_ne
81 coreprof_new(1)%ti%value = coreprof_pivot(1)%ti%value + coredelta_interp(1)%VALUES(1)%delta_ti
82 coreprof_new(1)%ni%value = coreprof_pivot(1)%ni%value + coredelta_interp(1)%VALUES(1)%delta_ni
83 coreprof_new(1)%vtor%value = coreprof_pivot(1)%vtor%value + coredelta_interp(1)%VALUES(1)%delta_vtor
86 CALL deallocate_cpo(coredelta_interp)
87 CALL deallocate_cpo(coredelta_v1)
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 coredelta2coreprof(COREPROF_PIVOT, COREDELTA, COREPROF_NEW)
subroutine interpolate_delta(COREDELTA_IN, COREDELTA_OUT)
This module contains routines for allocation/deallocation if CPOs used in ETS.